/* ============================================================
   ORIS DENTAL CENTER JUMEIRAH
   Clinical-premium catalogue/lookbook — design system
   ============================================================ */

:root {
  --primary: #0D7C8A;
  --primary-dark: #0a6571;
  --secondary: #17324D;
  --secondary-deep: #102438;
  --accent: #7AC6C4;
  --accent-soft: #A2D8EA;
  --bg: #F6FBFC;
  --surface: #FFFFFF;
  --surface-2: #EFF7F8;
  --text: #10202B;
  --muted: #647985;
  --border: #D8ECEF;
  --border-strong: #BFDDE2;
  --focus: #0D7C8A;
  --shadow-sm: 0 1px 2px rgba(16,32,43,.06), 0 2px 8px rgba(16,32,43,.04);
  --shadow-md: 0 6px 18px rgba(16,32,43,.08), 0 2px 6px rgba(16,32,43,.05);
  --shadow-lg: 0 20px 48px rgba(16,32,43,.16), 0 6px 16px rgba(16,32,43,.08);
  --maxw: 1240px;
  --gutter: clamp(18px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 70px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--secondary);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
  display: inline-block;
}
.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); margin-top: 14px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: clamp(15px, 1.6vw, 18px); }

section { position: relative; }
.pad { padding-block: clamp(56px, 9vw, 120px); }

/* ---------- Certificate-motif divider (signature) ---------- */
.cert-rule {
  --c: var(--border-strong);
  display: flex; align-items: center; gap: 16px;
  color: var(--primary);
}
.cert-rule .line { flex: 1; height: 0; border-top: 1px solid var(--c); position: relative; }
.cert-rule .line::after {
  content: ""; position: absolute; left: 0; right: 0; top: 3px;
  border-top: 1px solid var(--c); opacity: .5;
}
.cert-rule .gem {
  width: 12px; height: 12px; transform: rotate(45deg);
  border: 1.5px solid var(--primary); flex: none;
}
.cert-rule .gem.fill { background: var(--primary); }

/* certificate corner frame used on featured blocks */
.cert-frame { position: relative; }
.cert-frame::before, .cert-frame::after {
  content: ""; position: absolute; width: 22px; height: 22px; pointer-events: none;
  border: 1.5px solid var(--accent);
}
.cert-frame::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.cert-frame::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .2s, box-shadow .2s, color .2s, border-color .2s;
  min-height: 48px; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: var(--secondary-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--secondary); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--surface); }
.btn-light { background: #fff; color: var(--secondary); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(246,251,252,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(246,251,252,.94); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .chip {
  width: 44px; height: 44px; border-radius: 11px; background: #fff;
  border: 1px solid var(--border); display: grid; place-items: center; overflow: hidden;
  box-shadow: var(--shadow-sm); flex: none;
}
.brand .chip img { width: 38px; height: 38px; object-fit: contain; }
.brand .name { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name b { font-family: var(--font-display); font-weight: 650; font-size: 17px; color: var(--secondary); letter-spacing: -.01em; }
.brand .name span { font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--secondary); padding: 9px 14px; border-radius: 8px;
  transition: background .18s, color .18s; position: relative;
}
.nav a:hover { background: var(--surface-2); color: var(--primary); }
.nav a.active { color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .phone-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--secondary);
  font-variant-numeric: tabular-nums;
}
.header-cta .phone-link svg { width: 17px; height: 17px; color: var(--primary); }

.burger { display: none; width: 46px; height: 46px; border-radius: 11px; border: 1px solid var(--border); background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 20px; height: 2px; background: var(--secondary); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55; background: var(--bg);
  transform: translateX(100%); transition: transform .32s var(--ease); visibility: hidden;
  display: flex; flex-direction: column; padding: 24px var(--gutter) 40px; gap: 6px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer a { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--secondary); padding: 16px 4px; border-bottom: 1px solid var(--border); }
.drawer a:last-of-type { border-bottom: 0; }
.drawer .drawer-cta { margin-top: 20px; display: grid; gap: 12px; }

/* ============================================================
   HERO — catalogue cover
   ============================================================ */
.hero { padding-top: var(--header-h); background: var(--bg); position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px);
  align-items: center; padding-block: clamp(40px, 6vw, 84px);
}
.hero-copy { max-width: 560px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--primary);
  background: var(--surface-2); border: 1px solid var(--border); padding: 8px 14px; border-radius: 999px; white-space: nowrap;
}
.hero-tag svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--accent); }
.hero h1 { font-size: clamp(38px, 6vw, 68px); margin-top: 22px; }
.hero h1 .accent { color: var(--primary); }
.hero-sub { font-size: clamp(16px, 1.9vw, 19px); color: var(--muted); margin-top: 20px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); }
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .item b { font-family: var(--font-display); font-size: 22px; color: var(--secondary); }
.hero-meta .item span { font-size: 12.5px; color: var(--muted); }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; background: var(--surface-2);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,36,56,.55));
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 2;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 14px; border: 1px solid var(--border);
}
.hero-badge .rating { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--secondary); line-height: 1; }
.hero-badge .stars { color: #E8A93B; font-size: 13px; letter-spacing: 1px; }
.hero-badge small { color: var(--muted); font-size: 12px; }
.hero-pin {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: rgba(16,36,56,.78); backdrop-filter: blur(6px); color: #fff;
  padding: 9px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; line-height: 1;
}
.hero-pin svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--accent); }

/* ---------- Proof strip ---------- */
.proof { background: var(--secondary); color: #fff; }
.proof .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 4vw, 48px); padding-block: 22px; }
.proof .pitem { display: flex; align-items: center; gap: 12px; flex: 1 1 auto; min-width: 200px; }
.proof .pitem svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.proof .pitem b { font-family: var(--font-display); font-weight: 600; font-size: 15px; display: block; }
.proof .pitem span { font-size: 12.5px; color: rgba(255,255,255,.62); }
.proof .divider { width: 1px; height: 38px; background: rgba(255,255,255,.16); flex: none; }

/* ---------- Concierge band ---------- */
.concierge { background: var(--bg); }
.concierge-card {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-deep) 100%);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); color: #fff;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center;
  position: relative; overflow: hidden;
}
.concierge-card::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(122,198,196,.28); border-radius: 16px; pointer-events: none;
}
.concierge-card h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); }
.concierge-card p { color: rgba(255,255,255,.72); margin-top: 14px; max-width: 440px; }
.concierge-actions { display: grid; gap: 12px; position: relative; }
.concierge-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; transition: background .2s, transform .2s; }
.concierge-row:hover { background: rgba(255,255,255,.12); transform: translateX(3px); }
.concierge-row .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--primary); display: grid; place-items: center; flex: none; }
.concierge-row .ic svg { width: 20px; height: 20px; color: #fff; }
.concierge-row .t { line-height: 1.25; }
.concierge-row .t span { font-size: 12px; color: rgba(255,255,255,.6); display: block; }
.concierge-row .t b { font-family: var(--font-display); font-weight: 600; font-size: 16px; font-variant-numeric: tabular-nums; }
.concierge-row .arrow { margin-left: auto; color: rgba(255,255,255,.4); }

/* ============================================================
   SERVICES — lookbook
   ============================================================ */
.services { background: var(--surface); border-block: 1px solid var(--border); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.svc-card .img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-2); position: relative; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .img img { transform: scale(1.05); }
.svc-card .num { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--primary); font-family: var(--font-display); font-weight: 600; font-size: 12px; padding: 4px 9px; border-radius: 6px; letter-spacing: .04em; }
.svc-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card h3 { font-size: 20px; }
.svc-card p { color: var(--muted); font-size: 14.5px; }
.svc-card .more { margin-top: auto; color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; padding-top: 6px; }
.svc-card .more svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   GALLERY / lookbook
   ============================================================ */
.gallery { background: var(--bg); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px; grid-auto-flow: dense; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--surface-2); box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(16,36,56,.42)); opacity: 0; transition: opacity .25s; }
.gal-item:hover::after { opacity: 1; }
.gal-item .cap { position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: 12.5px; font-weight: 600; z-index: 2; opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.gal-item:hover .cap { opacity: 1; transform: translateY(0); }
.gal-item .zoom { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; z-index: 2; opacity: 0; transition: opacity .25s; }
.gal-item:hover .zoom { opacity: 1; }
.gal-item .zoom svg { width: 15px; height: 15px; color: var(--secondary); }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gi-big { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   BEFORE / AFTER slider
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; margin-top: 12px; }
.ba { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .after-img { clip-path: inset(0 0 0 50%); }
.ba .ba-label { position: absolute; top: 14px; padding: 6px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; z-index: 3; }
.ba .ba-label.before { left: 14px; background: rgba(16,36,56,.7); }
.ba .ba-label.after { right: 14px; background: var(--primary); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 4; box-shadow: 0 0 0 1px rgba(16,36,56,.1); }
.ba .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; z-index: 5; cursor: ew-resize; }
.ba .knob svg { width: 22px; height: 22px; color: var(--primary); }

/* ============================================================
   ABOUT + certificate
   ============================================================ */
.about { background: var(--surface); border-block: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media .main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media .main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media .cert {
  position: absolute; right: -18px; bottom: -22px; width: 46%; max-width: 230px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 12px; transform: rotate(-2deg);
}
.about-media .cert img { width: 100%; border-radius: 6px; }
.about-copy h2 { font-size: clamp(28px, 4vw, 44px); }
.about-copy p { color: var(--muted); margin-top: 18px; font-size: 16px; }
.about-points { display: grid; gap: 14px; margin-top: 28px; }
.about-points li { list-style: none; display: flex; gap: 14px; align-items: flex-start; }
.about-points .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; flex: none; margin-top: 2px; }
.about-points .tick svg { width: 14px; height: 14px; color: var(--primary); }
.about-points b { color: var(--secondary); font-family: var(--font-display); font-weight: 600; display: block; font-size: 16px; }
.about-points span { color: var(--muted); font-size: 14px; }

/* ---------- Stats band ---------- */
.stats { background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); color: var(--primary); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-size: 14px; margin-top: 8px; display: block; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--surface); border-block: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 46px; }
.member { text-align: center; }
.member .pic { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, var(--accent-soft), var(--surface-2)); margin-bottom: 14px; }
.member .pic img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.member b { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--secondary); display: block; }
.member span { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   PATIENT INFO
   ============================================================ */
.patient { background: var(--secondary); color: #fff; }
.patient .section-head h2 { color: #fff; }
.patient .section-head p { color: rgba(255,255,255,.66); }
.patient-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 46px; }
.pcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; transition: background .2s, transform .2s; }
.pcard:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.pcard .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--primary); display: grid; place-items: center; margin-bottom: 18px; }
.pcard .ic svg { width: 24px; height: 24px; color: #fff; }
.pcard h3 { color: #fff; font-size: 19px; }
.pcard p { color: rgba(255,255,255,.66); font-size: 14.5px; margin-top: 10px; }
.pcard .hours { margin-top: 16px; display: grid; gap: 7px; }
.pcard .hours .row { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,.8); font-variant-numeric: tabular-nums; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.08); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.cinfo-row { display: flex; gap: 16px; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); align-items: center; }
.cinfo-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; flex: none; }
.cinfo-row .ic svg { width: 22px; height: 22px; color: var(--primary); }
.cinfo-row .t span { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.cinfo-row .t b { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--secondary); display: block; margin-top: 2px; font-variant-numeric: tabular-nums; }
.cinfo-row a.t b { color: var(--secondary); }

.map-ph { margin-top: 4px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; aspect-ratio: 16/9; background:
  repeating-linear-gradient(45deg, var(--surface-2) 0 14px, #e6f1f3 14px 28px); display: grid; place-items: center; }
.map-ph .pin-lg { display: grid; place-items: center; gap: 10px; text-align: center; }
.map-ph .pin-lg .dot { width: 54px; height: 54px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(13,124,138,.4); }
.map-ph .pin-lg .dot svg { width: 26px; height: 26px; color: #fff; }
.map-ph .pin-lg b { font-family: var(--font-display); color: var(--secondary); font-size: 16px; }
.map-ph .pin-lg span { color: var(--muted); font-size: 13px; }
.map-ph .tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); border: 1px solid var(--border); padding: 5px 11px; border-radius: 7px; font-size: 11.5px; font-weight: 600; color: var(--muted); }

/* Form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 22px; }
.form-card .sub { color: var(--muted); font-size: 14.5px; margin-top: 8px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--secondary); display: block; margin-bottom: 7px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 11px; background: var(--bg);
  transition: border-color .18s, box-shadow .18s; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23647985' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,124,138,.14); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9534f; }
.field .err { color: #d9534f; font-size: 12px; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--accent); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok svg { width: 30px; height: 30px; color: var(--primary); }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary-deep); color: rgba(255,255,255,.7); padding-top: clamp(48px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-f { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .brand-f .chip { width: 46px; height: 46px; border-radius: 12px; background: #fff; display: grid; place-items: center; overflow: hidden; flex: none; }
.footer .brand-f .chip img { width: 40px; height: 40px; object-fit: contain; }
.footer .brand-f b { font-family: var(--font-display); font-weight: 650; font-size: 18px; color: #fff; }
.footer .brand-f span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: block; }
.footer .fdesc { font-size: 14px; max-width: 300px; line-height: 1.6; }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .18s; }
.footer ul a:hover { color: var(--accent); }
.footer .fcontact { display: grid; gap: 12px; font-size: 14px; }
.footer .fcontact .r { display: flex; gap: 10px; align-items: flex-start; }
.footer .fcontact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s; }
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom .disc { max-width: 720px; line-height: 1.5; }

/* ============================================================
   MOBILE BOTTOM ACTION BAR
   ============================================================ */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)); grid-template-columns: repeat(3,1fr); gap: 8px; box-shadow: 0 -4px 20px rgba(16,32,43,.08); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 4px; border-radius: 12px; font-size: 11.5px; font-weight: 600; color: var(--secondary); }
.mobile-bar a svg { width: 21px; height: 21px; color: var(--primary); }
.mobile-bar a.primary { background: var(--primary); color: #fff; }
.mobile-bar a.primary svg { color: #fff; }

/* Floating phone chip */
.float-call { position: fixed; right: 18px; bottom: 22px; z-index: 45; display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; padding: 12px 20px 12px 14px; border-radius: 999px; box-shadow: var(--shadow-lg); font-weight: 600; font-size: 15px; transform: translateY(120px); transition: transform .35s var(--ease), background .2s; }
.float-call.show { transform: translateY(0); }
.float-call:hover { background: var(--primary-dark); }
.float-call svg { width: 19px; height: 19px; }
.float-call .ping { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(10,20,28,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-close svg { width: 22px; height: 22px; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-nav:hover { background: rgba(255,255,255,.22); }
.lightbox .lb-nav.prev { left: 16px; }
.lightbox .lb-nav.next { right: 16px; }
.lightbox .lb-nav svg { width: 24px; height: 24px; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav, .header-cta .phone-link { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .frame { aspect-ratio: 16/11; }
  .concierge-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .about-media .cert { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .patient-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 720px) {
  :root { --header-h: 62px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 76px; }
  .float-call { display: none; }
  .proof .divider { display: none; }
  .proof .pitem { min-width: 44%; }
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-badge { left: 12px; }
}
@media (max-width: 420px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 16px; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
