/* ── cs-tokens v1 — fluid design-token foundation. Paste verbatim; fill only the palette. ── */
:root {
  --bg:          #F6F2EA;
  --bg-alt:      #EDE6DA;
  --card:        #FAF7F2;
  --text:        #25281F;
  --muted:       #5A6650;
  --accent:      #7D8D72;
  --accent2:     #E0559B;
  --accent-rgb:  125,141,114;
  --accent-light: rgba(var(--accent-rgb),.08);
  --border:      rgba(125,141,114,.15);

  --fs-xs:   clamp(0.75rem,  0.70rem + 0.25vw, 0.875rem);
  --fs-sm:   clamp(0.875rem, 0.80rem + 0.38vw, 1.00rem);
  --fs-base: clamp(1.00rem,  0.90rem + 0.50vw, 1.25rem);
  --fs-lg:   clamp(1.25rem,  1.10rem + 0.75vw, 1.75rem);
  --fs-xl:   clamp(1.75rem,  1.50rem + 1.25vw, 2.50rem);
  --fs-2xl:  clamp(2.50rem,  2.00rem + 2.50vw, 4.00rem);
  --fs-3xl:  clamp(3.50rem,  2.50rem + 5.00vw, 6.00rem);

  --sp-2xs:  clamp(0.25rem,  0.20rem + 0.25vw, 0.375rem);
  --sp-xs:   clamp(0.50rem,  0.40rem + 0.50vw, 0.75rem);
  --sp-sm:   clamp(0.75rem,  0.60rem + 0.75vw, 1.125rem);
  --sp-md:   clamp(1.00rem,  0.80rem + 1.00vw, 1.50rem);
  --sp-lg:   clamp(1.50rem,  1.20rem + 1.50vw, 2.25rem);
  --sp-xl:   clamp(2.00rem,  1.60rem + 2.00vw, 3.00rem);
  --sp-2xl:  clamp(3.00rem,  2.40rem + 3.00vw, 4.50rem);

  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-base);
  font-family: 'Jost', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: clip;
}

:focus-visible { outline: 3px solid var(--accent2); outline-offset: 2px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-xl);
  background: var(--accent);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: var(--fs-lg);
  letter-spacing: 0.04em;
  color: var(--bg);
  text-decoration: none;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--sp-lg);
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.85);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-std);
}

.nav-links a:hover,
.nav-links a.active { color: var(--bg); }

.btn-nav {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent2);
  border: none;
  padding: var(--sp-xs) var(--sp-md);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-std);
  white-space: nowrap;
}

.btn-nav:hover { background: #c8418a; }

/* Mobile nav burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-xs);
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg);
  transition: transform var(--dur-base) var(--ease-std),
              opacity var(--dur-base) var(--ease-std);
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--accent);
    flex-direction: column;
    gap: var(--sp-md);
    padding: var(--sp-xl);
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: var(--fs-base); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--sp-sm) var(--sp-xl);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-std),
              color var(--dur-base) var(--ease-std),
              border-color var(--dur-base) var(--ease-std);
}

.btn-primary {
  background: var(--accent2);
  color: var(--bg);
  border: 2px solid var(--accent2);
}

.btn-primary:hover {
  background: #c8418a;
  border-color: #c8418a;
}

.btn-ghost {
  background: transparent;
  color: var(--accent2);
  border: 2px solid var(--accent2);
}

.btn-ghost:hover {
  background: var(--accent2);
  color: var(--bg);
}

.btn-sage {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--accent);
}

.btn-sage:hover {
  background: var(--muted);
  border-color: var(--muted);
}

/* ── SECTION BASE ── */
.section {
  padding: var(--sp-2xl) var(--sp-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: var(--sp-2xl) var(--sp-xl);
}

.section-bg {
  background: var(--bg);
}

.section-alt {
  background: var(--bg-alt);
}

.section-sage {
  background: var(--accent);
  color: var(--bg);
}

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-2xl);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-xl);
  color: var(--accent);
}

.section-heading--light {
  color: var(--bg);
}

.section-heading--center {
  text-align: center;
}

.pink-rule {
  width: 48px;
  height: 2px;
  background: var(--accent2);
  margin-bottom: var(--sp-lg);
}

.pink-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--accent);
  color: rgba(246,242,234,0.85);
  padding: var(--sp-2xl) var(--sp-xl);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: var(--fs-xl);
  color: var(--bg);
  text-decoration: none;
  line-height: 1.15;
  display: block;
  margin-bottom: var(--sp-sm);
}

.footer-tagline {
  font-size: var(--fs-sm);
  opacity: 0.7;
  font-style: italic;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer-nav a {
  color: rgba(246,242,234,0.8);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--dur-base) var(--ease-std);
}

.footer-nav a:hover { color: var(--bg); }

.footer-contact p {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xs);
}

.footer-contact a {
  color: rgba(246,242,234,0.8);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-std);
}

.footer-contact a:hover { color: var(--bg); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: var(--fs-xs);
  opacity: 0.5;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(246,242,234,0.15);
  margin-top: var(--sp-lg);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}
