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

:root {
  --sand: #f5f0e8;
  --warm-white: #faf8f4;
  --clay: #c4a882;
  --clay-dark: #a08860;
  --charcoal: #2c2825;
  --mid: #6b6258;
  --light-border: #e4ddd3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-color: var(--light-border); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }

.nav-dropdown { position: relative; }
.nav-dropdown > span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-dropdown:hover > span { color: var(--charcoal); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  min-width: 220px;
  padding: 0.8rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--charcoal); background: var(--sand); }

.nav-cta a {
  background: var(--charcoal) !important;
  color: var(--warm-white) !important;
  padding: 0.55rem 1.3rem;
  transition: background 0.2s !important;
}
.nav-cta a:hover { background: var(--clay-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 300;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 9rem 3rem 4rem;
  background: var(--sand);
  border-bottom: 1px solid var(--light-border);
  text-align: center;
}
.page-header .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
.page-header h1 em { font-style: italic; color: var(--clay-dark); }
.page-header p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  margin: 1.2rem auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}
.btn:hover { background: var(--charcoal); color: var(--warm-white); }
.btn-filled {
  background: var(--charcoal);
  color: var(--warm-white);
}
.btn-filled:hover { background: var(--clay-dark); border-color: var(--clay-dark); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--sand);
  border-top: 1px solid var(--light-border);
  padding: 4rem 3rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--charcoal); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-border);
  font-size: 0.75rem;
  color: var(--mid);
  letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
}
