@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border: none; background: none; }

/* ─── TOKENS ─── */
:root {
  --amber:       #E07A2F;
  --amber-light: #F5A557;
  --amber-pale:  #FEF3E7;
  --terra:       #C05D3A;
  --terra-light: #E8846A;
  --cream:       #FAF6F0;
  --cream-dark:  #F0E9DF;
  --sage:        #6A8F72;
  --sage-light:  #A8C4AD;
  --sage-pale:   #EAF2EB;
  --ink:         #1E1A15;
  --ink-mid:     #4A3F33;
  --ink-soft:    #7A6B5A;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(30,26,21,.08);
  --shadow-md:   0 6px 24px rgba(30,26,21,.12);
  --shadow-lg:   0 16px 48px rgba(30,26,21,.16);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 999px;
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
}

/* ─── BASE ─── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.9375rem, 1vw + 0.75rem, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw + 0.75rem, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem); }
h4 { font-size: clamp(1.05rem, 1.5vw + 0.4rem, 1.25rem); }
h5 { font-size: 1rem; }

p { color: var(--ink-mid); max-width: 65ch; }
p + p { margin-top: var(--sp-4); }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

/* ─── CONTAINER ─── */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── LINKS ─── */
a.text-link {
  color: var(--amber);
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
}
a.text-link:hover { border-color: var(--amber); color: var(--terra); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75em 1.6em;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,122,47,.35);
}
.btn--primary:hover {
  background: var(--terra);
  box-shadow: 0 6px 22px rgba(192,93,58,.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink-mid);
}
.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn--sage {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(106,143,114,.3);
}
.btn--sage:hover {
  background: #557A5D;
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}

.btn--sm { padding: 0.5em 1.1em; font-size: 0.875rem; }
.btn--lg { padding: 0.85em 2em; font-size: 1.0625rem; }

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── SECTION SPACING ─── */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--amber-pale { background: var(--amber-pale); }
.section--sage-pale { background: var(--sage-pale); }
.section--ink { background: var(--ink); }

/* ─── SECTION HEADER ─── */
.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }
.section-head p { margin-top: var(--sp-4); font-size: 1.0625rem; color: var(--ink-soft); max-width: 56ch; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(224,122,47,.12);
  box-shadow: var(--shadow-sm);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--sp-6);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-brand__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.nav-brand__name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-brand__name span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex: 1;
  justify-content: center;
}
.nav-links__item a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: var(--sp-2) var(--sp-1);
  position: relative;
  transition: color .2s;
}
.nav-links__item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links__item a:hover { color: var(--amber); }
.nav-links__item a:hover::after,
.nav-links__item a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links__item a[aria-current="page"] { color: var(--amber); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.nav-toggle:hover { background: var(--amber-pale); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ─── MOBILE NAV ─── */
@media (max-width: 780px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: var(--sp-6) var(--sp-6) var(--sp-8);
    gap: var(--sp-3);
    box-shadow: var(--shadow-md);
    z-index: 99;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-links.is-open .nav-links__item a {
    font-size: 1.1rem;
  }
  .nav-actions .btn.btn--mobile-show {
    display: inline-flex;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,240,.75);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(250,246,240,.1);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-brand__logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.footer-brand__logo-name span { color: var(--amber-light); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250,246,240,.6);
  max-width: 28ch;
}

.footer-brand__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.footer-brand__social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(250,246,240,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  color: rgba(250,246,240,.7);
  font-size: 0.8rem;
  font-weight: 600;
}
.footer-brand__social a:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(250,246,240,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(250,246,240,.4);
  max-width: none;
}
.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(250,246,240,.4);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--amber-light); }

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ─── HERO ─── */
.hero-section {
  background: linear-gradient(145deg, var(--cream) 0%, var(--amber-pale) 60%, #FDE8D0 100%);
  padding-block: clamp(4rem, 10vw, 8rem) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(224,122,47,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(106,143,114,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}
.hero-content .eyebrow { margin-bottom: var(--sp-4); }
.hero-content h1 { margin-bottom: var(--sp-6); }
.hero-content h1 em {
  color: var(--amber);
  font-style: italic;
}
.hero-content .hero-sub {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.1875rem);
  color: var(--ink-mid);
  margin-bottom: var(--sp-8);
  max-width: 50ch;
}
.hero-buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 80px; height: 80px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  z-index: -1;
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 100%; }
}

/* ─── CONTENT SECTION ─── */
.content-section {}
.content-section .lead {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--ink-mid);
  font-weight: 500;
  margin-bottom: var(--sp-6);
  max-width: 60ch;
}
.content-body { max-width: 70ch; }
.content-body p { color: var(--ink-mid); }

/* ─── CARD GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224,122,47,.08);
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.card__icon--amber { background: var(--amber-pale); }
.card__icon--sage  { background: var(--sage-pale); }
.card__icon--terra { background: #FDEAE4; }

.card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.card__text { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.65; }

/* ─── STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.stat-item {}
.stat-item__number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-item__label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--amber) 0%, var(--terra) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.cta-inner p {
  color: rgba(255,255,255,.85);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-8);
  max-width: 50ch;
  margin-inline: auto;
}
.cta-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 740px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background: none;
  transition: color .2s;
}
.faq-item__question:hover { color: var(--amber); }
.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s;
}
.faq-item.is-open .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* ─── FORMS ─── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.75em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9375rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(224,122,47,.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ─── INLINE EMAIL FORM ─── */
.email-form {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  max-width: 480px;
}
.email-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75em 1em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9375rem;
}
.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(224,122,47,.15);
}

/* ─── BADGE / TAG ─── */
.badge {
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--amber { background: var(--amber-pale); color: var(--terra); }
.badge--sage  { background: var(--sage-pale);  color: var(--sage); }
.badge--white { background: rgba(255,255,255,.2); color: var(--white); }

/* ─── DIVIDER ─── */
.divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin-block: clamp(2rem, 4vw, 3rem);
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-amber  { color: var(--amber); }
.text-sage   { color: var(--sage); }
.text-white  { color: var(--white); }
.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-8  { margin-bottom: var(--sp-8); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
} *{box-sizing:border-box} body{margin:0} html{-webkit-text-size-adjust:100%} img,svg,video{max-width:100%;height:auto} 