/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #2c2c2c;
  background: #f9f6f1;
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(249, 246, 241, 0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
  border-bottom: 1px solid #e0dace;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #3b2f1e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #3b2f1e;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: #8b6f2e;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: #3b2f1e;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(30, 20, 10, 0.55), rgba(30, 20, 10, 0.55)),
    url('https://images.unsplash.com/photo-1622021142947-72175d6d2bc7?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  padding: 2rem;
}

.hero-content {
  max-width: 680px;
  color: #f5f0e8;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: #8b6f2e;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #6e5625;
  transform: translateY(-2px);
}

/* ── Sections ── */
.section {
  padding: 5rem 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #3b2f1e;
}

.section p {
  max-width: 720px;
  font-size: 1.05rem;
  color: #4a4035;
}

/* ── Card Grid ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e8dfc8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #3b2f1e;
}

.card p {
  color: #5c4f3a;
  line-height: 1.6;
}

/* ── Contact ── */
.contact {
  text-align: center;
  background: #3b2f1e;
  color: #f5f0e6;
  border-radius: 12px;
  margin: 0 5% 3rem;
  padding: 4rem 5%;
}

.contact p {
  color: #d4c9b3;
  margin-bottom: 2rem;
}

.contact .btn {
  background: #c9a84c;
}

.contact .btn:hover {
  background: #b08f2f;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: #8a7b66;
  border-top: 1px solid #e0dace;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    height: 100vh;
    background: #f9f6f1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.35s ease;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
  }
}
/* ── Gallery page ── */
.gallery-hero {
  min-height: 50vh;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url('') center/cover no-repeat;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 12px; aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,.25); }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.nav-links .active { color: var(--accent, #c8956c); font-weight: 500; }
