:root {
  --sand:       #C9B89A;
  --sand-dark:  #b5a385;
  --sage:       #8CA882;
  --sage-light: #EFF5EC;
  --sky:        #A3BDD4;
  --sky-light:  #EBF2F7;
  --cream:      #F7F4EF;
  --warm-white: #FDFCF9;
  --charcoal:   #3D3B38;
  --mid:        #6B6860;
  --light-mid:  #9E9B93;
  --border:     #E2DEDA;
  --teal:       #6B9E96;
  --teal-light: #EAF3F2;
  --section-dark-bg: #4A6741;
  --section-dark-text: rgba(255,255,255,.8);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --max-w: 1120px;
  --sp: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 6vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--sand);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  height: 68px;
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
}
.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-brand img {
  height: 46px; width: auto; display: block;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--body);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm-white); opacity: .85;
  transition: opacity .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.nav-cta {
  background: var(--warm-white);
  color: var(--sand) !important;
  padding: .4rem 1.1rem; border-radius: 100px; opacity: 1;
  font-family: var(--body);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
}
.nav-toggle {
  display: none; cursor: pointer; background: none; border: none;
  padding: .25rem; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--warm-white); margin: 5px 0; transition: all .3s; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem,5vw,4rem) clamp(1.25rem, 6vw, 5rem) clamp(2rem,4vw,3rem);
  text-align: center;
}
.page-hero .eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand); font-weight: 500; margin-bottom: .75rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
}
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero p {
  max-width: 56ch; margin: 1rem auto 0;
  color: var(--mid); font-size: 1rem; font-weight: 300;
}

/* ── SECTIONS ── */
section { padding: var(--sp); }
.inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sand); font-weight: 500; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 300; line-height: 1.2; color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body { font-size: 1rem; color: var(--mid); font-weight: 300; max-width: 60ch; }
p { line-height: 1.8; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--sand); color: var(--warm-white);
  padding: .8rem 2rem; border-radius: 100px;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  transition: background .25s, transform .2s;
  border: none; cursor: pointer; font-family: var(--body);
  white-space: nowrap;
}
.btn:hover { background: var(--sand-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--mid);
}
.btn-outline:hover { border-color: var(--sand); color: var(--sand); background: transparent; transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem clamp(1.25rem, 6vw, 5rem);
  overflow-x: auto;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase; color: var(--mid);
  white-space: nowrap;
}
.trust-item svg { color: var(--sand); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--sage);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
  font-size: .78rem;
}
footer strong { color: #fff; }
footer a { color: rgba(255,255,255,.75); }
footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }

/* ── CARDS ── */
.card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.75rem;
  transition: border-color .25s, box-shadow .25s;
}
.card:hover { border-color: var(--sand); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.card svg { color: var(--sage); margin-bottom: .75rem; }
.card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 500; margin-bottom: .4rem; }
.card p { font-size: .82rem; color: var(--mid); line-height: 1.6; }

/* ── FAQ ── */
details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  cursor: pointer; padding: 1.1rem 0;
  font-size: .95rem; font-weight: 500; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--charcoal); user-select: none; gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.3rem; color: var(--sand); transition: transform .25s; flex-shrink: 0; }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.25rem; font-size: .9rem; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* ── CONTACT FORM ── */
.contact-form { background: var(--warm-white); border-radius: 6px; padding: clamp(1.5rem,4vw,2.5rem); }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block; font-size: .72rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--mid); margin-bottom: .4rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  background: var(--cream); font-family: var(--body);
  font-size: .9rem; color: var(--charcoal); outline: none;
  transition: border-color .2s; resize: vertical;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--sand); }
.form-row textarea { min-height: 110px; }

/* ── FEE CALLOUT ── */
.fee-callout {
  background: linear-gradient(135deg, #C9B89A1A, #8CA88215);
  border-left: 3px solid var(--sand);
  padding: 1.5rem; border-radius: 0 6px 6px 0;
}
.fee-callout .amount { font-family: var(--display); font-size: 2.4rem; font-weight: 300; color: var(--charcoal); }
.fee-callout .label { font-size: .8rem; color: var(--mid); margin-top: .2rem; }
.fee-callout .free { margin-top: .65rem; font-size: .85rem; color: var(--sage); font-weight: 500; }

/* ── GRIDS ── */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

:target { scroll-margin-top: 80px; }

/* ── MOBILE — comprehensive ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .three-col { grid-template-columns: 1fr 1fr !important; }
  .four-col { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
}

@media (max-width: 640px) {
  :root { --sp: 2.5rem 1.25rem; }

  /* Nav mobile */
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--sand); z-index: 99;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav-links a {
    display: block; padding: .9rem 1.5rem;
    font-size: .95rem;
  }
  .nav-links a.nav-cta {
    margin: .75rem 1.5rem 1rem;
    display: inline-block; padding: .6rem 1.25rem;
    border-radius: 100px;
  }
  .nav-toggle { display: block; }
  nav { position: relative; }

  /* Grids mobile */
  .three-col, .four-col, .grid-2 { grid-template-columns: 1fr !important; }

  /* Trust bar mobile */
  .trust-bar-inner { gap: .75rem; justify-content: flex-start; }
  .trust-item { font-size: .68rem; }

  /* Footer mobile */
  .footer-links { gap: .75rem; font-size: .8rem; }

  /* Buttons mobile */
  .btn { padding: .75rem 1.5rem; font-size: .78rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
}
