/* ============================================
   DENT MAVİ — design tokens
   ============================================ */
:root{
  --navy-deep: #0A2A6B;
  --navy-mid:  #1450D6;
  --navy-black:#061640;
  --sea-blue:  #1D5FD1;
  --sea-light: #A9C8F8;
  --sand:      #FFFFFF;
  --sand-dim:  #EEF4FF;
  --coral:     #FF6B4A;
  --coral-dark:#E14F2C;
  --gold:      #1450D6;
  --gold-soft: #BFD6FF;
  --star:      #FFB930;
  --ink:       #101A33;
  --ink-soft:  #4B5A78;
  --white:     #FFFFFF;

  --whatsapp:  #25D366;
  --whatsapp-dark:#1DA851;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--font-display); margin:0; font-weight:600; letter-spacing:-.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

.wrap{ max-width: var(--wrap); margin-inline:auto; padding-inline: clamp(20px, 5vw, 48px); }
.wrap-narrow{ max-width: 760px; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--navy-deep); color:#fff;
  padding:12px 20px; z-index:1000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline: 3px solid var(--coral); outline-offset: 3px; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sea-blue);
  margin: 0 0 12px;
}
.eyebrow-light{ color: var(--sea-light); }

.section-title{
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--navy-deep);
}
.section-title-light{ color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; fill:currentColor; }
.btn-primary{
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(255,107,74,.55);
}
.btn-primary:hover{ background: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
}
.btn-ghost:hover{ background: var(--navy-deep); color:#fff; }
.btn-call{
  background: var(--navy-deep); color:#fff; padding: 10px 18px; font-size:.88rem;
}
.btn-call:hover{ background: var(--navy-mid); }

/* ============================================
   HEADER
   ============================================ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18,41,79,.08);
}
.header-inner{
  position: relative;
  display:flex; align-items:center; justify-content:space-between;
  padding-block: 14px;
  gap: 20px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-mark{ width:34px; height:34px; display:block; }
.brand-mark svg{ width:100%; height:100%; fill: var(--navy-deep); }
.brand-word{ font-family: var(--font-display); font-weight:600; font-size:1.2rem; color: var(--navy-deep); }
.main-nav{ display:flex; align-items:center; gap: 28px; font-weight:600; font-size:.92rem; }
.main-nav a{ color: var(--ink-soft); transition: color .2s; position:relative; padding-block:4px; }
.main-nav a:hover{ color: var(--coral); }
.main-nav a.active{ color: var(--navy-deep); }
.main-nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--coral); border-radius:2px;
}
.nav-mobile-cta{ display:none; }

.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }

.nav-toggle{
  display:none;
  width:44px; height:44px; flex-shrink:0;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
  background: var(--white); border: 1.5px solid rgba(10,42,107,.18);
  border-radius: 10px; cursor:pointer;
}
.nav-toggle span{
  width:20px; height:2px; border-radius:2px;
  background: var(--navy-deep);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px){
  .nav-toggle{ display:flex; }
  .btn-call span{ display:none; }
  .btn-call{ padding:11px; border-radius:50%; width:44px; height:44px; justify-content:center; }
  .btn-call svg{ width:19px; height:19px; }

  .main-nav{
    position:absolute; top: calc(100% + 1px); left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background: var(--white);
    border-top:1px solid rgba(10,42,107,.08);
    box-shadow: 0 24px 44px -20px rgba(10,42,107,.3);
    max-height:0; overflow:hidden; opacity:0;
    transition: max-height .35s var(--ease), opacity .25s var(--ease);
  }
  .main-nav.is-open{ max-height:70vh; opacity:1; overflow-y:auto; }
  .main-nav a{ padding:16px clamp(20px,5vw,48px); border-bottom:1px solid rgba(10,42,107,.06); }
  .main-nav a.active::after{ display:none; }
  .main-nav a.active{ background: var(--sand-dim); }

  .nav-mobile-cta{
    display:flex; gap:10px;
    padding: 18px clamp(20px,5vw,48px) 22px;
  }
  .nav-mobile-cta .btn{ flex:1; justify-content:center; }
}

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  background: var(--navy-black);
  color: var(--white);
  padding-block: clamp(110px, 20vw, 200px) 90px;
  min-height: clamp(560px, 78vw, 760px);
  display:flex;
  align-items:center;
  overflow: hidden;
  box-sizing: border-box;
}
.hero .wrap{ width:100%; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{
  width:100%; height:100%; object-fit:cover;
  object-position: center 38%;
  filter: saturate(1.08) contrast(1.05);
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(6,22,64,.95) 0%, rgba(6,22,64,.86) 30%, rgba(10,42,107,.62) 55%, rgba(10,42,107,.32) 100%),
    linear-gradient(0deg, rgba(6,22,64,.5), transparent 40%);
}
.hero-noise{
  position:absolute; inset:0; z-index:1;
  background-image: radial-gradient(circle at 85% 20%, rgba(255,107,74,.16), transparent 45%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; }
.hero-copy{ max-width: 620px; }
.hero .eyebrow{ color: var(--sea-light); }
.hero-title{
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title em{ font-style: italic; color: var(--coral); }
.hero-lede{
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 34px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap: 14px; margin-bottom: 30px; }
.hero .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,.4); }
.hero .btn-ghost:hover{ background: rgba(255,255,255,.12); color:#fff; }

.rating-chip{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
}
.rating-chip .stars{ color: var(--star); letter-spacing:1px; }
.rating-chip a{ color: var(--gold-soft); font-weight:700; text-decoration: underline; text-underline-offset:3px; }
.rating-chip-light{
  background: var(--white); border-color: rgba(18,41,79,.12); color: var(--ink);
  margin-block: 22px;
}
.rating-chip-light .stars{ color: var(--star); }
.rating-chip-light a{ color: var(--coral); font-weight:700; text-decoration: underline; text-underline-offset:3px; }

/* Confidence curve signature */
.confidence-curve{ width:100%; height:auto; display:block; }
.confidence-curve path{ fill:none; stroke-linecap:round; stroke-linejoin:round; }
.confidence-curve .curve-jagged{
  stroke: rgba(255,255,255,.35);
  stroke-width: 2;
  opacity: 1;
  transition: opacity 1.1s var(--ease);
}
.confidence-curve .curve-smooth{
  stroke: var(--coral);
  stroke-width: 3;
  fill:none;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  opacity: 0;
  transition: stroke-dashoffset 1.6s var(--ease), opacity .6s var(--ease);
}
.confidence-curve.is-active .curve-jagged{ opacity: 0; }
.confidence-curve.is-active .curve-smooth{ stroke-dashoffset: 0; opacity: 1; }

.confidence-curve--hero{ position:relative; z-index:2; margin-top: 50px; }
.confidence-curve--section{ position:absolute; top:-1px; left:0; width:100%; }
.confidence-curve--section .curve-smooth{ stroke: var(--sea-light); }

/* ============================================
   PAGE BANNER (sub-pages)
   ============================================ */
.page-banner{
  position:relative;
  background: radial-gradient(120% 140% at 20% 0%, var(--navy-mid) 0%, var(--navy-deep) 55%, var(--navy-black) 100%);
  color: var(--white);
  padding-block: clamp(50px, 8vw, 84px) clamp(60px, 8vw, 90px);
  overflow:hidden;
}
.page-banner-inner{
  display:flex; align-items:center; justify-content:space-between; gap: clamp(24px,4vw,48px); flex-wrap:wrap;
}
.page-banner-copy{ max-width: 620px; }
.page-banner .eyebrow{ color: var(--sea-light); }
.page-banner h1{
  font-family: var(--font-display); font-weight:600;
  font-size: clamp(2rem, 4vw, 3.1rem); line-height:1.12; color:var(--white); margin-bottom:14px;
}
.page-banner p{ color: rgba(255,255,255,.76); font-size:1.05rem; line-height:1.6; max-width:520px; }
.page-banner-photo{
  width: clamp(120px, 16vw, 190px); height: clamp(120px, 16vw, 190px);
  border-radius:50%; overflow:hidden; flex-shrink:0;
  border: 3px solid rgba(20,80,214,.35);
  box-shadow: 0 24px 46px -18px rgba(2,7,18,.6);
}
.page-banner-photo img{ width:100%; height:100%; object-fit:cover; filter: saturate(.9) contrast(1.05); }
@media (max-width: 700px){ .page-banner-inner{ justify-content:center; } .page-banner-photo{ margin-inline:auto; } }
.page-banner .confidence-curve{ position:absolute; left:0; bottom:-2px; width:100%; }
.page-banner .confidence-curve .curve-jagged{ display:none; }
.page-banner .confidence-curve .curve-smooth{ stroke-dashoffset:0; opacity:1; stroke: var(--coral); }

.more-link{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; color: var(--navy-deep); font-size:.95rem;
  margin-top: 22px;
}
.more-link svg{ width:16px; height:16px; stroke: currentColor; fill:none; stroke-width:2.4; transition: transform .25s var(--ease); }
.more-link:hover svg{ transform: translateX(4px); }
.more-link.on-dark{ color: var(--white); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section{
  background: var(--sand-dim);
  border-block: 1px solid rgba(18,41,79,.08);
  padding-block: 16px;
  overflow: hidden;
}
.marquee{ width:100%; overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track{
  display:flex; gap: 40px; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track span{
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; } }

/* ============================================
   SERVICES
   ============================================ */
.services{ padding-block: clamp(70px, 9vw, 120px); }
.service-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px){ .service-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .service-grid{ grid-template-columns: 1fr; } }

.values-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px){ .values-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .values-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(18,41,79,.07);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(18,41,79,.25); }
.service-card svg{
  width:40px; height:40px; margin-bottom:18px;
  fill:none; stroke: var(--coral); stroke-width:2.4;
}
.service-card:nth-child(3n+2) svg{ stroke: var(--gold); }
.service-card h3{ font-size: 1.15rem; color: var(--navy-deep); margin-bottom:10px; }
.service-card p{ color: var(--ink-soft); font-size: .95rem; line-height:1.55; }

.service-grid-photo .service-card{ padding:0; overflow:hidden; display:flex; flex-direction:column; }
.service-card-photo{ position:relative; width:100%; padding-top:75%; overflow:hidden; flex-shrink:0; }
.service-card-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s var(--ease); }
.service-card-photo--contain{ background: #eef2f8; }
.service-card-photo--contain img{ object-fit:contain; padding: 10px; box-sizing: border-box; }
.service-card:hover .service-card-photo img{ transform: scale(1.05); }
.service-card-body{ padding: 22px 24px 26px; }
.service-card-body h3{ margin-bottom:8px; }

/* ============================================
   DOCTORS
   ============================================ */
.doctors{ padding-block: clamp(50px, 8vw, 100px); background: var(--sand-dim); }
.doctor-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px){ .doctor-grid{ grid-template-columns: 1fr; } }

.doctor-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(18,41,79,.07);
}
.doctor-avatar{
  width:60px; height:60px; border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-mid), var(--navy-deep)); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4.5px var(--gold);
}
.doctor-photo{
  width:74px; height:74px; border-radius: 50%; overflow:hidden;
  margin-bottom: 18px;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4.5px var(--gold);
}
.doctor-photo img{ width:100%; height:100%; object-fit:cover; filter: saturate(.95) contrast(1.03); }
.doctor-card h3{ font-size: 1.3rem; color: var(--navy-deep); margin-bottom:4px; }
.doctor-role{ font-family: var(--font-mono); font-size:.78rem; color: var(--coral); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.doctor-card p:last-child{ color: var(--ink-soft); line-height:1.6; }
.doctor-card .more-link{ margin-top:16px; }

/* ============================================
   DOCTOR BIO / CV
   ============================================ */
.bio-section{ padding-block: clamp(60px, 8vw, 110px); }
.bio-section > .wrap > .clinic-lede{ margin-bottom: 50px; }
.bio-block{
  display:grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: clamp(28px, 5vw, 56px);
  padding-block: clamp(40px, 6vw, 64px);
  border-top: 1px solid rgba(18,41,79,.09);
}
.bio-block:first-of-type{ border-top:0; padding-top:0; }
.bio-block--reverse{ direction: rtl; }
.bio-block--reverse > *{ direction: ltr; }
@media (max-width: 800px){
  .bio-block, .bio-block--reverse{ grid-template-columns: 1fr; direction:ltr; }
}
.bio-photo{
  border-radius: var(--radius);
  overflow:hidden;
  border: 5px solid var(--white);
  box-shadow: 0 20px 44px -22px rgba(18,41,79,.35);
  align-self:start;
  position: sticky;
  top: 100px;
}
@media (max-width: 800px){ .bio-photo{ position:static; max-width: 280px; } }
.bio-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.bio-content h3{ font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--navy-deep); margin-bottom:6px; }
.bio-lede{ color: var(--ink-soft); line-height:1.7; font-size:1.02rem; margin-block: 18px 26px; max-width: 640px; }

.bio-timeline{ display:flex; flex-direction:column; gap:16px; margin-bottom: 26px; }
.bio-timeline li{
  position:relative; padding-left: 26px; line-height:1.6; color: var(--ink-soft);
}
.bio-timeline li::before{
  content:""; position:absolute; left:0; top:7px;
  width:9px; height:9px; border-radius:50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px var(--sand-dim);
}
.bio-timeline li strong{ font-family: var(--font-mono); font-size:.78rem; letter-spacing:.03em; color: var(--navy-deep); display:block; text-transform:uppercase; margin-bottom:2px; }

.bio-focus{
  background: var(--sand-dim);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--ink-soft);
  line-height:1.6;
  margin-bottom: 34px;
}
.bio-focus strong{ color: var(--navy-deep); }

.cert-gallery-label{
  font-family: var(--font-mono); font-size:.78rem; text-transform:uppercase;
  letter-spacing:.1em; color: var(--sea-blue); margin-bottom:14px;
}
.cert-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 12px;
}
.cert-thumb{
  appearance:none; background:none; border:0; padding:0; margin:0; cursor: zoom-in;
  border-radius: var(--radius-sm);
  overflow:hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(18,41,79,.1);
  box-shadow: 0 10px 22px -16px rgba(18,41,79,.3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cert-thumb:hover, .cert-thumb:focus-visible{ transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(18,41,79,.4); }
.cert-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.bio-action-photo{
  margin: 34px 0 0; max-width: 380px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 5px solid var(--white);
  box-shadow: 0 14px 34px -18px rgba(18,41,79,.35);
}
.bio-action-photo img{ width:100%; height:auto; object-fit:cover; display:block; }
.bio-action-photo figcaption{
  padding: 12px 16px; background: var(--sand-dim);
  font-family: var(--font-mono); font-size:.76rem; color: var(--ink-soft); letter-spacing:.02em;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox{
  position: fixed; inset:0; z-index: 300;
  background: rgba(6,15,35,.92);
  display:flex; align-items:center; justify-content:center;
  padding: clamp(20px, 6vw, 60px);
  opacity:0; visibility:hidden;
  transition: opacity .25s var(--ease);
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox-figure{ max-width: min(90vw, 720px); max-height: 88vh; margin:0; text-align:center; }
.lightbox-figure img{ max-width:100%; max-height: 76vh; margin-inline:auto; border-radius: var(--radius-sm); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.lightbox-figure figcaption{ color: rgba(255,255,255,.82); font-family: var(--font-mono); font-size:.82rem; margin-top:16px; letter-spacing:.02em; }
.lightbox-close{
  position:absolute; top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px);
  width:44px; height:44px; border-radius:50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color:#fff; font-size:1.4rem; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.lightbox-close:hover{ background: rgba(255,255,255,.2); }

/* ============================================
   ATMOSPHERE — full-bleed photo band
   ============================================ */
.atmosphere{
  position:relative;
  min-height: clamp(360px, 52vw, 520px);
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.atmosphere-media{ position:absolute; inset:0; z-index:0; }
.atmosphere-media img{
  width:100%; height:100%; object-fit:cover;
  object-position: center 35%;
  filter: saturate(.88) contrast(1.05);
}
.atmosphere::after{
  content:"";
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(0deg, rgba(8,19,39,.92) 10%, rgba(14,31,59,.55) 55%, rgba(14,31,59,.25) 100%);
}
.atmosphere-quote{
  position:relative; z-index:2;
  padding: clamp(30px,5vw,56px) clamp(20px,5vw,48px);
  max-width: 780px;
}
.atmosphere-quote p{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.35;
  margin-bottom: 16px;
}
.atmosphere-quote cite{
  font-style:normal; font-family: var(--font-mono); font-size:.8rem;
  letter-spacing:.04em; color: var(--gold-soft);
}

/* ============================================
   FEAR / SIGNATURE SECTION
   ============================================ */
.fear-section{
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep), #0D1F3C);
  padding-block: clamp(90px, 10vw, 140px) clamp(70px, 9vw, 110px);
  color: var(--white);
}
.fear-lede{
  color: rgba(255,255,255,.72);
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 46px;
}
.quote-wall{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media (max-width: 950px){ .quote-wall{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .quote-wall{ grid-template-columns: 1fr; } }

.quote-wall blockquote{
  margin:0; padding: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display:flex; flex-direction:column; gap:16px;
}
.quote-wall p{ font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height:1.5; }
.quote-wall cite{ font-style:normal; font-family: var(--font-mono); font-size:.78rem; color: var(--gold-soft); }

/* ============================================
   CLINIC GALLERY
   ============================================ */
.clinic{ padding-block: clamp(70px, 9vw, 120px); }
.clinic-lede{ color: var(--ink-soft); max-width: 600px; margin-bottom: 40px; line-height:1.6; }
.clinic-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 16vw, 220px);
  gap: 16px;
}
.clinic-strip .tile-lg{ grid-column: 1 / 3; grid-row: 1 / 3; }
@media (max-width: 900px){
  .clinic-strip{ grid-auto-flow: column; grid-auto-columns: 68%; grid-template-columns: none; grid-auto-rows: 64vw; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; }
  .clinic-strip .tile-lg{ grid-column:auto; grid-row:auto; grid-auto-columns: 82%; }
  .clinic-strip figure{ scroll-snap-align: start; }
}
.clinic-strip figure{
  margin:0; position:relative;
  border-radius: var(--radius-sm);
  overflow:hidden;
  border: 5px solid var(--white);
  box-shadow: 0 14px 34px -18px rgba(18,41,79,.35);
}
.clinic-photo-btn{
  appearance:none; background:none; border:0; padding:0; margin:0; display:block;
  width:100%; height:100%; cursor: zoom-in;
}
.clinic-strip img{ width:100%; height:100%; object-fit:cover; filter: saturate(.92) contrast(1.02); transition: transform .5s var(--ease); }
.clinic-strip figure:hover img{ transform: scale(1.05); }
.clinic-strip figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 14px 16px 10px;
  background: linear-gradient(0deg, rgba(8,19,39,.85), transparent);
  color:#fff; font-family: var(--font-mono); font-size:.72rem; letter-spacing:.03em;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section{ padding-block: clamp(50px, 7vw, 90px); }
.legal-content, .article-content{ max-width: 760px; margin: 0 auto; }
.legal-content h2, .article-content h2{
  font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy-deep); margin: 44px 0 14px;
}
.legal-content h2:first-child, .article-content h2:first-child{ margin-top:0; }
.legal-content h3, .article-content h3{ font-size: 1.05rem; color: var(--navy-deep); margin: 22px 0 10px; }
.legal-content p, .article-content p{ color: var(--ink-soft); line-height:1.75; margin-bottom: 14px; }
.legal-content ul, .article-content ul{ color: var(--ink-soft); line-height:1.75; margin: 0 0 14px; padding-left: 22px; }
.legal-content li, .article-content li{ margin-bottom: 8px; }
.legal-content strong, .article-content strong{ color: var(--navy-deep); }
.legal-updated{
  font-family: var(--font-mono); font-size:.8rem; color: var(--ink-soft);
  margin-bottom: 40px; padding-bottom:20px; border-bottom:1px solid rgba(18,41,79,.09);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 760px){ .blog-grid{ grid-template-columns: 1fr; } }
.blog-card{
  display:flex; flex-direction:column; background: var(--white);
  border-radius: var(--radius); overflow:hidden;
  border: 1px solid rgba(18,41,79,.08);
  box-shadow: 0 16px 34px -24px rgba(18,41,79,.25);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(18,41,79,.32); }
.blog-card-photo{ aspect-ratio: 16/10; overflow:hidden; }
.blog-card-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.blog-card-body{ padding: 24px 26px 28px; display:flex; flex-direction:column; flex:1; }
.blog-card-meta{ font-family: var(--font-mono); font-size:.76rem; color: var(--coral); text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.blog-card-body h3{ font-size: 1.25rem; color: var(--navy-deep); margin-bottom:10px; line-height:1.3; }
.blog-card-body p{ color: var(--ink-soft); line-height:1.6; margin-bottom:18px; flex:1; }

.article-hero{
  margin-bottom: 40px; border-radius: var(--radius); overflow:hidden;
  box-shadow: 0 20px 44px -26px rgba(18,41,79,.35);
}
.article-hero img{ width:100%; height:auto; max-height:420px; object-fit:cover; display:block; }
.article-meta{
  font-family: var(--font-mono); font-size:.8rem; color: var(--sea-blue);
  text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; text-align:center;
}
.article-content-wrap{ max-width: 760px; margin: 0 auto; }
.article-back{ display:block; text-align:center; margin-top:50px; }

/* ============================================
   STATS BAND
   ============================================ */
.stats-band{ background: var(--navy-deep); padding-block: clamp(50px, 7vw, 80px); }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,4vw,32px); text-align:center; }
@media (max-width: 700px){ .stats-grid{ grid-template-columns: repeat(2,1fr); gap: 36px 20px; } }
.stat-item strong{
  display:block; font-family: var(--font-display); font-weight:600;
  font-size: clamp(2rem, 4vw, 2.8rem); color:#fff; margin-bottom:6px;
}
.stat-item span{
  font-family: var(--font-mono); font-size:.78rem; letter-spacing:.05em;
  color: rgba(255,255,255,.6); text-transform:uppercase;
}

/* ============================================
   FAQ
   ============================================ */
.faq{ padding-block: clamp(60px, 8vw, 100px); background: var(--sand-dim); }
.faq-category{ margin-bottom: 40px; }
.faq-category:last-child{ margin-bottom: 0; }
.faq-category-title{
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--navy-deep); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(18,41,79,.1);
}
.faq-list{ display:flex; flex-direction:column; gap: 12px; }
.faq-list details{
  background: var(--white);
  border: 1px solid rgba(18,41,79,.08);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq-list summary{
  cursor:pointer; font-weight:700; color: var(--navy-deep);
  list-style: none; display:flex; justify-content:space-between; align-items:center; gap:14px;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::after{
  content:"+"; font-family: var(--font-display); font-size:1.4rem; color: var(--coral); flex-shrink:0;
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after{ transform: rotate(45deg); }
.faq-list p{ color: var(--ink-soft); margin-top: 14px; line-height:1.6; }

/* ============================================
   LOCATION
   ============================================ */
.location{ padding-block: clamp(70px, 9vw, 120px); }
.location-grid{ display:grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items:start; }
@media (max-width: 900px){ .location-grid{ grid-template-columns:1fr; } }

.location-info address{ font-style:normal; color: var(--ink-soft); line-height:1.7; margin-bottom: 26px; font-size:1.05rem; }
.hours-table{ border-collapse: collapse; margin-bottom: 30px; width:100%; max-width: 380px; }
.hours-table caption{ text-align:left; font-family: var(--font-mono); font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color: var(--sea-blue); margin-bottom:10px; }
.hours-table th,.hours-table td{ text-align:left; padding: 10px 0; border-bottom: 1px solid rgba(18,41,79,.1); font-weight:500; }
.hours-table td{ font-family: var(--font-mono); text-align:right; }

.location-map{ border-radius: var(--radius); overflow:hidden; border: 1px solid rgba(18,41,79,.1); box-shadow: 0 20px 44px -26px rgba(18,41,79,.3); }
.location-map iframe{ width:100%; height: 100%; min-height: 380px; border:0; display:block; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band{ padding-block: clamp(50px, 7vw, 90px); background: var(--sand-dim); }
.cta-band-inner{
  display:flex; align-items:center; justify-content:space-between; gap: clamp(24px,4vw,48px); flex-wrap:wrap;
}
.cta-band-inner .section-title{ margin-bottom:10px; }
.cta-band-inner > div:first-child{ max-width: 560px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,.75); padding-block: 60px 0; }
.footer-grid{
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px;
  padding-bottom: 46px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-brand{ display:flex; gap:12px; max-width:320px; }
.footer-brand .brand-mark svg{ fill: #fff; }
.footer-brand strong{ color:#fff; display:block; margin-bottom:4px; }
.footer-brand p{ font-size:.85rem; line-height:1.5; }
.footer-brand-rating{
  display:flex; align-items:center; gap:8px; margin-top:16px; font-size:.82rem;
}
.footer-brand-rating .stars{ color: var(--gold-soft); letter-spacing:1px; }
.footer-brand-rating a{ color: var(--gold-soft); font-weight:700; text-decoration: underline; text-underline-offset:3px; }

.footer-col h4{
  color:#fff; font-family: var(--font-display); font-weight:600; font-size:1rem; margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; font-size:.88rem; }
.footer-col a{ color: rgba(255,255,255,.75); transition: color .2s; }
.footer-col a:hover{ color: var(--coral); }
.footer-col address{ font-style:normal; font-size:.88rem; line-height:1.6; margin-bottom:14px; }
.footer-hours{ font-size:.85rem; line-height:1.7; margin-bottom:14px; }
.footer-hours strong{ color:#fff; }

.footer-bottom{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:14px;
  padding-block: 20px; border-top:1px solid rgba(255,255,255,.12);
  font-size:.78rem; color: rgba(255,255,255,.5);
}
.footer-bottom .footer-copy{ margin:0; }
.footer-legal{ display:flex; flex-wrap:wrap; gap: 18px; }
.footer-legal a{ color: rgba(255,255,255,.5); transition: color .2s; }
.footer-legal a:hover{ color: var(--coral); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-fab{
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 200;
  width: 58px; height:58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.4);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.whatsapp-fab svg{ width:28px; height:28px; fill:#fff; position:relative; z-index:2; }
.whatsapp-fab:hover{ background: var(--whatsapp-dark); transform: translateY(-3px) scale(1.04); }
.whatsapp-fab::before{
  content:"";
  position:absolute; inset:0; border-radius:50%;
  background: var(--whatsapp);
  animation: fab-pulse 2.4s ease-out infinite;
  z-index:1;
}
@keyframes fab-pulse{
  0%{ transform: scale(1); opacity:.55; }
  100%{ transform: scale(1.8); opacity:0; }
}
@media (prefers-reduced-motion: reduce){ .whatsapp-fab::before{ animation:none; display:none; } }
@media (max-width: 600px){ .whatsapp-fab{ width:52px; height:52px; } .whatsapp-fab svg{ width:25px; height:25px; } }

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal]{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:none; }
