*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:     #2C2418;
  --dark:     #3D3020;
  --accent:   #C4A882;
  --accent2:  #b09468;
  --ecru:     #F0EAD6;
  --ecru-lt:  #FAF7F2;
  --ecru-dk:  #E8DFC8;
  --white:    #FAF7F2;
  --muted:    #9C8E7E;
  --border:   #DDD5C4;
  --light-bg: #F5F0E6;
  --text:     #5C4E3A;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: var(--ecru-lt);
  border-bottom: 1px solid var(--border);
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: .78rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.nav-contact { font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--white); background: var(--accent); padding: 10px 24px; text-decoration: none; transition: background .2s; }
.nav-contact:hover { background: var(--accent2); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--ecru);
  padding: 140px 60px 80px;
  margin-top: 72px;
  border-bottom: 1px solid var(--border);
}
.page-header-label { font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; display: block; }
.page-header-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; color: var(--navy); max-width: 700px; }
.page-header-sub { font-size: 1rem; line-height: 1.8; color: var(--muted); max-width: 600px; margin-top: 20px; }

/* ── SECTION UTILS ── */
.section-label { font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; display: block; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; color: var(--navy); margin-bottom: 24px; }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--text); }

/* ── FOOTER ── */
footer {
  background: var(--ecru-dk);
  border-top: 1px solid var(--border);
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: .75rem; color: var(--muted); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: .73rem; color: var(--muted); text-decoration: none; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--navy); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-header { padding: 100px 24px 48px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
