@charset "UTF-8";
/* --- ETC. SHARED STYLES ---------------------------------------- */
:root {
  --teal:    #32B48C;
  --teal-d:  #228A6A;
  --teal-l:  #C8EDE4;
  --teal-f:  #eef9f5;
  --dark:    #1a1a1a;
  --muted:   #6b7280;
  --border:  #e8e8e4;
  --bg:      #fafaf8;
  --white:   #ffffff;
  --display: 'Fraunces', serif;
  --r:       'Inter', sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { background: var(--bg); scroll-behavior: smooth }
body { font-family: var(--r); font-weight: 400; color: var(--dark); line-height: 1.6; overflow-x: hidden; background: var(--bg) }
a { text-decoration: none; color: inherit }
img { max-width: 100%; display: block }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px }

/* ── HEADER PILL ─────────────────────────────────────────── */
.hdr { position: fixed; top: 14px; left: 0; right: 0; z-index: 200; display: flex; justify-content: center; padding: 0 24px; pointer-events: none }
.hdr-pill { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,.92); border: 1px solid rgba(0,0,0,.09); border-radius: 999px; padding: 6px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,.08); pointer-events: auto; transition: box-shadow .4s, background .4s, border-color .4s; width: fit-content }
.hdr.s .hdr-pill { box-shadow: 0 2px 12px rgba(0,0,0,.06); background: rgba(255,255,255,.55); border-color: rgba(0,0,0,.06) }
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; padding: 0 4px }
.logo-img { height: 46px; width: auto; display: block }
.nav-sep { width: 1px; height: 20px; background: rgba(0,0,0,.1); margin: 0 12px; flex-shrink: 0 }
.nav-links { display: flex; align-items: center; gap: 2px }
.nav-link { font-size: .84rem; font-weight: 400; color: #555; padding: 8px 16px; border-radius: 999px; transition: color .15s, background .15s; white-space: nowrap }
.nav-link:hover { color: var(--dark); background: rgba(0,0,0,.06) }
.nav-link.nav-active { color: var(--teal); background: var(--teal-f); font-weight: 500 }
.mob-nav a.nav-active { color: var(--teal) }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; padding: 11px 22px; border-radius: 999px; font-size: .84rem; font-weight: 500; margin-left: 8px; flex-shrink: 0; transition: background .2s, transform .15s }
.nav-cta:hover { background: var(--teal-d); transform: translateY(-1px) }
.nav-cta svg { width: 15px; height: 15px; fill: currentColor }
.burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; margin-left: 8px }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s, opacity .3s }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.burger.open span:nth-child(2) { opacity: 0 }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mob-nav { position: fixed; inset: 0; z-index: 250; background: rgba(250,250,248,.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; opacity: 0; pointer-events: none; transition: opacity .35s }
.mob-nav.open { opacity: 1; pointer-events: auto }
.mob-nav a { font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--dark); padding: 10px 28px; border-radius: 14px; transition: color .15s; letter-spacing: -.02em }
.mob-nav a:hover { color: var(--teal) }
.mob-nav .mob-sep { width: 40px; height: 1px; background: var(--border); margin: 12px 0 }
.mob-nav .mob-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--teal); color: #fff; padding: 14px 32px; border-radius: 999px; font-family: var(--r); font-size: .95rem; font-weight: 500; margin-top: 8px; box-shadow: 0 8px 24px rgba(50,180,140,.25) }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #f0f0ec; padding: 52px 0 36px }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 48px }
.logo-img-footer { height: 100px; width: auto }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 32px }
.footer-nav a { font-size: .84rem; font-weight: 400; color: rgba(0,0,0,.4); transition: color .15s }
.footer-nav a:hover { color: var(--teal) }
.footer-social { display: flex; gap: 16px; align-items: center }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s }
.footer-social a:hover { border-color: var(--teal); background: rgba(50,180,140,.1) }
.footer-social svg { width: 16px; height: 16px; fill: rgba(0,0,0,.35) }
.footer-social a:hover svg { fill: var(--teal) }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px }
.footer-copy { font-size: .72rem; color: rgba(0,0,0,.3) }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-fill { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; padding: 15px 26px; border-radius: 999px; font-size: .95rem; font-weight: 500; box-shadow: 0 4px 24px rgba(50,180,140,.28); transition: background .2s, transform .15s }
.btn-fill:hover { background: var(--teal-d); transform: translateY(-2px) }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--dark); padding: 14px 22px; border-radius: 999px; font-size: .9rem; border: 1px solid var(--border); transition: border-color .2s, background .2s }
.btn-ghost:hover { border-color: var(--teal); background: var(--teal-f) }

/* ── TYPOGRAPHY UTILS ────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px }
.eyebrow::before { content: '\2014'; opacity: .5 }
.sec-h { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; line-height: 1.1; letter-spacing: -.03em; color: var(--dark) }
.sec-h em { font-style: italic; color: var(--teal) }
.sec-p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 560px }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero { padding: 140px 0 80px; background: var(--bg) }
.page-hero .eyebrow { margin-bottom: 20px }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 500; line-height: 1.06; letter-spacing: -.03em; color: var(--dark); max-width: 820px }
.page-hero h1 em { font-style: italic; color: var(--teal) }
.page-hero .lead { font-size: 1.1rem; font-weight: 300; color: var(--muted); line-height: 1.85; max-width: 580px; margin-top: 24px }
.page-divider { height: 1px; background: var(--border); margin: 0 }

/* ── PROSE (legal pages) ─────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; padding: 80px 32px }
.prose h2 { font-family: var(--display); font-size: 1.6rem; font-weight: 500; letter-spacing: -.02em; margin: 52px 0 16px; color: var(--dark) }
.prose h2:first-child { margin-top: 0 }
.prose p { font-size: .97rem; font-weight: 300; color: #4b5563; line-height: 1.85; margin-bottom: 16px }
.prose ul { list-style: none; margin-bottom: 16px }
.prose ul li { font-size: .97rem; font-weight: 300; color: #4b5563; line-height: 1.85; padding-left: 20px; position: relative; margin-bottom: 8px }
.prose ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--teal); opacity: .7 }
.prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1) }
.reveal.in { opacity: 1; transform: none }
.d1 { transition-delay: .1s }
.d2 { transition-delay: .22s }
.d3 { transition-delay: .34s }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-sep, .nav-links, .nav-cta { display: none }
  .burger { display: flex; order: -1; margin-left: 0; margin-right: 0; width: 44px; height: 44px; padding: 0 }
  .hdr-pill { padding: 6px; width: fit-content }
  .hdr { justify-content: flex-start }
  .footer-inner { grid-template-columns: 1fr; gap: 32px }
  .logo { max-width: 160px; overflow: hidden; transition: max-width .7s cubic-bezier(.4,0,.2,1), opacity .6s ease, padding .7s cubic-bezier(.4,0,.2,1), margin .7s cubic-bezier(.4,0,.2,1) }
  .logo.nav-hide { max-width: 0; opacity: 0; padding: 0; pointer-events: none }
}
@media (max-width: 600px) {
  .container { padding: 0 20px }
  .page-hero { padding: 110px 0 56px }
  .hdr { padding: 0 16px }
}
