/* ============ Canela: display for headings, Text for body ============ */
@font-face{font-family:'Canela';src:url('../fonts/Canela-Light.otf') format('opentype');font-weight:300;font-display:swap}
@font-face{font-family:'Canela';src:url('../fonts/Canela-Regular.otf') format('opentype');font-weight:400;font-display:swap}
@font-face{font-family:'Canela';src:url('../fonts/Canela-Medium.otf') format('opentype');font-weight:500;font-display:swap}
@font-face{font-family:'Canela';src:url('../fonts/Canela-Bold.otf') format('opentype');font-weight:700;font-display:swap}
@font-face{font-family:'Canela Text';src:url('../fonts/CanelaText-Regular.otf') format('opentype');font-weight:400;font-display:swap}
@font-face{font-family:'Canela Text';src:url('../fonts/CanelaText-Medium.otf') format('opentype');font-weight:500;font-display:swap}
@font-face{font-family:'Canela Text';src:url('../fonts/CanelaText-Bold.otf') format('opentype');font-weight:700;font-display:swap}
/* Poppins for digits only — unicode-range serves 0-9, everything else falls through to Canela */
@font-face{font-family:'Poppins';src:url('../fonts/Poppins-Medium.ttf') format('truetype');font-weight:400 700;font-display:swap;unicode-range:U+0030-0039}

:root{
  --ink:#111;
  --gray:#6f6f6f;
  --mint:#dcfcf5;
  --yellow:#feed85;
  --pale-yellow:#fefac9;
  --gray-card:#f6f6f4;
  --r-card:24px;
  --r-img:20px;
  --font:'Poppins','Canela Text','Instrument Serif',Georgia,serif;
  --font-display:'Poppins','Canela','Instrument Serif',Georgia,serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:var(--font);
  color:var(--ink);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:1180px;margin:0 auto;padding:0 20px}
h1,h2,h3,.serif{font-family:var(--font-display)}
.serif{font-weight:400}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  border-radius:999px;border:none;cursor:pointer;
  font-family:var(--font);font-size:15px;font-weight:500;
  padding:15px 28px;transition:opacity .15s;
}
.btn:hover{opacity:.85}
.btn-black{background:var(--ink);color:#fff}
.btn-outline{background:transparent;color:var(--ink);border:1.5px solid var(--ink);padding:12px 24px}
.link-underline{
  font-size:15px;font-weight:500;letter-spacing:.02em;
  text-decoration:underline;text-underline-offset:5px;
}
.circle-arrow{
  width:38px;height:38px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;flex:none;
}
.circle-arrow.dark{background:var(--ink);color:#fff}
.circle-arrow.light{background:#fff;color:var(--ink)}
.circle-arrow.ring{border:1.5px solid var(--ink);color:var(--ink);background:transparent}
.circle-arrow svg{width:14px;height:14px}

/* ---------- header ---------- */
header{
  border-bottom:1px solid #eee;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  position:sticky;top:0;z-index:100;
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 20px;max-width:1180px;margin:0 auto;
}
.logo{display:flex;align-items:flex-start;gap:8px;line-height:1.05}
.logo .bar{width:3px;align-self:stretch;background:var(--ink)}
.logo .t1{font-size:14px;font-weight:400}
.logo .t2{font-size:17px;font-weight:700;letter-spacing:.02em}
.nav-links{display:flex;gap:30px;list-style:none;font-size:15px;color:#555}
.nav-links .active{color:var(--ink);font-weight:500}
.nav-links a:hover{color:var(--ink)}
.nav-right{display:flex;align-items:center;gap:14px}
.search-btn{
  width:40px;height:40px;border-radius:50%;border:1px solid #ddd;
  background:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;
}
.nav-toggle{display:none}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px}
.hamburger span{width:24px;height:2px;background:var(--ink)}

/* ---------- hero (home) ---------- */
.hero{
  display:grid;grid-template-columns:1fr 1.05fr;gap:40px;
  align-items:start;padding:56px 0 40px;
}
.hero h1{font-size:clamp(42px,5.5vw,68px);line-height:1.08;letter-spacing:-.01em}
.hero-sub{margin-top:26px;font-size:16px;line-height:1.6;max-width:440px}
.hero-sub b{font-weight:500}
.hero-sub .dim{color:#9a9a9a}
.hero-sub.highlight{
  margin-top:30px;font-size:18px;line-height:1.55;max-width:480px;color:var(--ink);
  font-weight:450;border-left:3px solid var(--yellow);padding-left:18px;
}
.hero-sub.highlight b{font-weight:600}
.hero-ctas{display:flex;align-items:center;gap:28px;margin-top:34px}
.hero-ctas .btn-black{text-transform:uppercase;letter-spacing:.04em;font-size:14px}
.hero-ctas .link-underline{text-transform:uppercase;font-size:14px}
.hero-stats{display:flex;align-items:center;gap:30px;margin-top:56px}
.stat-card{
  background:var(--pale-yellow);border-radius:var(--r-card);
  padding:18px 20px;flex:none;
}
.stat-card .row1{display:flex;align-items:flex-start;gap:12px}
.stat-card .num{font-size:30px;font-weight:500;letter-spacing:-.01em}
.stat-card .cap{font-size:12.5px;line-height:1.4;font-weight:400;padding-top:5px;max-width:150px}
.avatars{display:flex;margin-top:12px}
.avatars img{
  width:34px;height:34px;border-radius:50%;object-fit:cover;
  border:2px solid #fff;
}
.avatars img + img{margin-left:-10px}
.avatars .plus{
  width:22px;height:22px;border-radius:50%;background:#fff;border:1px solid #ddd;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;margin-left:-6px;align-self:flex-start;
}
.stat-plain .num{font-size:30px;font-weight:500}
.stat-plain .cap{font-size:15px;color:#8a8a8a;margin-top:8px;max-width:220px;line-height:1.45}
.hero-img img{border-radius:var(--r-card);width:100%}

/* ---------- feature cards row ---------- */
.feature-row{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  padding:26px 0 60px;
}
.f-card{
  display:block;position:relative;border-radius:var(--r-card);overflow:hidden;min-height:230px;
}
/* square photo cards so baked-in captions never crop */
.feature-row .f-card{aspect-ratio:1;min-height:0}
.f-card > img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.f-card .caption{
  position:absolute;left:18px;bottom:16px;right:18px;
  color:#fff;font-size:16px;font-weight:500;line-height:1.35;
  text-shadow:0 1px 8px rgba(0,0,0,.35);
}
.f-card .corner{position:absolute;top:14px;left:14px;z-index:2}
.f-card .corner.right{left:auto;right:14px}
.f-card .corner .circle-arrow{width:34px;height:34px}
.testimonial{
  border-radius:var(--r-card);
  background:linear-gradient(150deg,#f6f2d9 0%,#dfeaf2 45%,#ecd9dc 100%);
  padding:22px;display:flex;flex-direction:column;min-height:230px;
}
.testimonial .top{display:flex;justify-content:space-between;align-items:flex-start}
.testimonial .top h3{font-size:16.5px;font-weight:700}
.testimonial p{font-size:15.5px;line-height:1.5;margin-top:auto;padding:18px 0}
.testimonial .bottom{display:flex;align-items:center;justify-content:space-between}
.testimonial .who{display:flex;align-items:center;gap:10px;font-size:15px;font-weight:500}
.testimonial .who .avatars img{width:30px;height:30px}
.testimonial .quote{font-size:30px;line-height:.5;font-weight:700}
/* flipping review card — the whole card turns, one patient every 5s.
   Sized like the photo cards next to it so the row stays even. */
.rev-flip{perspective:1400px;aspect-ratio:1;min-height:230px}
.rev-inner{position:relative;width:100%;height:100%;transform-style:preserve-3d;transition:transform .9s cubic-bezier(.16,1,.3,1)}
.rev-flip.is-flipped .rev-inner{transform:rotateX(180deg)}
.rev-face{
  position:absolute;inset:0;
  backface-visibility:hidden;-webkit-backface-visibility:hidden;
}
.rev-back{transform:rotateX(180deg)}
.testimonial .rev-body{margin-top:auto;padding:18px 0}
.testimonial .rev-quote{font-size:15.5px;line-height:1.5;margin:0;padding:0}
.testimonial .rev-who{margin:10px 0 0;padding:0;font-size:13px;line-height:1.4;display:flex;flex-direction:column}
.rev-who b{font-weight:600;font-size:14px}
.rev-who span{color:#4a4a4a}
@media (prefers-reduced-motion:reduce){.rev-inner{transition:none}}

/* ---------- road / well-being ---------- */
.road-head{
  display:grid;grid-template-columns:1.1fr 1fr;gap:40px;align-items:start;
  padding:40px 0 36px;
}
.road-head h2{font-size:clamp(36px,4.2vw,54px);line-height:1.1}
.road-head .right p{font-size:15.5px;line-height:1.65;color:#333}
.road-head .right .btn{margin-top:22px;text-transform:uppercase;font-size:14px;letter-spacing:.04em}

/* auto-scrolling category carousel (same engine as results marquee) */
.couns-marquee{
  overflow:hidden;position:relative;margin-bottom:54px;
  -webkit-mask:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
  mask:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
}
.couns-grid{display:flex;gap:20px;width:max-content;animation:scroll-x 26s linear infinite}
.couns-marquee:hover .couns-grid{animation-play-state:paused}
.c-card{
  background:var(--mint);border-radius:28px;padding:22px 18px 12px;
}
.c-card h3{font-size:22px;font-weight:500;line-height:1.2}
.c-card .sub{font-size:13.5px;font-weight:400;line-height:1.45;margin-top:10px}
.tags{display:flex;gap:8px;margin:16px 0 18px;flex-wrap:wrap}
.tag{
  background:#fff;border-radius:999px;padding:8px 16px;
  font-size:13.5px;font-weight:400;
}
.c-card img{border-radius:var(--r-img);width:100%}
/* service cards (no image) */
.couns-grid .c-card{flex:0 0 min(82vw,288px);display:flex;flex-direction:column;padding:26px 22px 24px;min-height:250px}
.couns-grid .c-card .sub{margin-top:auto;color:#245c53}

/* ---------- real patients / results marquee ---------- */
.results{padding:10px 0 84px}
.results-head{max-width:660px;margin-bottom:34px}
.results-head h2{font-size:clamp(32px,4vw,50px);line-height:1.12}
.results-head p{font-size:15.5px;line-height:1.65;color:#333;margin-top:16px}
.marquee{
  overflow:hidden;position:relative;
  -webkit-mask:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
  mask:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
}
.marquee-track{display:flex;gap:20px;width:max-content;animation:scroll-x 55s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee-track a{flex:none;width:330px;height:330px;display:block;cursor:zoom-in}
.marquee-track img{width:100%;height:100%;object-fit:cover;border-radius:var(--r-card)}
@keyframes scroll-x{to{transform:translateX(calc(-50% - 10px))}}
@media (prefers-reduced-motion:reduce){
  .marquee-track,.couns-grid{animation:none}
  .couns-marquee{overflow-x:auto}
}

/* lightbox — pure CSS :target, click to open full image */
.lightbox{
  position:fixed;inset:0;z-index:1000;display:none;
  align-items:center;justify-content:center;padding:24px;
  background:rgba(0,0,0,.88);cursor:zoom-out;
}
.lightbox:target{display:flex}
.lightbox .lb-bg{position:absolute;inset:0}
.lightbox img{max-width:94vw;max-height:94vh;width:auto;border-radius:12px;position:relative;z-index:1}
.lightbox .lb-close{
  position:absolute;top:20px;right:24px;width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.15);color:#fff;font-size:26px;line-height:44px;text-align:center;
}
.lightbox .lb-close:hover{background:rgba(255,255,255,.3)}

/* ---------- explore service badge ---------- */
.explore-card{position:relative}
.explore-badge{position:absolute;top:16px;right:16px;width:96px;height:96px;z-index:3}
.explore-badge svg.ring{width:100%;height:100%;animation:spin 16s linear infinite}
.explore-badge text{font-family:var(--font);font-size:10.5px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;fill:#fff}
.explore-badge .arw{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:36px;height:36px;border-radius:50%;background:#fff;color:var(--ink);
  display:flex;align-items:center;justify-content:center;
}
.explore-badge .arw svg{width:16px;height:16px}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- important info ---------- */
.info-head{text-align:center;padding:20px 0 40px}
.info-head h2{font-size:clamp(36px,4.5vw,54px);line-height:1.15}
.info-head p{font-size:15.5px;line-height:1.6;color:#333;max-width:620px;margin:18px auto 0}
.info-grid{
  display:grid;grid-template-columns:1fr 1.02fr;gap:22px;padding-bottom:80px;
}
.info-left{display:flex;flex-direction:column;gap:22px}
.yellow-card{
  background:var(--yellow);border-radius:var(--r-card);padding:26px 28px;flex:1;
}
.yellow-card .top{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.pill-black{
  background:var(--ink);color:#fff;border-radius:999px;
  padding:10px 20px;font-size:14px;font-weight:500;
}
.pill-ghost{
  border:1.5px solid var(--ink);border-radius:999px;
  padding:9px 20px;font-size:14px;font-weight:500;
}
.yellow-card .top .avatars{margin:0 0 0 auto}
.yellow-card .pct{font-size:44px;font-weight:500;margin-top:44px;letter-spacing:-.01em}
.yellow-card p{font-size:15px;line-height:1.55;margin-top:14px;max-width:480px}
.explore-card{border-radius:var(--r-card);overflow:hidden}
.explore-card img{width:100%}
.mint-card{
  position:relative;background:#dafcf6;border-radius:var(--r-card);
  padding:32px;overflow:hidden;min-height:520px;
  display:flex;flex-direction:column;align-items:flex-start;
}
.mint-card h3{font-size:clamp(24px,2.4vw,31px);font-weight:500;line-height:1.25;max-width:56%;position:relative;z-index:2}
.mint-card .btn{margin-top:20px;position:relative;z-index:2;font-size:14px}
.mint-card .doc{
  position:absolute;right:0;bottom:0;width:min(72%,420px);z-index:1;
}

/* ---------- support ---------- */
.support-head{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:end;
  padding:10px 0 36px;
}
.support-head h2{font-size:clamp(36px,4.5vw,54px);line-height:1.12}
.support-head .right p{font-size:15.5px;line-height:1.6;color:#333}
.support-head .cta{display:flex;align-items:center;gap:10px;margin-top:18px}

.support-grid{
  display:grid;
  grid-template-columns:37fr 22fr 17fr 18fr;
  grid-template-rows:auto auto;
  gap:20px;padding-bottom:90px;
}
.sg-couch{grid-row:1/3;border-radius:var(--r-card);overflow:hidden}
.sg-list{grid-column:2/4}
.sg-bed{grid-column:2/3}
.sg-yellow{grid-column:3/5}
.sg-couch img{width:100%;height:100%;object-fit:cover}
.sg-list{
  background:var(--gray-card);border-radius:var(--r-card);padding:26px 28px;
  display:flex;flex-direction:column;justify-content:center;gap:22px;
}
.sg-list .item{display:flex;align-items:center;gap:16px;font-size:17.5px;font-weight:400}
.sg-list .ic{
  width:40px;height:40px;border-radius:12px;background:var(--ink);flex:none;
  display:inline-flex;align-items:center;justify-content:center;color:#fff;
}
.sg-list .ic svg{width:18px;height:18px}
.sg-avatars{
  background:#dafcf6;border-radius:var(--r-card);
  display:flex;align-items:center;justify-content:center;
}
.sg-avatars .avatars img{width:52px;height:52px;border-width:3px}
.sg-avatars .avatars img:nth-child(2){width:64px;height:64px;z-index:2;position:relative}
.sg-bed{border-radius:var(--r-card);overflow:hidden}
.sg-bed img{width:100%;height:100%;object-fit:cover}
.sg-yellow{
  background:var(--yellow);border-radius:var(--r-card);padding:28px 30px;
  display:flex;flex-direction:column;justify-content:space-between;gap:36px;
}
.sg-yellow h3{font-size:clamp(20px,2vw,26px);font-weight:500;line-height:1.3;max-width:380px}
.sg-yellow .cta{display:flex;align-items:center;gap:10px}

/* ============================================================
   Inner pages
   ============================================================ */

/* breadcrumb */
.crumbs{font-size:13.5px;color:#8a8a8a;padding:26px 0 0}
.crumbs a:hover{color:var(--ink)}
.crumbs span{margin:0 8px}

/* page hero banner */
.page-hero{
  background:var(--mint);border-radius:var(--r-card);
  padding:56px 48px;margin:24px 0 56px;
}
.page-hero.yellow{background:var(--pale-yellow)}
.page-hero .eyebrow{
  display:inline-block;background:#fff;border-radius:999px;
  padding:8px 18px;font-size:13.5px;margin-bottom:22px;
}
.page-hero h1{font-size:clamp(38px,4.8vw,58px);line-height:1.1;max-width:760px}
.page-hero .sub{font-size:17px;line-height:1.65;color:#333;max-width:640px;margin-top:20px}
.page-hero .cta{display:flex;align-items:center;gap:16px;margin-top:30px;flex-wrap:wrap}

/* prose */
.prose{max-width:760px;font-size:17px;line-height:1.75;color:#222}
.prose h2{font-size:clamp(28px,3vw,38px);line-height:1.2;margin:52px 0 18px;font-weight:400}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:22px;margin:34px 0 12px;font-weight:500}
.prose p{margin:0 0 18px}
.prose ul,.prose ol{margin:0 0 18px 22px}
.prose li{margin-bottom:8px}
.prose a{text-decoration:underline;text-underline-offset:4px}
.prose .note{
  background:var(--gray-card);border-radius:16px;padding:18px 22px;
  font-size:15px;color:#555;margin:26px 0;
}

/* two-column: prose + aside */
.page-cols{display:grid;grid-template-columns:1fr 320px;gap:56px;padding-bottom:70px;align-items:start}
.aside-card{
  background:var(--pale-yellow);border-radius:var(--r-card);padding:26px;
  position:sticky;top:24px;
}
.aside-card h3{font-size:21px;font-weight:500;line-height:1.3}
.aside-card p{font-size:15px;line-height:1.6;margin-top:12px;color:#333}
.aside-card .btn{margin-top:18px;width:100%;justify-content:center}
.aside-card .links{list-style:none;margin-top:16px;font-size:15px}
.aside-card .links li{border-top:1px solid rgba(0,0,0,.1);padding:11px 0}
.aside-card .links a:hover{text-decoration:underline}

/* symptom / bullet pill grid */
.pill-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:8px 0 26px;max-width:760px}
.pill-grid .p-item{
  background:var(--gray-card);border-radius:16px;padding:15px 20px;
  font-size:15.5px;line-height:1.4;
}

/* approach steps */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin:30px 0 10px}
.step{background:var(--mint);border-radius:var(--r-card);padding:24px 22px}
.step .n{font-size:30px;font-weight:400;color:#0e8f7a}
.step h3{font-size:19px;font-weight:500;margin-top:10px;line-height:1.3}
.step p{font-size:14.5px;line-height:1.55;margin-top:8px;color:#333}

/* FAQ */
.faq{max-width:760px;margin:10px 0 30px}
.faq details{border-top:1px solid #e6e6e6;padding:4px 0}
.faq details:last-child{border-bottom:1px solid #e6e6e6}
.faq summary{
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;
  gap:20px;font-size:18px;font-weight:500;padding:18px 4px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+';font-size:24px;font-weight:300;color:#999}
.faq details[open] summary::after{content:'\2212'}
.faq .a{font-size:16px;line-height:1.7;color:#333;padding:0 4px 20px;max-width:680px}

/* CTA band */
.cta-band{
  background:var(--yellow);border-radius:var(--r-card);
  padding:48px;margin:60px 0 90px;
  display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
}
.cta-band h2{font-size:clamp(26px,3vw,38px);line-height:1.2;max-width:520px}
.cta-band p{font-size:15.5px;color:#333;margin-top:10px;max-width:480px}
.cta-band .cta{display:flex;align-items:center;gap:12px}

/* listing cards (conditions / services / blog) */
.list-head{padding:0 0 34px}
.list-head h2{font-size:clamp(30px,3.4vw,44px);line-height:1.15}
.list-head p{font-size:15.5px;color:#333;margin-top:12px;max-width:620px;line-height:1.6}
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;padding-bottom:70px}
.g-card{
  background:var(--mint);border-radius:var(--r-card);padding:26px 24px;
  display:flex;flex-direction:column;gap:10px;transition:transform .15s;
}
.g-card:hover{transform:translateY(-3px)}
.g-card.alt{background:var(--pale-yellow)}
.g-card.gray{background:var(--gray-card)}
.g-card h3{font-size:21px;font-weight:500;line-height:1.25}
.g-card p{font-size:14.5px;line-height:1.55;color:#333;flex:1}
.g-card .go{
  display:flex;align-items:center;gap:8px;font-size:14px;font-weight:500;margin-top:6px;
}
.g-card .go .circle-arrow{width:30px;height:30px}

/* blog post meta */
.post-meta{
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  font-size:14px;color:#777;margin:14px 0 6px;
}
.post-meta .rev{
  background:var(--mint);border-radius:999px;padding:6px 14px;color:var(--ink);font-size:13px;
}

/* doctors / team */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;padding-bottom:70px}
.t-card{background:var(--gray-card);border-radius:var(--r-card);overflow:hidden}
.t-card img{width:100%;aspect-ratio:1/1.05;object-fit:cover}
.t-card .info{padding:20px 22px}
.t-card h3{font-size:20px;font-weight:500}
.t-card .role{font-size:14.5px;color:#0e8f7a;margin-top:4px}
.t-card p{font-size:14px;color:#555;line-height:1.55;margin-top:10px}

/* listing-card thumbnails — bleed to card edges, top corners clipped by card radius */
.g-card{overflow:hidden}

.g-card .card-thumb{
  display:block;width:calc(100% + 48px);max-width:none;height:172px;object-fit:cover;margin:-26px -24px 4px;
}
/* doctor monogram avatars — honest placeholder, no fabricated faces */
.t-card .avatar{
  aspect-ratio:1/1.05;display:flex;align-items:center;justify-content:center;
  font-family:'Instrument Serif',serif;font-size:82px;letter-spacing:1px;
  color:#0b6e5e;background:linear-gradient(150deg,var(--mint),#cfeee6);
}
.t-card .avatar.y{color:#8a6a12;background:linear-gradient(150deg,var(--pale-yellow),#f3ead0)}
.t-card .avatar.g{color:#555;background:linear-gradient(150deg,var(--gray-card),#e2e2e2)}
/* about banner */
.about-figure{border-radius:var(--r-card);overflow:hidden;margin:6px 0 34px;max-height:340px}
.about-figure img{width:100%;height:100%;max-height:340px;object-fit:cover;display:block}

/* story cards */
.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;padding-bottom:70px}
.story{
  border-radius:var(--r-card);padding:28px;
  background:linear-gradient(150deg,#f6f2d9 0%,#dfeaf2 45%,#ecd9dc 100%);
}
.story p{font-size:16.5px;line-height:1.65}
.story .who{display:flex;align-items:center;gap:12px;margin-top:20px;font-size:15px;font-weight:500}
.story .who img{width:38px;height:38px;border-radius:50%;object-fit:cover}
.story .who .cond{display:block;font-size:13px;color:#777;font-weight:400}

/* contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;padding-bottom:80px}
.contact-card{background:var(--mint);border-radius:var(--r-card);padding:34px}
.contact-card h3{font-size:24px;font-weight:500}
.contact-card .row{display:flex;gap:14px;align-items:flex-start;margin-top:22px;font-size:16px;line-height:1.5}
.contact-card .row .ic{
  width:40px;height:40px;border-radius:12px;background:var(--ink);color:#fff;flex:none;
  display:inline-flex;align-items:center;justify-content:center;
}
.contact-card .row .ic svg{width:18px;height:18px}
.form-card{background:var(--gray-card);border-radius:var(--r-card);padding:34px}
.form-card label{display:block;font-size:14.5px;font-weight:500;margin:18px 0 8px}
.form-card label:first-of-type{margin-top:0}
.form-card input,.form-card select,.form-card textarea{
  width:100%;border:1px solid #ddd;border-radius:14px;background:#fff;
  padding:13px 16px;font-family:var(--font);font-size:15px;color:var(--ink);
}
.form-card textarea{min-height:110px;resize:vertical}
.form-card .btn{margin-top:24px}
.form-card label.consent{
  display:flex;gap:10px;align-items:flex-start;margin:20px 0 0;
  background:#fff;border:1px solid #ddd;border-radius:14px;padding:13px 15px;
  font-size:13.5px;font-weight:400;line-height:1.5;color:#444;cursor:pointer;
}
.form-card label.consent input{width:auto;flex:none;margin-top:2px;accent-color:var(--ink)}
.form-card label.consent a{text-decoration:underline;text-underline-offset:3px}

/* footer */
footer{background:var(--ink);color:#fff;margin-top:20px}
.foot{max-width:1180px;margin:0 auto;padding:60px 20px 30px}
.foot-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;padding-bottom:44px}
.foot .logo .bar{background:#fff}
.foot .tag{background:none;padding:0;font-size:15px;color:#bbb;line-height:1.6;margin-top:16px;max-width:300px;display:block}
.foot h4{font-size:14px;letter-spacing:.08em;text-transform:uppercase;color:#888;font-weight:400;margin-bottom:16px}
.foot ul{list-style:none;font-size:15px}
.foot ul li{margin-bottom:10px}
.foot ul a:hover{text-decoration:underline}
.foot-bottom{
  border-top:1px solid #333;padding-top:24px;
  font-size:13px;color:#888;line-height:1.7;
}
.foot-bottom .legal{margin-top:10px}
.foot-social{display:flex;gap:18px;margin-top:16px}
.foot-social a{display:inline-flex;align-items:center;gap:7px;color:#bbb;font-size:13.5px}
.foot-social a:hover{color:#fff}
.foot-social svg{width:17px;height:17px}
.foot-legal-links{display:flex;gap:18px;margin-top:12px}
.foot-legal-links a{color:#bbb}
.foot-legal-links a:hover{color:#fff;text-decoration:underline}

/* team page — written profiles, no photos */
.team-list{display:grid;gap:18px;padding-bottom:20px}
.team-bio{
  background:var(--gray-card);border-radius:var(--r-card);padding:28px 30px;
  display:grid;grid-template-columns:220px 1fr;gap:14px 34px;align-items:start;
}
.team-bio h3{font-size:22px;font-weight:500;line-height:1.25}
.team-bio .role{font-size:14.5px;color:#0e8f7a;margin-top:6px;line-height:1.45}
.team-bio .bio p{font-size:16px;line-height:1.7;color:#333;margin:0 0 14px}
.team-bio .bio p:last-child{margin-bottom:0}
.team-bio .bio ul{margin:0 0 0 20px;font-size:16px;line-height:1.7;color:#333}
@media (max-width:820px){.team-bio{grid-template-columns:1fr;padding:24px 22px}}

/* ============================================================
   micro-animations — clean, Apple-style ease-out.
   Reveal is armed only after JS adds .reveal-ready, so no-JS
   and reduced-motion users always see full content.
   ============================================================ */
@media (prefers-reduced-motion:no-preference){
  .reveal-ready [data-reveal]{
    opacity:0;transform:translateY(18px);
    transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1);
    transition-delay:var(--d,0ms);will-change:opacity,transform;
  }
  .reveal-ready [data-reveal].in{opacity:1;transform:none}

  /* hover micro-lifts */
  .btn{transition:opacity .15s,transform .25s cubic-bezier(.16,1,.3,1)}
  .btn:hover{transform:translateY(-2px)}
  .btn:active{transform:translateY(0)}
  .g-card,.t-card,.team-bio,.step,.story,.contact-card{
    transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
  }
  .g-card:hover,.t-card:hover,.team-bio:hover{transform:translateY(-4px);box-shadow:0 14px 34px -14px rgba(0,0,0,.2)}
  .circle-arrow{transition:transform .25s cubic-bezier(.16,1,.3,1)}
  .g-card:hover .circle-arrow,.cta:hover .circle-arrow,.go:hover .circle-arrow{transform:translate(2px,-2px)}
  /* image reveal-zoom inside framed cards */
  .t-card img{transition:transform .55s cubic-bezier(.16,1,.3,1)}
  .t-card:hover img{transform:scale(1.045)}
  .g-card .card-thumb{transition:transform .55s cubic-bezier(.16,1,.3,1)}
  .g-card:hover .card-thumb{transform:scale(1.045)}
  .post-hero img{transition:transform .6s cubic-bezier(.16,1,.3,1)}
  .post-hero:hover img{transform:scale(1.02)}
  /* FAQ open glide */
  .faq .a{transition:opacity .3s ease}
}

/* blog hero image frame */
.post-hero{border-radius:var(--r-card);overflow:hidden;margin:22px 0 30px;max-height:420px}
.post-hero img{width:100%;height:100%;max-height:420px;object-fit:cover}
.post-hero figcaption{font-size:13px;color:#9a9a9a;padding:10px 2px 0;line-height:1.4}
.prose .inline-img{border-radius:var(--r-img);overflow:hidden;margin:30px 0}
.prose .inline-img img{width:100%}
.prose .inline-img figcaption{font-size:13px;color:#9a9a9a;padding:10px 2px 0}

/* ---------- responsive ---------- */
@media (max-width:1000px){
  .feature-row{grid-template-columns:repeat(2,1fr)}
  .couns-grid{grid-template-columns:repeat(2,1fr)}
  .info-grid{grid-template-columns:1fr}
  .mint-card{min-height:440px}
  .support-grid{grid-template-columns:1fr 1fr}
  .sg-couch{grid-row:auto;grid-column:1/3}
  .sg-list{grid-column:1/2}
  .sg-avatars{grid-column:2/3}
  .sg-bed{grid-column:1/2}
  .sg-yellow{grid-column:2/3}
  .page-cols{grid-template-columns:1fr}
  .aside-card{position:static}
  .steps{grid-template-columns:repeat(2,1fr)}
  .card-grid,.team-grid{grid-template-columns:repeat(2,1fr)}
  .foot-top{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .nav-links,.nav-right .search-btn{display:none}
  .hamburger{display:flex}
  .nav-toggle:checked ~ .nav-links{
    display:flex;flex-direction:column;gap:16px;
    position:absolute;top:76px;left:0;right:0;background:#fff;
    padding:24px;border-bottom:1px solid #eee;z-index:50;
  }
  .hero{grid-template-columns:1fr;padding-top:36px}
  .hero-stats{gap:20px;flex-wrap:wrap;margin-top:40px}
  .road-head,.support-head{grid-template-columns:1fr;gap:20px}
  .info-head{padding-top:0}
  .page-hero{padding:40px 28px}
  .story-grid,.contact-grid{grid-template-columns:1fr}
  .cta-band{padding:34px 28px}
}
@media (max-width:560px){
  .feature-row,.couns-grid,.support-grid,.card-grid,.team-grid{grid-template-columns:1fr}
  .sg-couch,.sg-list,.sg-avatars,.sg-bed,.sg-yellow{grid-column:auto}
  .sg-avatars{padding:36px 0}
  .f-card{min-height:260px}
  .hero-ctas{flex-wrap:wrap;gap:18px}
  .yellow-card .pct{margin-top:28px}
  .mint-card{min-height:420px;padding:24px}
  .mint-card .doc{width:82%}
  .pill-grid,.steps{grid-template-columns:1fr}
  .foot-top{grid-template-columns:1fr}
}

/* ── sticky social rail (left) ─────────────────────────── */
.social-rail{
  position:fixed;left:0;top:50%;transform:translateY(-50%);
  z-index:80;display:flex;flex-direction:column;
  border-radius:0 14px 14px 0;overflow:hidden;
  box-shadow:0 6px 24px rgba(0,0,0,.10);
}
.social-rail a{
  position:relative;width:46px;height:46px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;color:var(--ink);
  transition:background .28s cubic-bezier(.16,1,.3,1),color .28s cubic-bezier(.16,1,.3,1);
}
.social-rail a + a{border-top:1px solid rgba(0,0,0,.06)}
.social-rail svg{width:19px;height:19px}
.social-rail a:hover{background:var(--mint)}
.social-rail a.sr-wa:hover{background:#dff5e4}
.social-rail a::after{
  content:attr(data-label);
  position:absolute;left:100%;top:50%;transform:translate(-6px,-50%);
  background:var(--ink);color:#fff;font-size:11px;letter-spacing:.02em;
  padding:5px 10px;border-radius:6px;white-space:nowrap;
  opacity:0;pointer-events:none;
  transition:opacity .25s ease,transform .25s cubic-bezier(.16,1,.3,1);
}
.social-rail a:hover::after{opacity:1;transform:translate(8px,-50%)}
@media (max-width:900px){
  .social-rail{border-radius:0 10px 10px 0}
  .social-rail a{width:38px;height:38px}
  .social-rail svg{width:16px;height:16px}
  .social-rail a::after{display:none}
}
@media (prefers-reduced-motion:reduce){
  .social-rail a,.social-rail a::after{transition:none}
}
