/* ============================================================
   Al Taie Center — clinical-premium design system
   Teal/green medical palette keyed to the brand logo,
   warm amber reserved for the single primary CTA.
   ============================================================ */

:root{
  --bg:        #F4FAF8;
  --bg-2:      #EAF4F1;
  --surface:   #FFFFFF;
  --text:      #11302D;
  --muted:     #557B76;
  --muted-2:   #6E908B;
  --primary:   #088A80;
  --primary-d: #066159;
  --primary-dd:#04443F;
  --accent:    #F2A22A;
  --accent-d:  #D98910;
  --border:    #DCEAE6;
  --border-2:  #CADCD7;
  --focus:     #088A80;
  --tint:      #E4F1EE;

  --font-head: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(4,68,63,.05), 0 2px 6px rgba(4,68,63,.05);
  --shadow-md: 0 4px 14px rgba(4,68,63,.07), 0 12px 32px rgba(4,68,63,.07);
  --shadow-lg: 0 10px 30px rgba(4,68,63,.10), 0 30px 70px rgba(4,68,63,.12);
  --shadow-accent: 0 6px 20px rgba(217,137,16,.32);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1200px;
  --gutter: clamp(18px, 5vw, 64px);
  --header-h: 92px;
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:3px solid var(--focus); outline-offset:2px; border-radius:4px; }

h1,h2,h3,h4{ font-family:var(--font-head); font-weight:700; line-height:1.08; margin:0; letter-spacing:-.02em; color:var(--text); text-wrap:balance; }
p{ margin:0; text-wrap:pretty; }

.display{ font-size:clamp(2.3rem,6.4vw,4.4rem); }
.h1{ font-size:clamp(2rem,5vw,3.4rem); }
.h2{ font-size:clamp(1.7rem,3.6vw,2.6rem); }
.h3{ font-size:clamp(1.25rem,2.4vw,1.6rem); }
.eyebrow{
  font-family:var(--font-body); font-weight:700; font-size:.78rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--primary);
  display:inline-flex; align-items:center; gap:.55em; margin:0;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--accent); border-radius:2px; }
.eyebrow.center::before{ display:none; }
.lede{ font-size:clamp(1.05rem,1.8vw,1.3rem); color:var(--muted); line-height:1.62; }
.muted{ color:var(--muted); }

/* layout */
.wrap{ max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(56px,8vw,120px); }
.section.tight{ padding-block:clamp(40px,6vw,80px); }
.bg-tint{ background:var(--bg-2); }
.bg-deep{ background:var(--primary-dd); color:#EAF6F3; }
.bg-deep h1,.bg-deep h2,.bg-deep h3{ color:#fff; }
.center{ text-align:center; }
.stack-sm > * + *{ margin-top:.6rem; }
.stack > * + *{ margin-top:1.1rem; }
.stack-lg > * + *{ margin-top:1.8rem; }

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:var(--font-body); font-weight:700; font-size:1rem;
  padding:.95em 1.6em; border-radius:999px; border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  min-height:48px; line-height:1; white-space:nowrap; text-align:center;
}
.btn svg{ width:1.15em; height:1.15em; flex:none; }
.btn-accent{ background:var(--accent); color:#3a2400; box-shadow:var(--shadow-accent); }
.btn-accent:hover{ background:var(--accent-d); transform:translateY(-2px); }
.btn-primary{ background:var(--primary); color:#fff; }
.btn-primary:hover{ background:var(--primary-d); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-ghost{ background:transparent; color:var(--primary); border-color:var(--border-2); }
.btn-ghost:hover{ border-color:var(--primary); background:var(--surface); }
.btn-white{ background:#fff; color:var(--primary-d); }
.btn-white:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-wa{ background:#1FAE5A; color:#fff; }
.btn-wa:hover{ background:#178a47; transform:translateY(-2px); }
.btn-lg{ padding:1.1em 2em; font-size:1.05rem; min-height:56px; }
.btn-block{ width:100%; }
.btn-row{ display:flex; flex-wrap:wrap; gap:.8rem; }

/* chips & pills */
.chip{
  display:inline-flex; align-items:center; gap:.45em; font-weight:600;
  font-size:.8rem; letter-spacing:.02em; padding:.42em .85em; border-radius:999px;
  background:var(--tint); color:var(--primary-d); border:1px solid var(--border);
}
.chip.surgical{ background:#E3F1EF; color:#066159; }
.chip.endoscopic{ background:#FBEFD8; color:#9a6608; border-color:#F2DEB4; }
.chip.nonsurgical{ background:#EAF0FB; color:#3257a0; border-color:#D6E2F6; }
.chip-dot{ width:7px; height:7px; border-radius:50%; background:currentColor; }

/* cards */
.card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-pad{ padding:clamp(22px,3vw,34px); }

/* ===================== HEADER ===================== */
.header{
  position:sticky; top:0; z-index:120;
  background:rgba(255,255,255,.82); backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--border);
  transition:box-shadow .25s ease, background .25s ease;
}
.header.scrolled{ box-shadow:var(--shadow-sm); background:rgba(255,255,255,.94); }
.header-inner{ display:flex; align-items:center; gap:1.2rem; height:var(--header-h); }
.brand{ display:flex; align-items:center; gap:.7rem; margin-inline-end:auto; }
.brand img{ height:66px; width:auto; }
.nav{ display:flex; align-items:center; gap:.3rem; }
.nav a{
  font-weight:600; font-size:.97rem; color:var(--text); padding:.55em .9em; border-radius:999px;
  transition:background .15s ease, color .15s ease; position:relative;
}
.nav a:hover{ color:var(--primary-d); background:var(--bg-2); }
.nav a.active{ color:var(--primary-d); }
.nav a.active::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:2px;
  width:18px; height:3px; border-radius:3px; background:var(--accent);
}
.header-cta{ display:flex; align-items:center; gap:.6rem; }
.header-tel{ display:inline-flex; align-items:center; gap:.5em; font-weight:700; color:var(--primary-d); padding:.5em .7em; border-radius:999px; }
.header-tel:hover{ background:var(--bg-2); }
.hamburger{
  display:none; width:46px; height:46px; border:1px solid var(--border-2); border-radius:12px;
  background:var(--surface); align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.hamburger span{ width:20px; height:2px; background:var(--text); border-radius:2px; transition:.25s; }

/* mobile drawer */
.drawer-scrim{ position:fixed; inset:0; background:rgba(4,68,63,.45); backdrop-filter:blur(2px); z-index:200; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.drawer-scrim.open{ opacity:1; pointer-events:auto; }
.drawer{
  position:fixed; top:0; right:0; height:100%; width:min(86vw,360px); background:var(--surface);
  z-index:210; transform:translateX(102%); transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; box-shadow:var(--shadow-lg);
}
.drawer.open{ transform:translateX(0); }
.drawer-top{ display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid var(--border); }
.drawer-top img{ height:56px; }
.drawer-close{ width:44px; height:44px; border-radius:12px; border:1px solid var(--border); background:var(--bg); font-size:1.4rem; color:var(--text); line-height:1; }
.drawer-nav{ padding:14px 18px; display:flex; flex-direction:column; gap:2px; overflow-y:auto; }
.drawer-nav a{ padding:.95em 1em; border-radius:12px; font-weight:600; font-size:1.08rem; display:flex; align-items:center; justify-content:space-between; }
.drawer-nav a:hover,.drawer-nav a.active{ background:var(--bg-2); color:var(--primary-d); }
.drawer-foot{ margin-top:auto; padding:18px 22px 26px; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:.6rem; }

/* ===================== HERO ===================== */
.hero{ position:relative; isolation:isolate; overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:-2; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:50% 64%; }
.hero-scrim{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(4,68,63,.30) 0%, rgba(4,68,63,.12) 38%, rgba(4,68,63,.55) 100%),
    linear-gradient(95deg, rgba(4,68,63,.78) 0%, rgba(4,68,63,.40) 46%, rgba(4,68,63,.05) 78%);
}
.hero-inner{ padding-block:clamp(64px,12vw,150px); max-width:760px; color:#fff; }
.hero h1{ color:#fff; }
.hero .lede{ color:rgba(255,255,255,.92); }
.hero-badges{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.4rem; }
.hero-badge{
  display:inline-flex; align-items:center; gap:.5em; font-weight:600; font-size:.85rem;
  color:#fff; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.26);
  padding:.5em .9em; border-radius:999px; backdrop-filter:blur(4px);
}
.hero-badge svg{ width:1.05em; height:1.05em; color:var(--accent); }

/* trust strip */
.trust{ background:var(--surface); border-bottom:1px solid var(--border); }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item{ padding:clamp(22px,3vw,34px) clamp(16px,2.5vw,28px); display:flex; gap:.9rem; align-items:flex-start; border-inline-start:1px solid var(--border); }
.trust-item:first-child{ border-inline-start:none; }
.trust-ico{ width:44px; height:44px; border-radius:12px; background:var(--tint); color:var(--primary); display:grid; place-items:center; flex:none; }
.trust-ico svg{ width:22px; height:22px; }
.trust-item h4{ font-size:1.02rem; font-family:var(--font-body); font-weight:700; }
.trust-item p{ font-size:.9rem; color:var(--muted); line-height:1.45; margin-top:.15rem; }

/* section heading block */
.sec-head{ max-width:680px; }
.sec-head.center{ margin-inline:auto; }
.sec-head .h2{ margin-top:.7rem; }
.sec-head p{ margin-top:.9rem; }

/* ===================== PROCEDURE CARDS (editorial) ===================== */
.proc-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.1rem; }
.proc-card{ display:flex; flex-direction:column; padding:26px 26px 22px; cursor:pointer; position:relative; overflow:hidden; }
.proc-card::after{
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:radial-gradient(120% 80% at 100% 0%, rgba(8,138,128,.06), transparent 60%); opacity:0; transition:opacity .25s;
}
.proc-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--border-2); }
.proc-card:hover::after{ opacity:1; }
.proc-num{ font-family:var(--font-head); font-weight:700; font-size:.9rem; color:var(--muted-2); letter-spacing:.04em; }
.proc-card h3{ margin-top:.5rem; font-size:1.3rem; }
.proc-card p{ color:var(--muted); font-size:.96rem; margin-top:.5rem; flex:1; }
.proc-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:1.2rem; gap:1rem; }
.proc-link{ display:inline-flex; align-items:center; gap:.4em; font-weight:700; color:var(--primary-d); font-size:.95rem; }
.proc-card:hover .proc-arrow{ transform:translateX(4px); }
.proc-arrow{ transition:transform .2s; }

/* featured illustration cards (home) */
.feat-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.1rem; }
.feat-card{ overflow:hidden; cursor:pointer; display:flex; flex-direction:column; }
.feat-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.feat-illus{ aspect-ratio:4/3; background:linear-gradient(160deg,#F2FAF8,#E4F1EE); display:grid; place-items:center; padding:18px; border-bottom:1px solid var(--border); }
.feat-illus img{ max-height:100%; width:auto; object-fit:contain; filter:drop-shadow(0 10px 18px rgba(4,68,63,.10)); }
.feat-body{ padding:18px 20px 20px; }
.feat-body h3{ font-size:1.12rem; }
.feat-body p{ color:var(--muted); font-size:.9rem; margin-top:.35rem; }

/* ===================== SURGEON FEATURE ===================== */
.surgeon{ display:grid; grid-template-columns:0.92fr 1.08fr; gap:clamp(28px,5vw,72px); align-items:center; }
.surgeon-media{ position:relative; }
.surgeon-photo{ border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-lg); border:6px solid #fff; }
.surgeon-photo img{ width:100%; aspect-ratio:1/1; object-fit:cover; }
.surgeon-badge{
  position:absolute; bottom:-22px; left:-22px; width:120px; height:120px; background:#fff; border-radius:50%;
  box-shadow:var(--shadow-md); display:grid; place-items:center; padding:8px; border:1px solid var(--border);
}
.surgeon-badge img{ width:100%; }
.sig{ font-family:var(--font-head); font-weight:700; }

/* quote */
.quote{ border-inline-start:3px solid var(--accent); padding-inline-start:1.2rem; font-size:clamp(1.15rem,2vw,1.5rem); font-family:var(--font-head); line-height:1.35; letter-spacing:-.01em; }

/* ===================== TEAM ===================== */
.team-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:1.1rem; }
.team-card{ overflow:hidden; }
.team-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.team-photo{ aspect-ratio:1/1; overflow:hidden; background:var(--bg-2); }
.team-photo img{ width:100%; height:100%; object-fit:cover; object-position:50% 22%; transition:transform .4s ease; }
.team-card:hover .team-photo img{ transform:scale(1.04); }
.team-info{ padding:16px 18px 18px; }
.team-info h4{ font-family:var(--font-body); font-weight:700; font-size:1.05rem; }
.team-info p{ color:var(--primary-d); font-size:.86rem; font-weight:600; margin-top:.15rem; }

/* clinics list */
.clinics{ display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:.7rem; }
.clinic-pill{ display:flex; align-items:center; gap:.7rem; padding:.85em 1.05em; background:var(--surface); border:1px solid var(--border); border-radius:14px; font-weight:600; font-size:.95rem; }
.clinic-pill .dot{ width:9px; height:9px; border-radius:50%; background:var(--primary); flex:none; }

/* ===================== JOURNEY ===================== */
.journey{ display:grid; gap:1rem; }
.jstep{ display:grid; grid-template-columns:auto 1fr; gap:1.4rem; align-items:start; padding:clamp(22px,3vw,32px); position:relative; }
.jstep-num{ width:54px; height:54px; border-radius:16px; background:var(--primary); color:#fff; display:grid; place-items:center; font-family:var(--font-head); font-weight:700; font-size:1.3rem; flex:none; }
.jstep h3{ font-size:1.25rem; }
.jstep p{ color:var(--muted); margin-top:.4rem; }
.jstep-tags{ display:flex; flex-wrap:wrap; gap:.4rem; margin-top:.8rem; }

/* ===================== STATS / CLAIM ===================== */
.claim{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,3vw,36px); }
.claim-item .n{ font-family:var(--font-head); font-weight:700; font-size:clamp(2.2rem,5vw,3.2rem); color:#fff; line-height:1; letter-spacing:-.03em; }
.claim-item .n span{ color:var(--accent); }
.claim-item p{ color:rgba(234,246,243,.82); margin-top:.5rem; font-size:.96rem; }
.attrib{ font-size:.8rem; color:rgba(234,246,243,.6); margin-top:1.4rem; }

/* ===================== PROCEDURE DETAIL ===================== */
.detail-hero{ background:var(--bg-2); border-bottom:1px solid var(--border); }
.detail-hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,5vw,64px); align-items:center; }
.detail-illus{ background:linear-gradient(160deg,#fff,#EAF4F1); border-radius:var(--r-xl); border:1px solid var(--border); padding:clamp(24px,4vw,48px); display:grid; place-items:center; box-shadow:var(--shadow-md); }
.detail-illus img{ max-height:340px; width:auto; filter:drop-shadow(0 16px 26px rgba(4,68,63,.14)); }
.detail-body{ display:grid; grid-template-columns:1.5fr .9fr; gap:clamp(28px,5vw,56px); align-items:start; }
.detail-main h2{ margin-bottom:.6rem; }
.detail-main h2:not(:first-child){ margin-top:2.4rem; }
.detail-main p{ color:var(--text); }
.detail-main .lede{ color:var(--muted); }
.checklist{ list-style:none; padding:0; margin:.8rem 0 0; display:grid; gap:.7rem; }
.checklist li{ display:flex; gap:.7rem; align-items:flex-start; }
.checklist li svg{ width:22px; height:22px; color:var(--primary); flex:none; margin-top:1px; }
.aside-card{ position:sticky; top:calc(var(--header-h) + 18px); }
.fact-row{ display:flex; justify-content:space-between; gap:1rem; padding:.7rem 0; border-bottom:1px solid var(--border); font-size:.95rem; }
.fact-row:last-child{ border-bottom:none; }
.fact-row .k{ color:var(--muted); }
.fact-row .v{ font-weight:700; text-align:right; }
.proc-nav{ display:flex; gap:.5rem; flex-wrap:wrap; }
.proc-nav a{ padding:.5em 1em; border-radius:999px; border:1px solid var(--border); font-weight:600; font-size:.9rem; background:var(--surface); white-space:nowrap; }
.proc-nav a:hover{ border-color:var(--primary); color:var(--primary-d); }
.proc-nav a.active{ background:var(--primary); color:#fff; border-color:var(--primary); }

/* ===================== BMI ===================== */
.bmi-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,48px); align-items:start; }
.field{ display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.1rem; }
.field label{ font-weight:700; font-size:.92rem; }
.field .unit{ color:var(--muted); font-weight:500; }
.input{
  width:100%; padding:.85em 1em; border:1.5px solid var(--border-2); border-radius:12px; font-family:inherit;
  font-size:1.05rem; background:var(--surface); color:var(--text); transition:border-color .15s, box-shadow .15s;
}
.input:focus{ outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(8,138,128,.15); }
.seg{ display:inline-flex; background:var(--bg-2); border:1px solid var(--border); border-radius:999px; padding:4px; gap:2px; }
.seg button{ border:none; background:transparent; padding:.5em 1.1em; border-radius:999px; font-weight:700; font-size:.9rem; color:var(--muted); }
.seg button.on{ background:var(--surface); color:var(--primary-d); box-shadow:var(--shadow-sm); }
.bmi-result{ text-align:center; padding:clamp(26px,4vw,40px); }
.bmi-num{ font-family:var(--font-head); font-weight:700; font-size:clamp(3rem,9vw,4.6rem); line-height:1; letter-spacing:-.03em; }
.bmi-cat{ display:inline-flex; align-items:center; gap:.5em; font-weight:700; padding:.5em 1.1em; border-radius:999px; margin-top:.8rem; }
.bmi-scale{ display:flex; height:12px; border-radius:999px; overflow:hidden; margin:1.6rem 0 .5rem; }
.bmi-scale span{ flex:1; }
.bmi-ticks{ display:flex; justify-content:space-between; font-size:.72rem; color:var(--muted); }
.disclaimer{ background:#FBEFD8; border:1px solid #F2DEB4; color:#7a5208; border-radius:14px; padding:1rem 1.2rem; font-size:.9rem; display:flex; gap:.7rem; align-items:flex-start; }
.disclaimer svg{ width:22px; height:22px; flex:none; color:var(--accent-d); }

/* ===================== FORM ===================== */
.form-card{ display:grid; gap:0; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23557B76' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1em center; padding-right:2.6em; }
textarea.input{ min-height:120px; resize:vertical; }
.form-note{ font-size:.82rem; color:var(--muted); }
.err{ color:#c0392b; font-size:.82rem; font-weight:600; }
.input.invalid{ border-color:#e07a6a; }
.form-success{ text-align:center; padding:clamp(28px,5vw,52px); }
.form-success .ico{ width:72px; height:72px; border-radius:50%; background:var(--tint); color:var(--primary); display:grid; place-items:center; margin:0 auto 1.2rem; }
.form-success .ico svg{ width:38px; height:38px; }

/* ===================== CONTACT ===================== */
.branch-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
.branch-card{ padding:clamp(24px,3vw,34px); }
.branch-card.primary{ border-color:var(--primary); box-shadow:0 0 0 1px var(--primary), var(--shadow-md); }
.branch-tag{ font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--primary); }
.contact-line{ display:flex; gap:.8rem; align-items:flex-start; padding:.55rem 0; }
.contact-line svg{ width:20px; height:20px; color:var(--primary); flex:none; margin-top:3px; }
.contact-line a{ font-weight:600; }
.contact-line a:hover{ color:var(--primary-d); }
.map-ph{
  border:2px dashed var(--border-2); border-radius:var(--r-lg); background:
    repeating-linear-gradient(45deg, var(--bg-2), var(--bg-2) 14px, #fff 14px, #fff 28px);
  min-height:280px; display:grid; place-items:center; text-align:center; padding:24px;
}
.map-ph .inner{ background:rgba(255,255,255,.92); border-radius:14px; padding:18px 22px; box-shadow:var(--shadow-sm); }
.map-ph .mono{ font-family:ui-monospace,'SF Mono',Menlo,monospace; font-size:.82rem; color:var(--muted); letter-spacing:.02em; }
.hours-row{ display:flex; justify-content:space-between; padding:.5rem 0; border-bottom:1px solid var(--border); font-size:.95rem; }
.hours-row:last-child{ border-bottom:none; }
.hours-row .closed{ color:#b06a00; font-weight:700; }

/* ===================== RESULTS (consent-gated) ===================== */
.results-gate{ position:relative; border-radius:var(--r-lg); overflow:hidden; }
.results-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1rem; transition:filter .4s ease; }
.results-grid.locked{ filter:blur(16px); pointer-events:none; user-select:none; }
.ba-card{ overflow:hidden; background:#fff; border:1px solid var(--border); border-radius:var(--r-md); }
.ba-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; background:var(--bg-2); }
.ba-card .lab{ padding:.7rem 1rem; font-size:.82rem; color:var(--muted); font-weight:600; }
.gate-overlay{ position:absolute; inset:0; display:grid; place-items:center; padding:24px; text-align:center; background:rgba(244,250,248,.7); backdrop-filter:blur(2px); }
.gate-box{ background:#fff; border:1px solid var(--border); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:clamp(24px,4vw,40px); max-width:440px; }
.gate-box .lock{ width:56px; height:56px; border-radius:16px; background:var(--tint); color:var(--primary); display:grid; place-items:center; margin:0 auto 1rem; }

/* ===================== FOOTER ===================== */
.footer{ background:var(--primary-dd); color:#cfe6e1; }
.footer a{ color:#cfe6e1; }
.footer a:hover{ color:#fff; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:clamp(28px,4vw,56px); padding-block:clamp(48px,6vw,80px); }
.footer-logo{ background:#fff; border-radius:18px; padding:14px 16px; display:inline-block; }
.footer-logo img{ height:64px; width:auto; }
.footer h5{ font-family:var(--font-body); font-weight:700; color:#fff; font-size:.95rem; letter-spacing:.04em; text-transform:uppercase; margin:0 0 1.1rem; }
.footer-links{ display:flex; flex-direction:column; gap:.7rem; font-size:.96rem; }
.footer-contact{ display:flex; flex-direction:column; gap:.7rem; font-size:.96rem; }
.socials{ display:flex; gap:.6rem; margin-top:1.1rem; }
.socials a{ width:42px; height:42px; border-radius:11px; border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; transition:background .18s, border-color .18s; }
.socials a:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.4); }
.socials svg{ width:19px; height:19px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-block:24px; display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; font-size:.82rem; color:rgba(207,230,225,.75); }

/* ===================== MOBILE ACTION BAR ===================== */
.action-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:130; display:none;
  grid-template-columns:1fr 1fr 1.3fr; gap:8px; padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.95); backdrop-filter:blur(12px); border-top:1px solid var(--border);
  box-shadow:0 -6px 24px rgba(4,68,63,.10);
}
.action-bar a{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; min-height:52px; border-radius:14px; font-weight:700; font-size:.78rem; }
.action-bar a svg{ width:20px; height:20px; }
.ab-call{ background:var(--bg-2); color:var(--primary-d); }
.ab-wa{ background:#1FAE5A; color:#fff; }
.ab-book{ background:var(--accent); color:#3a2400; }

/* fade-in on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } html{ scroll-behavior:auto; } }

/* page transition */
.page{ animation:pageIn .45s ease; }
@keyframes pageIn{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }

/* breadcrumb */
.crumbs{ display:flex; align-items:center; gap:.5rem; font-size:.88rem; color:var(--muted); padding-top:clamp(18px,3vw,28px); }
.crumbs a:hover{ color:var(--primary-d); }
.crumbs svg{ width:14px; height:14px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width:1080px){
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(3){ border-inline-start:none; }
  .footer-top{ grid-template-columns:1fr 1fr; gap:36px 28px; }
}
@media (max-width:900px){
  .nav, .header-tel{ display:none; }
  .hamburger{ display:flex; }
  .surgeon{ grid-template-columns:1fr; gap:48px; }
  .surgeon-media{ max-width:440px; }
  .detail-hero-grid{ grid-template-columns:1fr; gap:32px; }
  .detail-body{ grid-template-columns:1fr; }
  .aside-card{ position:static; }
  .bmi-grid{ grid-template-columns:1fr; }
  .branch-grid{ grid-template-columns:1fr; }
  .claim{ grid-template-columns:1fr; gap:24px; text-align:center; }
  .claim-item p{ max-width:340px; margin-inline:auto; }
}
@media (max-width:760px){
  body{ font-size:16px; }
  :root{ --header-h:78px; }
  .brand img{ height:54px; }
  .action-bar{ display:grid; }
  body.has-actionbar{ padding-bottom:84px; }
  .header-cta .btn:not(.hamburger){ display:none; }
  .footer-top{ grid-template-columns:1fr; gap:32px; }
  .form-row{ grid-template-columns:1fr; }
  .surgeon-badge{ width:96px; height:96px; left:auto; right:-12px; bottom:-16px; }
  .hero-inner{ padding-block:64px 72px; }
}
@media (max-width:560px){
  :root{ --gutter:18px; }
  .trust-grid{ grid-template-columns:1fr; }
  .trust-item{ border-inline-start:none !important; border-top:1px solid var(--border); }
  .trust-item:first-child{ border-top:none; }
  .proc-grid{ grid-template-columns:1fr; }
  .brand img{ height:50px; }
}
