/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #b89a6a;
  --gold-light: #d4b896;
  --cream: #faf7f2;
  --dark: #1a1714;
  --text: #3a3530;
  --muted: #7a7068;
  --border: #e8dfd4;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 60px;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--dark); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-center { display: flex; align-items: center; gap: 0; list-style: none; }

.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 8px 18px;
  text-decoration: none; color: var(--text);
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-item > a:hover { color: var(--gold); }
/* Add ▾ arrow on desktop for items with dropdowns */
.nav-item:has(.nav-dropdown) > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  vertical-align: middle;
  opacity: 0.7;
}

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border);
  min-width: 220px; z-index: 300;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 12px 20px;
  text-decoration: none; color: var(--text);
  font-size: 0.78rem; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--cream); color: var(--gold); }

.nav-cta {
  background: var(--dark); color: var(--cream);
  padding: 10px 24px; font-size: 0.73rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); }

/* Nav right container */
.nav-right {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(250,247,242,0.5);
  padding: 70px 60px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  overflow: hidden;
}
.footer-col { min-width: 0; overflow: hidden; }
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--cream);
  text-decoration: none; display: block; margin-bottom: 16px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(250,247,242,0.4); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }
footer h4 {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  text-decoration: none; color: rgba(250,247,242,0.45);
  font-size: 0.85rem; transition: color 0.2s; letter-spacing: 0.02em;
}
footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 50px; padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(250,247,242,0.25);
}
.footer-bottom a { color: rgba(250,247,242,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── SHARED SECTION HELPERS ── */
.section-label {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--dark); line-height: 1.2;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 0.95rem; color: var(--muted);
  max-width: 560px; line-height: 1.85;
}
.divider { width: 48px; height: 1px; background: var(--gold); margin: 20px 0; }

/* ── CENTERED SECTION HEADER (use on a wrapper div) ── */
.section-header-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header-center .section-label { margin-bottom: 12px; }
.section-header-center .divider { margin: 18px auto; }
.section-header-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--dark); color: var(--cream);
  padding: 14px 36px; text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--dark); color: var(--dark);
  padding: 14px 36px; text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-gold {
  display: inline-block;
  background: var(--gold); color: white;
  padding: 14px 36px; text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-gold:hover { background: var(--dark); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  padding: 160px 60px 80px;
  background: linear-gradient(135deg, #faf7f2 0%, #f0e8dc 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,106,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1; color: var(--dark);
  max-width: 800px; margin: 0 auto 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.85; margin: 0 auto; }
.page-hero .divider { margin: 18px auto; }
.page-hero .section-label { margin-bottom: 12px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 70px 60px; gap: 28px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: white; font-weight: 400; line-height: 1.25;
}
.btn-white {
  display: inline-block;
  background: white; color: var(--gold);
  padding: 14px 40px; text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--dark); color: white; }

/* ── PLACEHOLDER IMAGES ── */
.img-placeholder {
  background: #e8dfd4;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: var(--muted); text-align: center;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.35; }
.img-placeholder .ph-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.6;
}

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--border); background: var(--cream);
  padding: 13px 18px; font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--text); outline: none;
  transition: border-color 0.2s; width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { height: 130px; resize: vertical; }

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ────────────────────────────────────────
   RESPONSIVE — TABLET & MOBILE
   ──────────────────────────────────────── */

/* ═══════════════════════════════════════
   TABLET (≤960px)
═══════════════════════════════════════ */
@media (max-width: 960px) {
  nav {
    padding: 12px 20px;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .nav-logo { flex-shrink: 1; min-width: 0; }
  .nav-logo img { height: 56px !important; }

  /* Hide desktop nav links */
  .nav-center { display: none; }

  /* Show hamburger button */
  .nav-hamburger { display: flex; }

  /* Mobile menu overlay */
  .nav-center.open {
    display: flex !important;
    flex-direction: column; gap: 0;
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: white; padding: 0 24px 40px;
    overflow-y: auto; z-index: 199;
    border-top: 1px solid var(--border);
  }
  .nav-center.open .nav-item > a {
    padding: 16px 0; font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    display: block; color: var(--dark);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  /* Always show ALL dropdown items in mobile menu — no hover needed */
  .nav-center.open .nav-dropdown {
    display: flex !important;
    flex-direction: column;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid var(--border);
    padding: 4px 0 12px 0;
    min-width: auto;
    background: transparent;
    width: 100%;
  }
  .nav-center.open .nav-dropdown a {
    padding: 10px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--muted);
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
  }
  .nav-center.open .nav-dropdown a:last-child { border-bottom: none !important; }
  .nav-center.open .nav-dropdown a:hover { color: var(--gold); background: var(--cream); }

  /* Hide the arrow on mobile since all items are always visible */
  .nav-center.open .nav-item > a { pointer-events: none; }

  /* Page hero */
  .page-hero { padding: 110px 24px 60px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .page-hero p { font-size: 0.95rem; }

  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
  .section-header-center { margin-bottom: 36px; }

  /* Footer — single column on tablet */
  footer {
    grid-template-columns: 1fr;
    padding: 50px 24px 0;
    gap: 32px;
    text-align: center;
  }
  .footer-brand { text-align: center; }
  .footer-brand .footer-logo-link img { margin: 0 auto 16px !important; }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column; gap: 8px;
    text-align: center; font-size: 0.7rem;
  }

  .cta-band { padding: 50px 24px; gap: 24px; }
  .cta-band h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  .btn-primary, .btn-outline, .btn-gold, .btn-white, .nav-cta {
    padding: 13px 24px; font-size: 0.72rem;
  }
}

/* ═══════════════════════════════════════
   PHONE (≤600px)
═══════════════════════════════════════ */
@media (max-width: 600px) {
  nav { padding: 10px 16px; }
  .nav-logo img { height: 44px !important; }
  .nav-cta { padding: 9px 14px; font-size: 0.64rem; letter-spacing: 0.08em; }
  .nav-hamburger { width: 36px; height: 36px; }
  .nav-center.open { top: 64px; padding: 0 18px 32px; }

  .page-hero { padding: 90px 18px 50px; }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); margin-bottom: 14px; }
  .page-hero p { font-size: 0.88rem; line-height: 1.7; }
  .page-hero .divider { margin: 14px auto; }

  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.25; }
  .section-sub { font-size: 0.88rem; }

  .cta-band { padding: 40px 18px; }
  .cta-band h2 { font-size: clamp(1.2rem, 6vw, 1.6rem); line-height: 1.3; }

  footer { padding: 40px 18px 0; gap: 28px; }

  .btn-primary, .btn-outline, .btn-gold, .btn-white {
    padding: 12px 22px; font-size: 0.7rem;
  }
}
