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

:root {
  --cream: #F5F1EA;
  --cream-dark: #EDE8DE;
  --cream-mid: #E8E2D6;
  --ink: #1A1714;
  --ink-soft: #3D3832;
  --ink-muted: #7A746C;
  --ink-faint: #B5AFA6;
  --accent: #8B6F47;
  --accent-light: #C4A882;
  --accent-pale: #F0E9DF;
  --rule: rgba(26,23,20,0.11);
  --rule-strong: rgba(26,23,20,0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── 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 4rem;
  background: var(--cream);
  border-bottom: 0.5px solid var(--rule);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

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

/* mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a.active { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.5rem;
  background: none; border: none;
  cursor: pointer; color: var(--ink-muted);
}

/* ── PAGE WRAPPER ── */
.page { padding-top: 5rem; min-height: 100vh; }

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.9;
  font-weight: 300;
}

.rule-line {
  width: 36px; height: 0.5px;
  background: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--ink-muted); }

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--rule);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
}
.footer-sub {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-top: 0.15rem;
}
.footer-copy { font-size: 0.7rem; color: var(--ink-faint); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 1.25rem 1.75rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 1.75rem 1.75rem; }
}
