/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:      #f8f4ef;
  --warm-white: #fdfaf6;
  --sand:       #e8ddd0;
  --linen:      #d4c4b0;
  --terracotta: #b5714a;
  --clay:       #8c5535;
  --charcoal:   #2e2a26;
  --muted:      #7a6f65;
  --gold:       #c8a96e;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1100px;
  --section-pad: 96px 24px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 16px 0 32px;
}
.divider.center { margin: 16px auto;}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 20px;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,196,176,0.3);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { 
  color: var(--terracotta); 
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}
.nav-logo-img {
  height: 2em;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--terracotta); }
.nav-cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--terracotta); color: #fff; }


.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-right: 24px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--terracotta); }
.nav-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}
/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #1e1b18;
  color: var(--muted);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 300;
  color: var(--linen);
}
.footer-logo span { font-style: italic; color: var(--gold); }
.footer-copy { font-size: 12px; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE NAV ─────────────────────────────────────── */
@media (max-width: 860px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
}
