/* ============================================================
   BLISS FERTILITY HOSPITAL — Tirur
   Palette: clinical-warm — soft teal × warm white × blush
   Fonts: Lora (display italic) + Inter Tight (body/labels)
   No Lenis. No Roman numerals. Native scroll only.
   ============================================================ */

:root{
  --teal:        #4AADAA;
  --teal-deep:   #2C8582;
  --teal-pale:   #9ED4D2;
  --teal-soft:   #C8E9E8;
  --teal-bg:     #EDF6F6;
  --blush:       #EEA49C;
  --blush-deep:  #C07068;
  --blush-pale:  #F9D9D6;
  --blush-bg:    #FDF0EE;
  --deep:        #1B3534;
  --deep-soft:   #254949;
  --deep-muted:  #3A5757;
  --cream:       #F6FAFA;
  --cream-soft:  #EFF7F7;
  --cream-deep:  #DFF0EF;
  --ink:         #1A2828;
  --ink-soft:    #3C5050;
  --mute:        #6B8888;
  --mute-soft:   #8FA8A8;
  --line:        rgba(27,53,52,0.10);
  --line-soft:   rgba(27,53,52,0.06);

  --serif: "Lora", "Georgia", serif;
  --sans:  "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --label: "Inter Tight", system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 64px);
  --col-max: 1320px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin:0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: 0; background: 0; }

::selection{ background: var(--teal); color: var(--cream); }

/* ---------- lang toggle ---------- */
[data-lang="ml"]{ display: none; }
body.lang-ml [data-lang="en"]{ display: none; }
body.lang-ml [data-lang="ml"]{ display: revert; }

/* ---------- typography ---------- */
.eyebrow{
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before{
  content: "";
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 10px;
}
h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.08;
  color: var(--deep);
  margin: 0 0 .4em;
}
h1{ font-size: clamp(40px, 6.6vw, 96px); }
h2{ font-size: clamp(32px, 4.6vw, 64px); }
h3{ font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
h4{ font-size: clamp(18px, 1.6vw, 22px); }

em{ font-style: italic; color: var(--teal-deep); }

p{ margin:0 0 1.1em; max-width: 65ch; color: var(--ink-soft); }
.lede{ font-size: clamp(18px, 1.5vw, 22px); color: var(--ink); line-height: 1.55; }

/* ---------- structure ---------- */
.wrap{
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section{ position: relative; }

/* ---------- skip link ---------- */
.skip{
  position: absolute; left: -9999px; top: 0;
  background: var(--deep); color: var(--cream); padding: 12px 18px;
  font-size: 12px; z-index: 999;
}
.skip:focus{ left: 12px; top: 12px; }
:focus-visible{ outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246,250,250,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__inner{
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brandmark{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--deep); letter-spacing: -.01em;
}
.brandmark__icon{
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.brandmark__text{ display:flex; flex-direction:column; line-height: 1.1; }
.brandmark__text small{
  font-family: var(--label); font-size: 9px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--mute); margin-top: 2px;
}
.nav__menu{ display: contents; }
.nav__links{
  display: flex; align-items: center; gap: 26px;
  font-size: 14.5px; color: var(--deep);
}
.nav__links a{
  position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav__links a:hover{ color: var(--teal-deep); }
.nav__lang{
  display: flex; align-items: center; gap: 2px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  font-family: var(--label); font-size: 12px; font-weight: 600;
}
.nav__lang button{
  padding: 5px 12px;
  border-radius: 999px;
  font: inherit;
  color: var(--mute);
  transition: background .2s, color .2s;
}
.nav__lang button.active{
  background: var(--teal-deep); color: var(--cream);
}
.nav__cta{
  background: var(--deep); color: var(--cream);
  padding: 10px 22px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover{ background: var(--teal-deep); transform: translateY(-1px); }
.nav__burger{
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__burger span{
  width: 22px; height: 1.5px; background: var(--deep);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
@media (max-width: 900px){
  .nav__links, .nav__cta{ display: none; }
  .nav__burger{ display: flex; }
  .nav.is-open .nav__menu{
    position: fixed; inset: 62px 0 0 0;
    background: var(--cream);
    padding: 40px var(--gutter);
    display: flex; flex-direction: column; gap: 24px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav.is-open .nav__links{ display: flex; flex-direction: column; gap: 18px; font-size: 24px; font-family: var(--serif); }
  .nav.is-open .nav__cta{ display: inline-block; font-size: 15px; padding: 14px 28px; margin-top: 16px; }
  .nav.is-open .nav__lang{ display: flex; margin-top: 8px; }
  .nav.is-open .nav__burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2){ opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
.nav.is-scrolled{
  background: rgba(246,250,250,0.97);
  box-shadow: 0 1px 24px rgba(27,53,52,.07);
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.wa-float{
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-decoration: none;
}
.wa-float:hover{ transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,.4); }
.wa-float svg{ flex-shrink: 0; }
@media (max-width: 600px){
  .wa-float{ bottom: 20px; right: 16px; padding: 14px 18px; }
  .wa-float span{ display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero{
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero::before{
  content: "";
  position: absolute; top: 8%; right: -8%;
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 35% 30%, var(--teal-soft) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}
.hero::after{
  content: "";
  position: absolute; bottom: 0; left: -5%;
  width: 40vw; height: 40vw; max-width: 480px;
  background: radial-gradient(circle, var(--blush-pale) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative; z-index: 1;
}
.hero__copy h1{
  font-size: clamp(42px, 6.5vw, 100px);
  line-height: .98;
  margin-bottom: 24px;
}
.hero__copy h1 em{ font-style: italic; color: var(--teal-deep); }
.hero__meta{
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--mute);
  margin-bottom: 32px;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.hero__meta::before{
  content:""; width: 24px; height: 1px; background: var(--teal);
}
.hero__lede{
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__cta{
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--teal-deep); color: var(--cream);
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__cta:hover{ background: var(--deep); transform: translateY(-2px); }
.hero__cta-sec{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 12px;
  color: var(--deep);
  font-size: 15px;
  border-bottom: 1px solid var(--deep);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.hero__cta-sec:hover{ color: var(--teal-deep); border-color: var(--teal-deep); }
.hero__ctas{ display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* Hero visual — stacked image */
.hero__visual{
  position: relative;
}
.hero__img-wrap{
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
}
.hero__img-wrap img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.hero__img-wrap:hover img{ transform: scale(1.03); }
.hero__badge{
  position: absolute; bottom: 24px; left: -16px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: 2px;
  box-shadow: 0 20px 48px rgba(27,53,52,.16);
  max-width: 250px;
  border-left: 3px solid var(--teal);
}
.hero__badge .eyebrow{ margin-bottom: 6px; display: block; }
.hero__badge .eyebrow::before{ display: none; }
.hero__badge p{
  font-family: var(--serif); font-size: 16px; font-style: italic;
  color: var(--deep); margin: 0; line-height: 1.4;
}
.hero__seal{
  position: absolute; z-index: 2;
  right: -8px; top: 32px;
  width: clamp(90px, 10vw, 120px); height: clamp(90px, 10vw, 120px);
  border-radius: 50%;
  background: var(--blush-deep); color: var(--cream);
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 12px 32px rgba(192,112,104,.35);
  padding: 8px;
}
.hero__seal strong{
  font-family: var(--serif); font-size: clamp(22px,2.6vw,32px);
  font-weight: 600; line-height:1;
  color: #fff; display:block;
}
.hero__seal span{
  font-family: var(--label); font-size: 8.5px; font-weight: 600;
  letter-spacing:.16em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-top:4px; line-height:1.3;
}
@media (max-width: 900px){
  .hero{ padding-top: 96px; }
  .hero__grid{ grid-template-columns: 1fr; gap: 40px; }
  .hero__badge{ left: 0; }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust{
  background: var(--deep);
  color: var(--cream);
  padding: clamp(40px, 5vw, 60px) 0;
}
.trust__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: start;
}
.trust__item{
  border-left: 1px solid rgba(200,233,232,.15);
  padding-left: 22px;
}
.trust__item:first-child{ border-left: 0; padding-left: 0; }
.trust__num{
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  color: var(--teal-pale);
  line-height: 1; margin-bottom: 12px; display: block;
}
.trust__lbl{
  font-size: 14.5px;
  color: rgba(246,250,250,.75);
  line-height: 1.45; max-width: 22ch;
}
@media (max-width: 760px){
  .trust__grid{ grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .trust__item{ border-left: 0; padding-left: 0; }
}

/* =====================================================
   STORY
   ===================================================== */
.story{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}
.story__inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story__visual{
  position: sticky; top: 100px;
  aspect-ratio: 4/5;
  overflow: hidden; border-radius: 2px;
  background: var(--cream-deep);
}
.story__visual img{ width:100%; height:100%; object-fit:cover; filter: saturate(.95); }
.story__visual-cap{
  font-family: var(--label); font-size: 10px; font-weight: 600;
  letter-spacing:.22em; text-transform:uppercase; color: var(--mute);
  margin-top: 12px; display: block;
}
.story__copy h2{ margin-top: 0; max-width: 18ch; }
.story__dropcap{
  float: left;
  font-family: var(--serif);
  font-size: 72px; font-weight: 600;
  line-height: .9;
  color: var(--teal-deep);
  padding: 6px 14px 0 0;
}
.story__sig{
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.story__sig-name{
  font-family: var(--serif); font-style: italic; font-size: 22px;
  font-weight: 500; color: var(--deep);
}
.story__sig-role{
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing:.22em; text-transform:uppercase; color: var(--mute);
}
@media (max-width: 880px){
  .story__inner{ grid-template-columns: 1fr; }
  .story__visual{ position: relative; top: 0; aspect-ratio: 4/4; }
}

/* =====================================================
   TREATMENTS
   ===================================================== */
.treatments{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head h2{ margin: 0; max-width: 14ch; }
.section-head p{ margin: 0; }
@media (max-width: 760px){ .section-head{ grid-template-columns: 1fr; align-items: start; gap: 16px; } }
.tx-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tx-card{
  background: var(--cream-soft);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  transition: background .35s var(--ease);
}
.tx-card:hover{ background: var(--cream); }
.tx-card__head{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
}
.tx-card__code{
  font-family: var(--label); font-size: 11px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase; color: var(--teal-deep);
}
.tx-card__dur{
  font-family: var(--label); font-size: 11px; font-weight: 500;
  letter-spacing:.12em; color: var(--mute);
}
.tx-card h3{ font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 14px; }
.tx-card__summary{ color: var(--ink-soft); margin-bottom: 22px; line-height:1.55; }
.tx-card__for{
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px; color: var(--mute); line-height: 1.5;
}
.tx-card__for strong{
  display: block;
  font-family: var(--label); font-size: 10px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase;
  color: var(--deep); margin-bottom: 6px;
}
.tx-card--photo{ padding: 0; overflow: hidden; }
.tx-card--photo .tx-card__media{ aspect-ratio: 16/10; overflow: hidden; background: var(--cream-deep); }
.tx-card--photo .tx-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); filter: saturate(.96); }
.tx-card--photo:hover .tx-card__media img{ transform: scale(1.05); }
.tx-card--photo .tx-card__pad{ padding: clamp(24px,2.6vw,38px); display:flex; flex-direction:column; flex:1; }
@media (max-width: 760px){ .tx-grid{ grid-template-columns: 1fr; } }

/* =====================================================
   CLINIC BAND
   ===================================================== */
.clinic-band{
  position: relative; overflow: hidden;
  background: var(--deep-soft); color: var(--cream);
  min-height: clamp(320px, 40vw, 500px);
  display: grid; align-items: center;
}
.clinic-band__bg{
  position: absolute; inset: 0; width:100%; height:100%;
  object-fit: cover; opacity: .28; will-change: transform;
}
.clinic-band__scrim{
  position:absolute; inset:0;
  background: linear-gradient(90deg, var(--deep) 10%, rgba(37,73,73,.72) 45%, rgba(37,73,73,.3) 100%);
}
.clinic-band__inner{ position: relative; z-index:1; padding: clamp(60px,8vw,120px) 0; }
.clinic-band h2{ color: var(--cream); max-width: 18ch; }
.clinic-band h2 em{ color: var(--teal-pale); }
.clinic-band p{ color: rgba(246,250,250,.82); max-width: 52ch; }
.clinic-band .eyebrow{ color: var(--teal-pale); }

/* =====================================================
   JOURNEY
   ===================================================== */
.journey{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--deep);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.journey::before{
  content:"";
  position: absolute; top: 0; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,173,170,.15), transparent 65%);
  pointer-events: none;
}
.journey .section-head h2{ color: var(--cream); }
.journey .section-head p{ color: rgba(246,250,250,.7); }
.journey .eyebrow{ color: var(--teal-pale); }
.journey-steps{ position: relative; padding-top: 20px; }
.journey-steps::before{
  content:"";
  position: absolute; left: 6%; top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(246,250,250,.2), transparent);
}
.journey-step{
  display: grid;
  grid-template-columns: 12% 1fr 1.4fr;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  align-items: start;
  border-top: 1px solid rgba(246,250,250,.1);
  position: relative;
}
.journey-step:last-child{ border-bottom: 1px solid rgba(246,250,250,.1); }
.journey-step__n{
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px); font-weight: 500;
  color: var(--teal-pale); line-height: 1; position: relative; padding-left: 4px;
}
.journey-step__n::before{
  content:"";
  position: absolute; left: -10px; top: .5em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px var(--deep);
}
.journey-step__t h3{ color: var(--cream); margin-bottom: 6px; }
.journey-step__t small{
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing:.22em; text-transform:uppercase; color: var(--teal-pale);
}
.journey-step__b{
  color: rgba(246,250,250,.78); line-height: 1.55; font-size: 16px; max-width: 50ch;
}
.journey-step__b p{ color: inherit; margin: 0; }
@media (max-width: 760px){
  .journey-steps::before{ display: none; }
  .journey-step{ grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .journey-step__n::before{ display: none; }
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}
.team__inner{ }
.team__header{ margin-bottom: clamp(40px,6vw,72px); }
.team__header h2{ max-width: 20ch; }
.team__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.team-card{
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.team-card__img{
  aspect-ratio: 3/3.5;
  overflow: hidden;
  background: var(--teal-bg);
  position: relative;
}
.team-card__img img{ width:100%; height:100%; object-fit:cover; object-position: center 14%; filter: saturate(.88); }
.team-card__img::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 55%, rgba(27,53,52,.55) 100%);
}
.team-card__body{ padding: clamp(20px,2.4vw,32px); }
.team-card__role{
  font-family: var(--label); font-size: 10px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase; color: var(--teal-deep);
  margin-bottom: 8px; display: block;
}
.team-card h3{ font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; }
.team-card p{ font-size: 14.5px; color: var(--mute); margin: 0; }
.team-card__creds{
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.team-card__cred{
  font-family: var(--label); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em;
  padding: 5px 12px;
  border: 1px solid var(--teal-soft);
  border-radius: 999px;
  color: var(--teal-deep);
}
.team__note{
  max-width: 680px;
  padding: 28px 32px;
  border-left: 3px solid var(--teal);
  background: var(--teal-bg);
  border-radius: 0 2px 2px 0;
}
.team__note p{
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--deep); margin: 0; line-height: 1.5;
}
.team__note cite{
  display: block;
  font-style: normal;
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing:.18em; text-transform:uppercase; color: var(--mute);
  margin-top: 14px;
}
@media (max-width: 880px){ .team__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .team__grid{ grid-template-columns: 1fr; } }

/* =====================================================
   STORIES
   ===================================================== */
.stories{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--blush-bg);
  position: relative; overflow: hidden;
}
.stories::before{
  content:"";
  position: absolute; bottom: -30%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 60%);
  pointer-events: none;
}
.stories-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px; position: relative; z-index: 1;
}
.story-card{
  background: var(--cream); padding: clamp(28px,3vw,44px);
  border-radius: 2px;
  border: 1px solid rgba(27,53,52,.06); position: relative;
}
.story-card__mark{
  position: absolute; top: 14px; right: 24px;
  font-family: var(--serif); font-size: 64px; line-height: 1;
  color: var(--blush-pale); pointer-events: none;
}
.story-card__quote{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 23px); line-height: 1.5;
  color: var(--deep); margin-bottom: 24px;
}
.story-card__by{
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.story-card__init{
  width: 38px; height: 38px;
  background: var(--teal-deep); color: var(--cream);
  font-family: var(--serif); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.story-card__meta{ display: flex; flex-direction: column; }
.story-card__name{ font-size: 14.5px; color: var(--deep); font-weight: 500; }
.story-card__year{ font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing:.2em; text-transform:uppercase; color: var(--mute); margin-top: 2px; }
.story-card.is-pending{ background: rgba(239,247,247,.5); border-style: dashed; }
@media (max-width: 760px){ .stories-grid{ grid-template-columns: 1fr; gap: 20px; } }

/* =====================================================
   FAQ
   ===================================================== */
.faqs{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}
.faq-list{ max-width: 880px; margin: 0 auto; }
.faq{ border-top: 1px solid var(--line); padding: 28px 0; }
.faq:last-child{ border-bottom: 1px solid var(--line); }
.faq summary{
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-size: clamp(19px,2vw,25px); font-weight: 500;
  color: var(--deep); line-height: 1.3;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq__icon{
  flex-shrink: 0; width: 24px; height: 24px; position: relative;
  transition: transform .35s var(--ease);
}
.faq__icon::before, .faq__icon::after{
  content:""; position:absolute; top:50%; left:0; right:0;
  height: 1px; background: var(--teal-deep); transform-origin: center;
}
.faq__icon::after{ transform: rotate(90deg); transition: transform .35s var(--ease); }
.faq[open] .faq__icon::after{ transform: rotate(0); }
.faq__body{
  margin-top: 16px; padding-right: 44px;
  font-size: 16.5px; line-height: 1.65; color: var(--ink-soft);
}
.faq__body p{ margin: 0; }

/* =====================================================
   BOOK CONSULTATION
   ===================================================== */
.book{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--deep);
  color: var(--cream);
}
.book__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
}
.book .eyebrow{ color: var(--teal-pale); }
.book__copy h2{ color: var(--cream); }
.book__copy p{ color: rgba(246,250,250,.78); }
.book__wa{
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  margin-bottom: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.book__wa:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.4); }
.book__divider{
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing:.2em; text-transform:uppercase; color: rgba(246,250,250,.45);
  display: flex; align-items: center; gap: 16px; margin: 24px 0;
}
.book__divider::before, .book__divider::after{
  content:""; flex:1; height:1px; background: rgba(246,250,250,.15);
}
.book__assurance{
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(246,250,250,.14);
  display: grid; gap: 14px;
}
.book__assurance li{
  list-style: none;
  display: flex; gap: 14px; align-items: baseline;
  font-size: 14.5px; color: rgba(246,250,250,.82);
}
.book__assurance li::before{
  content:""; flex-shrink:0;
  width: 6px; height: 6px; background: var(--teal-pale); border-radius: 50%;
  margin-top: 8px;
}
.book__form{
  background: var(--cream); color: var(--ink);
  padding: clamp(28px, 4vw, 48px); border-radius: 2px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row--1{ grid-template-columns: 1fr; }
.form-field{ display: flex; flex-direction: column; }
.form-field label{
  font-family: var(--label); font-size: 10px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase; color: var(--deep);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select{
  background: transparent; border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0; font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{ outline: 0; border-color: var(--teal-deep); }
.form-field textarea{ min-height: 88px; resize: vertical; }
.book__submit{
  margin-top: 8px;
  background: var(--teal-deep); color: var(--cream);
  padding: 16px 32px;
  font-size: 14.5px; font-weight: 600;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.book__submit:hover{ background: var(--deep); transform: translateY(-2px); }
.book__privacy{
  font-family: var(--label); font-size: 10px; font-weight: 500;
  letter-spacing:.14em; color: var(--mute); margin-top: 16px;
}
@media (max-width: 880px){
  .book__grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

/* =====================================================
   VISIT
   ===================================================== */
.visit{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-soft);
}
.visit__inner{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
}
.visit__info h2{ margin-top: 0; max-width: 14ch; }
.visit__block{
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.visit__block:last-child{ border-bottom: 0; }
.visit__block small{
  font-family: var(--label); font-size: 10px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase; color: var(--teal-deep);
  display: block; margin-bottom: 10px;
}
.visit__block p{ margin: 0; font-size: 16px; color: var(--deep); line-height: 1.5; }
.visit__phones{ display: grid; gap: 4px; }
.visit__phones a{
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--deep); transition: color .25s var(--ease);
}
.visit__phones a:hover{ color: var(--teal-deep); }
.visit__map{
  aspect-ratio: 4/4.5; border-radius: 2px;
  overflow: hidden; background: var(--cream-deep);
  border: 1px solid var(--line-soft);
  position: relative; display: flex; align-items: end; justify-content: stretch;
}
.visit__map--static{
  background:
    linear-gradient(135deg, rgba(27,53,52,.04), rgba(74,173,170,.07)),
    repeating-linear-gradient(0deg, transparent 0, transparent 28px, rgba(27,53,52,.05) 28px, rgba(27,53,52,.05) 29px),
    repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(27,53,52,.05) 28px, rgba(27,53,52,.05) 29px),
    var(--cream-deep);
}
.visit__pin{
  position:absolute; top:42%; left:50%; transform:translate(-50%,-50%);
  width: 18px; height: 18px;
  background: var(--teal-deep); border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(74,173,170,.25), 0 0 0 14px rgba(74,173,170,.12);
}
.visit__pin::after{
  content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:6px; height:6px; background: var(--cream); border-radius:50%;
}
.visit__map-link{
  position: relative; z-index:1; margin:18px;
  background: var(--cream); padding: 14px 20px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--deep);
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(27,53,52,.12);
  align-self: flex-end;
}
.visit__map-label{
  position:absolute; top:24px; left:24px;
  font-family: var(--label); font-size: 10px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase; color: var(--teal-deep);
}
@media (max-width: 880px){
  .visit__inner{ grid-template-columns: 1fr; }
  .visit__map{ aspect-ratio: 4/3; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.foot{
  background: var(--deep);
  color: rgba(246,250,250,.78);
  padding: clamp(60px, 6vw, 100px) 0 32px;
}
.foot__top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,250,250,.1);
  margin-bottom: 28px;
}
.foot__brand .brandmark{ color: var(--cream); }
.foot__brand p{ color: rgba(246,250,250,.58); font-size: 14.5px; margin: 20px 0 0; max-width: 36ch; }
.foot__col h5{
  font-family: var(--label); font-size: 11px; font-weight: 700;
  letter-spacing:.22em; text-transform:uppercase; color: var(--teal-pale);
  margin: 0 0 18px;
}
.foot__col ul{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.foot__col a{ font-size:14.5px; color:rgba(246,250,250,.78); transition:color .25s var(--ease); }
.foot__col a:hover{ color: var(--teal-pale); }
.foot__bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--label); font-size: 11px; font-weight: 500;
  letter-spacing:.14em; color: rgba(246,250,250,.45);
}
.foot__bottom a{ color: rgba(246,250,250,.65); }
@media (max-width: 760px){
  .foot__top{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__brand{ grid-column: 1 / -1; }
}

/* =====================================================
   REVEAL ANIMATION — FALLBACK SAFE
   ===================================================== */
.reveal{ opacity:1; transform:none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal:not(.is-in){ opacity:0; transform:translateY(18px); }
.js .reveal.is-in{ opacity:1; transform:none; }
.js .reveal.is-in > *{ animation: rise .7s var(--ease) both; }
.js .reveal.is-in.stagger > *:nth-child(1){ animation-delay:.02s }
.js .reveal.is-in.stagger > *:nth-child(2){ animation-delay:.08s }
.js .reveal.is-in.stagger > *:nth-child(3){ animation-delay:.14s }
.js .reveal.is-in.stagger > *:nth-child(4){ animation-delay:.20s }
@keyframes rise{ from{ opacity:0; transform:translateY(12px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .reveal, .js .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .js .reveal.is-in > *{ animation:none !important; }
  html{ scroll-behavior:auto; }
}

/* --- underline draw --- */
.uline{
  position:relative; display:inline;
  background-image: linear-gradient(var(--teal), var(--teal));
  background-repeat: no-repeat; background-position: 0 94%; background-size: 0% 2px;
  transition: background-size .9s var(--ease);
}
.is-in .uline{ background-size: 100% 2px; }

/* --- count-up --- */
.trust__num[data-count]{ font-variant-numeric: tabular-nums; }

/* --- magnetic cta --- */
.magnetic{ will-change: transform; }
