  :root {
    /* Default palette: "Brand" — drawn from the ACOC logo */
    --bg:        #f4f7fb;
    --surface:   #ffffff;
    --ink:       #0f2350;     /* deep navy from logo wordmark */
    --ink-soft:  #3a4a72;
    --ink-mute:  #7d8aa3;
    --line:      rgba(15,35,80,.10);
    --line-soft: rgba(15,35,80,.06);
    --brand-navy: #0f2350;
    --brand-blue: #2e6fdb;    /* royal blue dot in logo */
    --brand-green:#3fae5a;    /* green crescent in logo */
    --accent:    var(--brand-blue);
    --accent-2:  #e3edfb;     /* pale blue tint */
    --accent-ink: var(--brand-navy);
    --warm:      #e0a93c;
    --danger:    #b94a48;

    --nav-h: 76px;

    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --sans:  'Inter', system-ui, -apple-system, sans-serif;
    --display: var(--serif);
    --body:    var(--sans);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; }
  a { color: inherit; }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* ─── Top bar ─── */
  .topbar {
    background: var(--brand-navy);
    color: rgba(255,255,255,.78);
    font-size: 12.5px;
    display: none;
  }
  .topbar .wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; padding-bottom: 10px;
  }
  .topbar .meta { display: flex; gap: 28px; align-items: center; }
  .topbar .meta span { display: inline-flex; align-items: center; gap: 8px; }
  .topbar .right { display: flex; gap: 18px; align-items: center; }
  .topbar a { text-decoration: none; opacity: .7; transition: opacity .15s; }
  .topbar a:hover { opacity: 1; }

  /* ─── Header / Nav ─── */
  header.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: color-mix(in oklab, var(--bg) 88%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
  }
  header.site-nav .wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; padding-bottom: 16px;
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .brand-mark {
    width: 44px; height: 44px; position: relative; flex-shrink: 0;
  }
  .brand-name { line-height: 1.05; }
  .brand-name .t1 { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -.01em; color: var(--brand-navy); }
  .brand-name .t2 { font-size: 11px; color: var(--ink-mute); letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; }

  nav.primary { display: flex; gap: 2px; }
  nav.primary a {
    color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500;
    padding: 9px 14px;
    transition: color .2s;
    position: relative;
  }
  nav.primary a::after {
    content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
    height: 2px; background: var(--brand-navy); border-radius: 2px;
    transform: scaleX(0); transform-origin: center;
    transition: transform .25s ease, opacity .25s;
    opacity: 0;
  }
  nav.primary a:hover { color: var(--brand-navy); }
  nav.primary a:hover::after { transform: scaleX(0.55); opacity: 0.28; }
  nav.primary a.active { color: var(--brand-navy); font-weight: 600; }
  nav.primary a.active::after { transform: scaleX(1); opacity: 1; }

  /* ─── Nav dropdown ─── */
  nav.primary .has-dropdown { position: relative; display: inline-flex; align-items: center; }
  nav.primary .has-dropdown > a {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500;
    padding: 9px 14px;
    transition: color .2s;
    position: relative;
  }
  nav.primary .has-dropdown > a::after {
    content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
    height: 2px; background: var(--brand-navy); border-radius: 2px;
    transform: scaleX(0); transform-origin: center;
    transition: transform .25s ease, opacity .25s;
    opacity: 0;
  }
  nav.primary .has-dropdown > a svg { transition: transform .2s; }
  nav.primary .has-dropdown > a:hover,
  nav.primary .has-dropdown:focus-within > a,
  nav.primary .has-dropdown.open > a { color: var(--brand-navy); }
  nav.primary .has-dropdown > a:hover::after { transform: scaleX(0.55); opacity: 0.28; }
  nav.primary .has-dropdown > a.active { color: var(--brand-navy); font-weight: 600; }
  nav.primary .has-dropdown > a.active::after { transform: scaleX(1); opacity: 1; }
  nav.primary .has-dropdown:focus-within > a svg,
  nav.primary .has-dropdown.open > a svg { transform: rotate(180deg); }
  nav.primary .has-dropdown:focus-within > a svg,
  nav.primary .has-dropdown.open > a svg { transform: rotate(180deg); }
  .sub-nav {
    position: absolute; top: 100%; left: 0;
    background: var(--surface); border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(15,35,80,.12);
    border-radius: 16px; min-width: 210px;
    list-style: none; margin: 0; padding: 8px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility 0s .2s;
    z-index: 200;
  }
  /* Transparent bridge fills the gap so the mouse never leaves the hit area */
  .sub-nav::before {
    content: ''; position: absolute; bottom: 100%; left: 0;
    width: 100%; height: 10px;
  }
  nav.primary .has-dropdown:focus-within .sub-nav,
  nav.primary .has-dropdown .sub-nav.open {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateY(0); transition: opacity .2s, transform .2s;
  }
  .sub-nav li a {
    display: block; padding: 11px 16px;
    font-size: 14px; font-weight: 500; color: var(--ink-soft);
    border-radius: 10px; text-decoration: none;
    transition: background .15s, color .15s;
  }
  .sub-nav li a:hover { background: var(--accent-2); color: var(--brand-blue); }
  .sub-nav li a.active { background: var(--accent-2); color: var(--brand-navy); font-weight: 600; border-left: 2px solid var(--brand-navy); padding-left: 14px; }

  .cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px; border-radius: 999px;
    background: var(--brand-green); color: white;
    border: 0; font-weight: 500; font-size: 14px;
    transition: transform .12s, box-shadow .15s, background .15s;
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 22px -12px var(--brand-green);
    text-decoration: none;
  }
  .cta:hover { transform: translateY(-1px); background: color-mix(in oklab, var(--brand-green) 88%, black); }
  .cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
  .cta.ghost:hover { background: var(--surface); }
  .cta.blue { background: var(--brand-blue); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 22px -12px var(--brand-blue); }
  .cta.blue:hover { background: color-mix(in oklab, var(--brand-blue) 88%, black); }

  /* ─── Hero slider ─── */
  .hero-slider {
    position: relative;
    height: 100dvh; min-height: 580px;
    overflow: hidden;
    background: var(--brand-navy);
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1s ease;
    display: flex; align-items: center;
    padding-top: var(--nav-h);
  }
  .hero-slide.active { opacity: 1; z-index: 1; }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.02);
    transition: transform 8s linear;
  }
  .hero-slide.active .hero-bg { transform: scale(1.08); }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(95deg,
        color-mix(in oklab, var(--brand-navy) 80%, transparent) 0%,
        color-mix(in oklab, var(--brand-navy) 55%, transparent) 50%,
        rgba(0,0,0,.20) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
    color: white; opacity: .85; font-weight: 600;
  }
  .hero-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--brand-green);
  }
  .hero-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: white;
    margin: 22px 0 22px;
    max-width: 18ch;
    text-wrap: balance;
  }
  .hero-title em {
    font-style: italic; font-weight: 300;
    color: color-mix(in oklab, var(--brand-green) 70%, white);
  }
  .hero-lede {
    color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.6;
    max-width: 50ch; margin: 0 0 32px;
  }
  .hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
  .hero-actions .cta.ghost {
    color: white; border-color: rgba(255,255,255,.35); background: transparent;
  }
  .hero-actions .cta.ghost:hover { background: rgba(255,255,255,.1); }

  .hero-controls {
    position: absolute; bottom: 32px; left: 0; right: 0;
    z-index: 3;
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .hero-dots { display: flex; gap: 8px; }
  .hero-dots button {
    appearance: none; border: 0; background: rgba(255,255,255,.3);
    width: 36px; height: 4px; border-radius: 2px;
    transition: background .2s, width .2s;
  }
  .hero-dots button.active { background: var(--brand-green); width: 56px; }
  .hero-arrows { display: flex; gap: 10px; }
  .hero-arrows button {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.05);
    color: white; display: grid; place-items: center;
    backdrop-filter: blur(6px);
    transition: background .15s;
  }
  .hero-arrows button:hover { background: rgba(255,255,255,.15); }


  /* ─── Quick links ─── */
  .quicklinks { background: var(--bg); padding: 60px 0 64px; }
  .ql {
    display: flex; flex-direction: column; gap: 14px;
    text-decoration: none; color: var(--ink);
    transition: transform .22s;
  }
  .ql:hover { transform: translateY(-4px); }
  .ql-thumb {
    aspect-ratio: 16/9;
    position: relative; overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 24px -8px rgba(15,35,80,.18);
    transition: box-shadow .22s;
  }
  .ql:hover .ql-thumb {
    box-shadow: 0 16px 48px -12px rgba(15,35,80,.28);
  }
  .ql-bg {
    position: absolute; inset: 0;
    background: var(--g, linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%));
    transform: scale(1.01);
    transition: transform .4s ease;
  }
  .ql:hover .ql-bg { transform: scale(1.06); }
  .ql-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block; z-index: 1;
    transition: transform .4s ease;
  }
  .ql:hover .ql-img { transform: scale(1.06); }
  .ql-overlay {
    position: absolute; inset: 0; z-index: 2;
    opacity: .62;
    pointer-events: none;
  }
  .ql-thumb--has-img::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(10,20,50,.68) 100%) !important;
    z-index: 3;
  }
  .ql-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .ql-play {
    position: absolute; inset: 0; z-index: 4;
    display: grid; place-items: center;
  }
  .ql-play span {
    width: 54px; height: 54px; border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: grid; place-items: center;
    color: var(--brand-navy);
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
    transition: transform .2s, background .2s;
  }
  .ql:hover .ql-play span { transform: scale(1.12); background: #fff; }
  .ql-info { display: flex; flex-direction: column; gap: 3px; padding: 0 2px; }
  .ql-info .t {
    font-family: var(--display); font-weight: 500;
    font-size: 16px; color: var(--brand-navy);
    letter-spacing: -.01em; line-height: 1.25;
  }
  .ql-info .s { font-size: 12.5px; color: var(--ink-mute); }

  /* ─── About ─── */
  section.about { padding: 110px 0 100px; }
  .about .wrap { }
  .section-head { display: flex; flex-direction: column; gap: 18px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--brand-blue); font-weight: 600;
  }
  .eyebrow::before {
    content: ''; width: 28px; height: 1px; background: currentColor;
  }
  .section-head h2 {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05; letter-spacing: -.02em;
    margin: 0; color: var(--brand-navy);
  }
  .section-head h2 em { font-style: italic; color: var(--brand-blue); font-weight: 300; }
  .about-prose { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
  .about-prose p { margin: 0 0 16px; }
  .about-prose p:first-child::first-letter {
    font-family: var(--display); font-size: 56px; float: left;
    line-height: .9; padding: 6px 12px 0 0; color: var(--brand-blue);
    font-weight: 500;
  }
  .review-card {
    margin-top: 28px;
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .review-card .stars { color: var(--warm); letter-spacing: 1px; font-size: 16px; }
  .review-card .num { font-family: var(--display); font-weight: 600; font-size: 28px; color: var(--brand-navy); letter-spacing: -.01em; }
  .review-card .meta { font-size: 13px; color: var(--ink-mute); line-height: 1.4; }
  .review-card .meta b { color: var(--ink); font-weight: 600; }
  .review-card .verified {
    margin-left: auto; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-mute); display: flex; align-items: center; gap: 6px;
  }

  /* About — two-column layout when image is present */
  .about-inner { }
  .about-inner.has-image {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
  }
  .about-copy { display: flex; flex-direction: column; }
  .about-copy .section-head { margin-bottom: 36px; }
  .about-image-col { position: sticky; top: 100px; }
  .about-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(15,35,80,.14);
    display: block;
  }

  /* ─── Services ─── */
  section.services {
    background: var(--brand-navy);
    color: white; padding: 100px 0;
    position: relative; overflow: hidden;
  }
  section.services::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 100% 0%, color-mix(in oklab, var(--brand-blue) 60%, transparent) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 0% 100%, color-mix(in oklab, var(--brand-green) 35%, transparent) 0%, transparent 60%);
    opacity: .55; pointer-events: none;
  }
  section.services .wrap { position: relative; }
  section.services .section-head h2 { color: white; }
  section.services .section-head h2 em { color: color-mix(in oklab, var(--brand-green) 80%, white); }
  section.services .section-head p { color: rgba(255,255,255,.65); max-width: 52ch; margin: 0; font-size: 16px; line-height: 1.7; }
  .services-head {
    margin-bottom: 56px;
  }
  .services-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
  .stab {
    appearance: none; border: 1px solid rgba(255,255,255,.18); background: transparent;
    color: rgba(255,255,255,.78); padding: 10px 18px; border-radius: 999px;
    font-size: 13.5px; font-weight: 500;
    transition: background .15s, color .15s, border-color .15s;
  }
  .stab:hover { color: white; border-color: rgba(255,255,255,.35); }
  .stab.active { background: white; color: var(--brand-navy); border-color: white; }

  .services-grid { }
  .scard {
    position: relative;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 28px;
    padding: 36px 32px 32px;
    background: linear-gradient(145deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
    display: flex; flex-direction: column; gap: 16px;
    transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  }
  .scard:hover { background: var(--brand-green); border-color: var(--brand-green); transform: translateY(-4px); box-shadow: 0 24px 56px -20px rgba(63,174,90,.4); }
  .scard .num { font-family: var(--display); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .04em; transition: color .2s; }
  .scard:hover .num { color: rgba(255,255,255,.9); }
  .scard h3 {
    font-family: var(--display); font-weight: 500;
    font-size: 26px; line-height: 1.1; letter-spacing: -.01em;
    margin: 4px 0 0; color: white;
  }
  .scard p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.6; margin: 0; flex: 1; transition: color .2s; }
  .scard:hover p { color: rgba(255,255,255,.92); }
  .scard .more { display: inline-flex; align-items: center; gap: 8px; color: white; font-size: 13.5px; font-weight: 500; text-decoration: none; margin-top: 8px; }
  .scard .more svg { transition: transform .15s; }
  .scard:hover .more svg { transform: translateX(4px); }
  .scard .ic-corner {
    position: absolute; top: 22px; right: 22px;
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: grid; place-items: center; color: rgba(255,255,255,.7);
  }
  .scard:hover .ic-corner { background: rgba(255,255,255,.22); color: white; }
  .scard-docs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
  .scard-doc-pill {
    display: inline-flex; align-items: center; gap: 7px;
    text-decoration: none; color: rgba(255,255,255,.85);
    font-size: 12px; font-weight: 500;
    padding: 4px 10px 4px 4px; border-radius: 999px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    transition: background .15s, border-color .15s, color .15s;
  }
  .scard-doc-pill:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); color: white; }
  .scard-doc-pill img, .scard-doc-av {
    width: 24px; height: 24px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    background: rgba(255,255,255,.18);
  }

  /* ─── Appointment (split: navy panel + form grid) ─── */
  section.appointment { padding: 100px 0; background: var(--bg); }
  .appt {
    display: grid; grid-template-columns: .9fr 1.1fr;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 30px 60px -40px rgba(15,35,80,.15);
  }
  .appt-side {
    padding: 48px 44px; background: var(--brand-navy); color: white;
    display: flex; flex-direction: column; gap: 24px;
    position: relative; overflow: hidden;
  }
  .appt-side::after {
    content: ''; position: absolute; right:-40px; bottom:-60px;
    width:220px; height:220px; border-radius:50%;
    background: color-mix(in oklab, var(--brand-blue) 50%, transparent);
    filter: blur(40px);
  }
  .appt-side .eyebrow { color: color-mix(in oklab, var(--brand-green) 80%, white); position: relative; }
  .appt-side h2 { font-family: var(--display); font-weight: 400; font-size: 40px; line-height: 1.05; letter-spacing: -.02em; margin: 0; position: relative; text-wrap: balance; }
  .appt-side h2 em { font-style: italic; color: color-mix(in oklab, var(--brand-green) 80%, white); font-weight: 300; }
  .appt-side p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.6; margin: 0; max-width: 36ch; position: relative; }
  .appt-info { margin-top: auto; display: flex; flex-direction: column; gap: 14px; position: relative; }
  .appt-info .cs-row { display: flex; gap: 14px; align-items: flex-start; }
  .appt-info .cs-row .ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: color-mix(in oklab, var(--brand-green) 80%, white); flex-shrink: 0; }
  .appt-info .cs-row .body { line-height: 1.4; font-size: 13.5px; color: rgba(255,255,255,.85); }
  .appt-info .cs-row .body b { display: block; font-weight: 600; color: white; font-size: 14px; margin-bottom: 1px; }

  .appt-form { padding: 44px 44px; display: flex; flex-direction: column; gap: 0; }
  .appt-form .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field label { font-size: 12px; color: var(--ink-mute); letter-spacing: .04em; font-weight: 500; }
  .field input, .field select, .field textarea {
    width: 100%; appearance: none; -webkit-appearance: none;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit; font-size: 14.5px; color: var(--ink);
    transition: border-color .15s, box-shadow .15s, background .15s;
    resize: vertical;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    background: white;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand-blue) 18%, transparent);
  }
  .field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237d8aa3' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
  }
  .field.error input, .field.error select { border-color: var(--danger); box-shadow: 0 0 0 4px color-mix(in oklab, var(--danger) 14%, transparent); }
  .field .err { color: var(--danger); font-size: 12px; margin-top: 2px; }
  .submit-row { display: flex; gap: 14px; align-items: center; margin-top: 24px; flex-wrap: wrap; }
  .submit-row .cta { padding: 14px 28px; }
  .submit-row .note { font-size: 12.5px; color: var(--ink-mute); }

  .appt-success { padding: 44px 44px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; justify-content: center; min-height: 480px; }
  .appt-success .check { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in oklab, var(--brand-green) 18%, white); color: var(--brand-green); display: grid; place-items: center; }
  .appt-success h3 { font-family: var(--display); font-weight: 500; font-size: 30px; margin: 0; color: var(--brand-navy); letter-spacing: -.01em; }
  .appt-success p { color: var(--ink-soft); margin: 0; max-width: 38ch; }

  /* ─── Doctors ─── */
  section.doctors { padding: 90px 0 110px; }
  section.doctors-page {
    padding: 80px 0;
    background: var(--bg);
};
  .docs-head {
    display: flex; align-items: flex-end; gap: 20px;
    margin-bottom: 56px;
  }
  .docs-head-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
  .docs-title-row { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; justify-content: space-between;}
  .docs-title-row h2 {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05; letter-spacing: -.02em;
    margin: 0; color: var(--brand-navy);
  }
  .docs-title-row h2 em { font-style: italic; color: var(--brand-blue); font-weight: 300; }
  .docs-head .cta { white-space: nowrap; }
  .docs-nav { display: flex; gap: 10px; flex-shrink: 0; }
  .docs-nav button {
    appearance: none; border: 1px solid var(--line); background: var(--surface);
    width: 44px; height: 44px; border-radius: 50%;
    color: var(--ink); display: grid; place-items: center;
    transition: background .15s, border-color .15s;
  }
  .docs-nav button:hover:not(:disabled) { background: var(--accent-2); border-color: var(--brand-blue); color: var(--brand-navy); }
  .docs-nav button:disabled { opacity: .35; cursor: not-allowed; }

  .docs-track-wrap { overflow: hidden; }
  .docs-track {
    display: flex; gap: 20px;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .doc {
    flex: 0 0 calc((100% - 60px) / 4);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 2px 12px -4px rgba(15,35,80,.09);
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
  }
  .doc--card { cursor: pointer; }
  a.doc { text-decoration: none; color: inherit; cursor: pointer; }
  .doc:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -16px rgba(15,35,80,.18); }
  .doc .pic { aspect-ratio: 4/5; position: relative; overflow: hidden; }
  .doc .pic .silhouette {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 32% 22% at 50% 32%, rgba(15,35,80,.78) 0%, rgba(15,35,80,.78) 60%, transparent 70%),
      radial-gradient(ellipse 60% 50% at 50% 95%, rgba(15,35,80,.78) 0%, rgba(15,35,80,.78) 60%, transparent 70%),
      linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18));
  }
  .doc .pic .badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,255,255,.92); color: var(--brand-navy);
    padding: 6px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  }
  .doc .info { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 6px; }
  .doc .role { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
  .doc .name { font-family: var(--display); font-weight: 500; font-size: 22px; color: var(--brand-navy); letter-spacing: -.01em; line-height: 1.2; }
  .doc .spec { color: var(--ink-soft); font-size: 13.5px; }
  .doc-langs { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--ink-mute); }
  .doc-langs svg { flex-shrink: 0; opacity: .7; }
  .doc .meta-row { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line-soft); }
  .doc .meta-row .yrs { font-size: 12.5px; color: var(--ink-mute); }
  .doc .meta-row .yrs b { color: var(--ink); font-weight: 600; }
  .doc .meta-row .arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg); color: var(--ink); display: grid; place-items: center;
    transition: background .15s, color .15s;
  }
  .doc:hover .meta-row .arrow { background: var(--brand-blue); color: white; }

  .docs-track--3 .doc { flex: 0 0 calc((100% - 40px) / 3); }

  .docs-dots { display: flex; gap: 6px; justify-content: center; margin-top: 28px; }
  .docs-dots button { appearance: none; border: 0; background: var(--line); width: 24px; height: 4px; border-radius: 2px; transition: background .15s, width .15s; }
  .docs-dots button.active { background: var(--brand-blue); width: 36px; }

  /* ─── Tour CTA banner ─── */
  section.tour-banner {
    position: relative;
    background: var(--brand-navy);
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
  }
  .tour-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 60% 80% at 0% 50%, color-mix(in oklab, var(--brand-blue) 50%, transparent) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 100% 50%, color-mix(in oklab, var(--brand-green) 30%, transparent) 0%, transparent 60%);
  }
  .tour-banner .wrap { position: relative; }
  .tour-banner .play-circle {
    width: 88px; height: 88px; border-radius: 50%;
    background: rgba(255,255,255,.95); color: var(--brand-navy);
    display: grid; place-items: center;
    margin: 0 auto 28px;
    box-shadow: 0 0 0 0 rgba(255,255,255,.5);
    animation: pulse 2.4s infinite;
    border: 0; cursor: pointer;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
    70%  { box-shadow: 0 0 0 26px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  .tour-banner h2 { font-family: var(--display); font-weight: 400; font-size: clamp(36px, 4vw, 56px); margin: 0 0 14px; letter-spacing: -.02em; }
  .tour-banner h2 em { font-style: italic; color: color-mix(in oklab, var(--brand-green) 70%, white); font-weight: 300; }
  .tour-banner p { color: rgba(255,255,255,.75); margin: 0 auto 28px; max-width: 50ch; font-size: 16px; }
  .tour-banner .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .tour-banner .actions .cta.ghost { color: white; border-color: rgba(255,255,255,.35); }
  .tour-banner .actions .cta.ghost:hover { background: rgba(255,255,255,.1); }
  .tour-banner-bg { position: absolute; inset: 0; z-index: 0; }
  .tour-banner--has-img::before { background-image: linear-gradient(to bottom, rgba(10,20,50,.55) 0%, rgba(10,20,50,.68) 100%); z-index: 1; }
  .tour-banner--has-color::before { display: none; }
  .tour-banner .wrap { position: relative; z-index: 2; }

  /* Homepage doctor cards — clickable via JS */
  .doc[data-href] { cursor: pointer; }

  /* ─── News (homepage + news page shared) ─── */
  section.news { padding: 110px 0; background: var(--bg); }
  .news-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 48px; }

  /* ─── Contact strip ─── */
  .contact-strip { background: var(--brand-green); color: white; }
  .contact-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 28px; padding-bottom: 28px; gap: 24px; }
  .contact-strip .cs-row { display: flex; gap: 16px; align-items: center; }
  .contact-strip .ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; flex-shrink: 0; }
  .contact-strip b { font-size: 15.5px; font-weight: 600; display: block; line-height: 1.2; }
  .contact-strip .sub { font-size: 12.5px; opacity: .85; margin-top: 2px; }

  /* ─── Footer ─── */
  footer.foot {
    background: var(--brand-navy); color: rgba(255,255,255,.78);
    padding: 0; font-size: 14px;
    position: relative; overflow: hidden;
  }
  footer.foot::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 100% 0%, color-mix(in oklab, var(--brand-blue) 45%, transparent) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 0% 100%, color-mix(in oklab, var(--brand-green) 22%, transparent) 0%, transparent 60%);
    pointer-events: none;
  }
  .foot-cta {
    position: relative; padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .foot-cta .wrap { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; }
  .foot-cta h3 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3vw, 40px); margin: 0; color: white; letter-spacing: -.02em; line-height: 1.1; max-width: 24ch; }
  .foot-cta h3 em { font-style: italic; color: color-mix(in oklab, var(--brand-green) 70%, white); font-weight: 300; }
  .foot-cta .actions { display: flex; gap: 12px; }
  .foot-cta .cta.ghost { color: white; border-color: rgba(255,255,255,.3); }
  .foot-cta .cta.ghost:hover { background: rgba(255,255,255,.1); }
  footer.foot .grid {
    position: relative;
  }
  .foot-brand { display: flex; flex-direction: column; gap: 16px; }
  .foot-brand .lockup { display: flex; align-items: center; gap: 12px; }
  .foot-brand .lockup img{ max-width: 200px; }
  .foot-brand .lockup .mark { width: 44px; height: 44px; }
  .foot-brand .lockup .name { line-height: 1.1; }
  .foot-brand .lockup .name .t1 { font-family: var(--display); font-size: 17px; color: white; font-weight: 600; }
  .foot-brand .lockup .name .t2 { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .14em; text-transform: uppercase; }
  .foot-brand p { color: rgba(255,255,255,.65); font-size: 13.5px; line-height: 1.6; max-width: 38ch; margin: 0; }
  .foot-social { display: flex; gap: 10px; margin-top: 8px; }
  .foot-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: background .15s, color .15s, border-color .15s; }
  .foot-social a:hover { background: var(--brand-green); border-color: var(--brand-green); color: white; }
  footer.foot h4 { font-family: var(--display); color: white; font-weight: 500; font-size: 18px; margin: 0 0 18px; letter-spacing: -.01em; }
  footer.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  footer.foot ul a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .15s; }
  footer.foot ul a:hover { color: white; }
  footer.foot p { margin: 0 0 14px; line-height: 1.6; }
  footer.foot .newsletter { display: flex; gap: 8px; margin-top: 12px; }
  footer.foot .newsletter input {
    flex: 1; padding: 12px 14px; border-radius: 999px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    color: white; font: inherit; font-size: 13.5px;
  }
  footer.foot .newsletter input::placeholder { color: rgba(255,255,255,.55); }
  footer.foot .newsletter input:focus { outline: none; border-color: var(--brand-green); background: rgba(255,255,255,.12); }
  footer.foot .newsletter button {
    appearance: none; border: 0; background: var(--brand-green); color: white;
    padding: 0 20px; border-radius: 999px; font-weight: 600; font-size: 13.5px;
    cursor: pointer; transition: background .15s;
  }
  footer.foot .newsletter button:hover { background: color-mix(in oklab, var(--brand-green) 88%, black); }
  footer.foot .award {
    position: relative;
    background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px; padding: 26px 22px 22px;
    text-align: center; overflow: hidden;
  }
  footer.foot .award::before {
    content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--warm), color-mix(in oklab, var(--warm) 60%, white), var(--warm));
  }
  footer.foot .award .yr { font-family: var(--display); font-size: 26px; color: white; font-weight: 500; letter-spacing: -.01em; }
  footer.foot .award .laurels { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 6px 0 4px; }
  footer.foot .award .laurels svg { color: var(--warm); }
  footer.foot .award .ttl { font-family: var(--display); font-size: 16px; color: white; font-weight: 500; line-height: 1.25; margin-top: 4px; }
  footer.foot .award .src { font-size: 10.5px; color: rgba(255,255,255,.6); margin-top: 8px; letter-spacing: .14em; text-transform: uppercase; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.1); }

  .award-badge {
    border: 2px solid #ceab4e;
    border-radius: 15px;
  }
  footer.foot .bottom {
    position: relative;
    padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: rgba(255,255,255,.55);
  }
  footer.foot .bottom .links { display: flex; gap: 18px; }
  footer.foot .bottom a { color: rgba(255,255,255,.7); text-decoration: none; }

  /* ─── Modal ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(15,35,80,.55); backdrop-filter: blur(6px);
    display: grid; place-items: center; padding: 24px;
    animation: fade .2s ease;
  }
  @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
  .modal {
    display: block; /* override Bootstrap's .modal { display:none } */
    width: min(720px, 100%); background: var(--surface);
    border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
    box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
    animation: pop .25s cubic-bezier(.2,.8,.2,1.1); position: relative;
    /* reset Bootstrap overrides */
    top: auto; left: auto; height: auto; z-index: auto;
  }
  @keyframes pop { from { transform: scale(.96) translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
  .modal .video {
    aspect-ratio: 16/9; background: var(--brand-navy);
    position: relative; display: grid; place-items: center; color: white;
  }
  .modal .video::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, color-mix(in oklab, var(--brand-blue) 60%, transparent), transparent 70%);
  }
  .modal .video .play {
    width: 84px; height: 84px; border-radius: 50%;
    background: rgba(255,255,255,.95); color: var(--brand-navy);
    display: grid; place-items: center; position: relative;
    animation: pulse 2s infinite; border: 0; cursor: pointer;
  }
  .modal .body { padding: 24px 28px 28px; display: flex; gap: 18px; align-items: center; justify-content: space-between; }
  .modal .body h3 { font-family: var(--display); font-weight: 500; font-size: 24px; margin: 0; color: var(--brand-navy); }
  .modal .body p { font-size: 14px; color: var(--ink-mute); margin: 4px 0 0; }
  .modal .close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,.45); color: white; border: 0;
    display: grid; place-items: center;
    backdrop-filter: blur(8px); cursor: pointer;
  }
  .modal .close:hover { background: rgba(0,0,0,.7); }

  /* ─── Inner page hero ─── */
  .page-hero {
    background: var(--brand-navy);
    padding: calc(80px + var(--nav-h)) 0 96px;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 100% 0%, color-mix(in oklab, var(--brand-blue) 50%, transparent) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 0% 100%, color-mix(in oklab, var(--brand-green) 25%, transparent) 0%, transparent 60%);
    pointer-events: none;
  }
  .page-hero .wrap { position: relative; }
  .page-hero .eyebrow { color: color-mix(in oklab, var(--brand-green) 80%, white); }
  .page-hero h1 {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(40px, 5vw, 68px); line-height: 1.04;
    letter-spacing: -0.02em; color: white; margin: 20px 0 0;
    max-width: 18ch; text-wrap: balance;
  }
  .page-hero h1 em { font-style: italic; color: color-mix(in oklab, var(--brand-green) 70%, white); font-weight: 300; }
  .page-hero p {
    color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.6;
    max-width: 52ch; margin: 18px 0 0;
  }
  .breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; color: rgba(255,255,255,.5);
    margin-bottom: 28px; text-transform: uppercase; letter-spacing: .08em;
  }
  .breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
  .breadcrumb a:hover { color: white; }
  .breadcrumb .sep { opacity: .35; }

  /* ─── Stats band ─── */
  .stats-band { background: var(--brand-navy); padding: 64px 0; position: relative; overflow: hidden; }
  .stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 50%, color-mix(in oklab, var(--brand-blue) 40%, transparent) 0%, transparent 60%);
    pointer-events: none;
  }
  .stats-band .wrap { position: relative; }
  .stat-item { text-align: center; }
  .stat-item .num {
    font-family: var(--display); font-size: clamp(34px, 3.5vw, 52px); font-weight: 500;
    color: white; letter-spacing: -0.02em; line-height: 1;
  }
  .stat-item .num em { font-style: normal; color: var(--brand-green); }
  .stat-item .lbl { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.4; }

  /* ─── Timeline ─── */
  .timeline-section { padding: 100px 0; background: var(--bg); }
  .timeline-items { display: flex; flex-direction: column; margin-top: 56px; }
  .timeline-item {
    display: grid; grid-template-columns: 110px 24px 1fr; align-items: start;
    gap: 0 32px; padding-bottom: 52px;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item .t-year {
    font-family: var(--display); font-size: 38px; font-weight: 500;
    color: var(--brand-navy); letter-spacing: -0.02em;
    text-align: right; padding-top: 2px; line-height: 1;
  }
  .timeline-item .t-line {
    display: flex; flex-direction: column; align-items: center;
  }
  .timeline-item .t-line .dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--brand-green); border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--brand-green);
    flex-shrink: 0; margin-top: 6px;
  }
  .timeline-item .t-line .rule {
    flex: 1; width: 1px; background: var(--line); margin-top: 8px;
  }
  .timeline-item:last-child .t-line .rule { display: none; }
  .timeline-item .t-body { padding-bottom: 4px; }
  .timeline-item .t-body h3 {
    font-family: var(--display); font-size: 22px; font-weight: 500;
    color: var(--brand-navy); margin: 0 0 10px; letter-spacing: -0.01em;
    padding-top: 4px;
  }
  .timeline-item .t-body p { color: var(--ink-soft); line-height: 1.7; margin: 0; font-size: 15.5px; }

  /* ─── Mission / Vision / Values ─── */
  .mvv-section { padding: 100px 0; background: var(--surface); }
  .mvv-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
  .mvv-text .section-head { margin-bottom: 44px; }
  .mvv-items { display: flex; flex-direction: column; }
  .mvv-item { padding: 28px 0; border-top: 1px solid var(--line); }
  .mvv-item:first-child { border-top: none; padding-top: 0; }
  .mvv-item h4 {
    font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    margin: 0 0 10px; display: flex; align-items: center; gap: 8px;
  }
  .mvv-mission h4 { color: var(--brand-green); }
  .mvv-vision  h4 { color: var(--brand-blue); }
  .mvv-values  h4 { color: var(--brand-navy); }
  .mvv-item p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 0; }
  .mvv-item ul, .mvv-item ol { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 0; padding-left: 18px; }
  .mvv-visual { position: relative; display: flex; flex-direction: column; }
  .mvv-img { width: 100%; flex: 1; border-radius: 20px; object-fit: cover; display: block; min-height: 400px; }
  .mvv-placeholder {
    width: 100%; aspect-ratio: 4/5; border-radius: 20px;
    background: var(--bg); border: 1px solid var(--line);
    display: grid; place-items: center;
  }
  .mvv-placeholder svg { width: 70%; height: 70%; }

  /* ─── CEO Message ─── */
  .ceo-message { margin-bottom: 32px; }
  .ceo-message p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.8; margin: 0 0 16px; }
  .ceo-message p:last-child { margin-bottom: 0; }
  .ceo-attribution { display: flex; align-items: center; gap: 16px; }
  .ceo-attr-line { width: 36px; height: 2px; background: var(--brand-green); flex-shrink: 0; }
  .ceo-name { font-weight: 600; font-size: 14px; color: var(--brand-navy); }
  .ceo-title { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }

  /* ─── Mission & Vision ─── */
  .mission-vision-section { padding: 80px 0; background: var(--bg); }
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .mv-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 16px; padding: 36px 32px;
  }
  .mv-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: color-mix(in oklab, var(--brand-navy) 7%, white);
    display: grid; place-items: center; margin-bottom: 20px;
    color: var(--brand-navy);
  }
  .mv-card h3 {
    font-family: var(--display); font-size: 22px; font-weight: 500;
    color: var(--brand-navy); margin: 0 0 14px; letter-spacing: -.01em;
  }
  .mv-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 0; }

  /* ─── Values ─── */
  .values-section {
    padding: 100px 0;
    background: var(--brand-navy);
    position: relative; overflow: hidden;
  }
  .values-section::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 100% 0%, color-mix(in oklab, var(--brand-blue) 35%, transparent) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 0% 100%, color-mix(in oklab, var(--brand-green) 18%, transparent) 0%, transparent 55%);
    pointer-events: none;
  }
  .values-section .wrap { position: relative; }
  .values-section .section-head h2 { color: white; }
  .values-section .section-head h2 em { color: color-mix(in oklab, var(--brand-green) 80%, white); font-weight: 300; }
  .values-section .eyebrow { color: color-mix(in oklab, var(--brand-green) 80%, white); }
  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0);
    border-radius: 20px;
    overflow: hidden;
  }
  .value-item {
    padding: 10px 25px;
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(255,255,255,0);
  }
  .value-check {
    width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--brand-green) 16%, transparent);
    border: 1px solid color-mix(in oklab, var(--brand-green) 40%, transparent);
    display: grid; place-items: center;
    color: var(--brand-green);
  }
  .value-item p {
    color: rgba(255,255,255,.72);
    font-size: 15px; line-height: 1.75; margin: 0;
  }

  /* ─── Full team grid ─── */
  .team-section { padding: 100px 0; background: var(--bg); }
  .team-grid { margin-top: 48px; }

  /* ─── Accreditations / Awards ─── */
  .accreditations-section { padding: 80px 0; background: var(--surface); }
  .accred-grid { margin-top: 48px; }
  .accred-card {
    border-radius: 16px; overflow: hidden;
    background: var(--bg);
    box-shadow: 0 2px 12px -4px rgba(15,35,80,.1);
    display: flex; flex-direction: column;
  }
  .accred-img {
    width: 100%; aspect-ratio: 4/3;
    background: var(--surface); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--line);
  }
  .accred-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .accred-body { padding: 20px 22px 24px; flex: 1; }
  .accred-body h4 {
    font-family: var(--display); font-size: 17px; font-weight: 500;
    color: var(--brand-navy); margin: 0 0 6px; letter-spacing: -0.01em;
  }
  .accred-body p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }

  /* ─── Service detail blocks ─── */
  .service-detail { padding: 96px 0; }
  .service-detail:nth-child(odd) { background: var(--bg); }
  .service-detail:nth-child(even) { background: var(--surface); }
  .service-detail .inner {
    display: flex; gap: 80px; align-items: center;
  }
  .service-detail.flip .inner { flex-direction: row-reverse; }
  .service-content { flex: 1; }
  .service-content h2 {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(30px, 3.5vw, 46px); line-height: 1.06;
    letter-spacing: -0.02em; color: var(--brand-navy); margin: 16px 0 18px;
  }
  .service-content h2 em { font-style: italic; color: var(--brand-blue); font-weight: 300; }
  .service-content p { color: var(--ink-soft); line-height: 1.7; font-size: 15.5px; margin: 0 0 14px; }
  .service-content p:last-of-type { margin-bottom: 0; }
  .service-features {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .service-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: var(--ink-soft); line-height: 1.55;
  }
  .service-features li .ck {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
    background: color-mix(in oklab, var(--brand-green) 14%, white);
    border: 1.5px solid var(--brand-green);
    display: grid; place-items: center; color: var(--brand-green);
  }
  .service-techniques { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
  .technique-pill {
    padding: 8px 16px; border-radius: 999px;
    background: var(--accent-2); color: var(--brand-blue);
    font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  }
  .service-visual {
    flex: 0 0 420px; border-radius: 24px; overflow: hidden;
    background: var(--brand-navy); aspect-ratio: 4/3;
    position: relative; display: flex; align-items: center; justify-content: center;
  }

  /* ─── Services overview grid ─── */
  .services-overview { padding: 100px 0; background: var(--brand-navy); color: white; position: relative; overflow: hidden; }
  .services-overview::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 100% 0%, color-mix(in oklab, var(--brand-blue) 60%, transparent) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 0% 100%, color-mix(in oklab, var(--brand-green) 35%, transparent) 0%, transparent 60%);
    opacity: .55; pointer-events: none;
  }
  .services-overview .wrap { position: relative; }
  .overview-grid { margin-top: 48px; }
  .overview-card {
    padding: 28px 26px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
    background: rgba(255,255,255,.03);
    display: flex; flex-direction: column; gap: 14px;
    text-decoration: none; color: white;
    transition: background .25s, border-color .25s, transform .2s;
  }
  .overview-card:hover { background: var(--brand-green); border-color: var(--brand-green); transform: translateY(-3px); }
  .overview-card .oc-ic {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,.08); display: grid; place-items: center;
    color: rgba(255,255,255,.8); transition: background .2s;
  }
  .overview-card:hover .oc-ic { background: rgba(255,255,255,.22); color: white; }
  .overview-card h3 {
    font-family: var(--display); font-size: 22px; font-weight: 500;
    color: white; letter-spacing: -0.01em; margin: 0;
  }
  .overview-card p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; margin: 0; flex: 1; }
  .overview-card .oc-link {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
    display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: .06em;
    transition: color .15s;
  }
  .overview-card:hover .oc-link { color: white; }

  /* ─── Process steps ─── */
  .process-section { padding: 80px 0; background: var(--surface); }
  .process-steps {
    margin-top: 48px; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 28px; left: 14%; right: 14%; height: 1px;
    background: var(--line);
  }
  .process-step { text-align: center; padding: 0 16px; position: relative; }
  .process-step .ps-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent-2); border: 2px solid var(--brand-blue);
    color: var(--brand-blue); font-family: var(--display); font-size: 22px; font-weight: 500;
    display: grid; place-items: center; margin: 0 auto 18px;
    position: relative; z-index: 1; background: var(--surface);
  }
  .process-step h4 {
    font-family: var(--display); font-size: 17px; font-weight: 500;
    color: var(--brand-navy); margin: 0 0 8px;
  }
  .process-step p { font-size: 13.5px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

  /* ─── Mobile hamburger button ─── */
  .menu-toggle {
    display: none;
    appearance: none; border: none; background: transparent;
    width: 40px; height: 40px; border-radius: 8px;
    color: var(--ink); cursor: pointer;
    align-items: center; justify-content: center; flex-shrink: 0;
    transition: background .15s, color .15s;
  }
  .menu-toggle:hover { background: var(--accent-2); color: var(--brand-blue); }
  .menu-toggle:active { background: color-mix(in oklab, var(--brand-blue) 12%, transparent); }

  /* Mobile nav overlay */
  .mobile-nav {
    display: none;
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 200;
    background: rgba(15,35,80,.45);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: var(--surface); padding: 24px 20px;
    display: flex; flex-direction: column; gap: 4px;
    overflow-y: auto;
    box-shadow: -16px 0 48px rgba(15,35,80,.18);
    animation: slideIn .25s cubic-bezier(.2,.7,.2,1);
  }
  @keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .mobile-nav-close {
    appearance: none; border: 1px solid var(--line); background: var(--bg);
    width: 36px; height: 36px; border-radius: 50%; color: var(--ink);
    display: grid; place-items: center; cursor: pointer;
    align-self: flex-end; margin-bottom: 12px;
    transition: background .15s;
  }
  .mobile-nav-close:hover { background: var(--accent-2); }
  .mobile-nav-panel a,
  .mobile-nav-panel .mn-services-toggle {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 14px; border-radius: 12px;
    color: var(--ink-soft); text-decoration: none;
    font-size: 15px; font-weight: 500;
    appearance: none; border: 0; background: transparent; width: 100%;
    cursor: pointer; font-family: inherit;
    transition: background .15s, color .15s;
  }
  .mobile-nav-panel a:hover,
  .mobile-nav-panel .mn-services-toggle:hover { background: var(--accent-2); color: var(--accent-ink); }
  .mobile-nav-panel a.active { background: var(--accent-2); color: var(--brand-navy); font-weight: 600; border-left: 3px solid var(--brand-navy); padding-left: 11px; }
  .mobile-nav-sub {
    list-style: none; margin: 0; padding: 0 0 0 14px;
    display: none; flex-direction: column; gap: 2px;
  }
  .mobile-nav-sub.open { display: flex; }
  .mobile-nav-sub li a {
    display: block; padding: 10px 14px; border-radius: 10px;
    font-size: 14px; font-weight: 500; color: var(--ink-soft);
    text-decoration: none; transition: background .15s, color .15s;
  }
  .mobile-nav-sub li a:hover { background: var(--accent-2); color: var(--brand-blue); }
  .mobile-nav-divider { height: 1px; background: var(--line); margin: 8px 0; }
  .mobile-nav-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 18px; border-radius: 999px;
    background: var(--brand-green); color: white !important;
    font-weight: 500; font-size: 14px; text-decoration: none; margin-top: 8px;
    transition: background .15s;
  }
  .mobile-nav-cta:hover { background: color-mix(in oklab, var(--brand-green) 88%, black) !important; }
  .mn-services-toggle svg { transition: transform .2s; }
  .mn-services-toggle svg.rotate-180 { transform: rotate(180deg); }

  /* ─── Responsive — tablet (≤ 980px) ─── */
  @media (max-width: 980px) {
    .wrap { padding-left: 20px; padding-right: 20px; }

    /* Nav */
    .topbar .meta { display: none; }
    nav.primary, .nav-appt-cta { display: none; }
    .menu-toggle { display: inline-flex; }

    /* Hero */
    .hero-slider { height: 100dvh; min-height: 520px; }
    .hero-title { font-size: clamp(36px, 6vw, 60px); }
    .hero-lede { font-size: 16px; }

    /* Appointment box */
    .appt { grid-template-columns: 1fr; }
    .appt-side { padding: 36px 28px; }
    .appt-form { padding: 36px 28px; }
    .appt-form .grid { grid-template-columns: 1fr; }

    /* News homepage */
    .news-head { grid-template-columns: 1fr; gap: 16px; }
    .docs-head { flex-wrap: wrap; gap: 12px; }
    .docs-title-row { flex-wrap: wrap; }

    /* Docs carousel — 2 per page at tablet */
    .doc { flex: 0 0 calc((100% - 20px) / 2); }

    /* Service detail */
    .service-detail .inner,
    .service-detail.flip .inner { flex-direction: column; gap: 48px; }
    .service-visual { flex: 0 0 auto; width: 100%; max-height: 280px; }

    /* Timeline */
    .timeline-item .t-year { font-size: 26px; }

    /* Service doc featured */
    .service-doc-card.featured { flex-direction: column; padding: 32px 24px; }

    /* Contact page */
    .contact-form .two-col { grid-template-columns: 1fr; }

    /* News page */

    /* Footer CTA */
    .foot-cta .wrap { grid-template-columns: 1fr; gap: 20px; }

    /* About/services section spacing */
    .about .wrap, .services-head { gap: 36px; }

    /* About image — collapse to single column */
    .about-inner.has-image { grid-template-columns: 1fr; gap: 44px; }
    .about-image-col { position: static; }
    .mvv-layout { grid-template-columns: 1fr; gap: 40px; }
    .mvv-visual { order: -1; flex-direction: row; }
    .mvv-img { flex: none; min-height: auto; }
    .mvv-placeholder { aspect-ratio: 3/2; }
    .about-img { height: 320px; }
    /* values-grid stays 2-col on tablet — no change needed */
    .mv-grid { grid-template-columns: 1fr; gap: 16px; }
  }

  /* ─── Responsive — mobile (≤ 640px) ─── */
  @media (max-width: 640px) {
    .wrap { padding-left: 16px; padding-right: 16px; }

    /* Hero */
    .hero-slider { height: 100dvh; min-height: 480px; }
    .hero-title { font-size: clamp(30px, 8vw, 48px); max-width: 20ch; }
    .hero-lede { font-size: 15px; max-width: 100%; }
    .hero-controls { bottom: 20px; }

    /* Values grid — single column on mobile */
    .values-grid { grid-template-columns: 1fr; border-radius: 14px; }
    .value-item { padding: 24px 22px; }

    /* Page hero */
    .page-hero { padding: calc(52px + var(--nav-h)) 0 64px; }
    .page-hero h1 { font-size: clamp(30px, 8vw, 48px); }
    .page-hero p { font-size: 15px; }

    /* About image — smaller on mobile */
    .about-img { height: 240px; }

    /* Quick links */
    .quicklinks { padding: 40px 0 44px; }

    /* Appointment */
    .appt { border-radius: 18px; }
    .appt-side { padding: 28px 20px; }
    .appt-form { padding: 28px 20px; }
    .appt-form .grid { grid-template-columns: 1fr; gap: 14px; }
    .appt-side h2 { font-size: 30px; }

    /* Docs — go single column */
    .doc { flex: 0 0 calc(100%); }

    /* Contact strip */
    .contact-strip .wrap { grid-template-columns: 1fr; gap: 20px; }

    /* Contact page — mobile */
    .contact-section { padding: 48px 0 56px; }
    .contact-grid { margin-top: 20px; border-radius: 16px; }
    .contact-info-panel { padding: 28px 20px; }
    .contact-form-card { padding: 28px 20px; }
    .cip-head { margin-bottom: 24px; }
    .cip-head h3 { font-size: clamp(18px, 5vw, 22px); }
    .contact-form-card h3 { font-size: clamp(18px, 5vw, 22px); }
    .contact-form-card .sub { font-size: 14px; margin-bottom: 24px; }
    .contact-info-item { padding: 16px 0; gap: 12px; }
    .contact-info-item .ci-ic { width: 36px; height: 36px; }
    .contact-info-item a, .contact-info-item p { font-size: 13.5px; overflow-wrap: break-word; word-break: break-word; }
    .map-section { height: 220px; }

    /* Timeline — year stacked above content */
    .timeline-item {
      grid-template-columns: 20px 1fr;
      grid-template-rows: auto 1fr;
      column-gap: 14px;
      padding-bottom: 36px;
    }
    .timeline-item .t-year {
      grid-column: 2; grid-row: 1;
      font-size: 18px; font-weight: 600;
      text-align: left; color: var(--brand-green);
      padding-bottom: 4px;
    }
    .timeline-item .t-line { grid-column: 1; grid-row: 1 / 3; }
    .timeline-item .t-body { grid-column: 2; grid-row: 2; }

    /* Footer */
    .foot-cta { padding: 40px 0 36px; }
    .foot-cta h3 { font-size: clamp(22px, 6vw, 32px); }
    .foot-cta .actions { flex-direction: row; gap: 8px; }
    .foot-cta .actions .cta { flex: 1 1 0; min-width: 0; justify-content: center; text-align: center; padding-left: 12px; padding-right: 12px; }
    .foot-grid { padding: 40px 0 32px; }
    /* Explore + Get in touch: 50/50 on mobile */
    .foot-grid .col-md-2 { flex: 0 0 50%; max-width: 50%; }

    /* Section padding */
    section.about, section.services, section.appointment,
    section.doctors, section.news, section.tour-banner { padding: 64px 0; }
    .service-detail { padding: 64px 0; }
    .mvv-section, .mission-vision-section, .values-section, .team-section, .timeline-section,
    .accreditations-section, .doctors-section,
    .techniques-section, .uses-section, .process-section,
    .equipment-section, .tumor-board-note, .service-doc-section,
    .news-grid-section, .contact-section { padding: 64px 0; }

    /* Service cards */
    .scard { padding: 28px 24px 24px; border-radius: 22px; }

    /* Docs carousel — full width on mobile */
    .doc { flex: 0 0 calc(100%); }
    .docs-head { margin-bottom: 36px; }

    /* Quicklinks thumbnails */
    .ql-thumb { border-radius: 10px; }

    /* Misc */
    .modal .body { flex-direction: column; gap: 10px; }
    .section-head h2, .docs-title-row h2 { font-size: clamp(28px, 7vw, 40px); }
    .submit-row { flex-direction: column; align-items: stretch; }
    .submit-row .cta { justify-content: center; }
    .foot-cta .wrap { padding-top: 40px; padding-bottom: 36px; }
    .dr-modal { border-radius: 16px; }
  }

  /* ─── Doctor profile cards (doctors.html) ─── */
  .doctors-section { padding: 100px 0; background: var(--bg); }
  .dp-grid { margin-top: 56px; }
  .dp-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
    overflow: hidden; transition: transform .2s, box-shadow .2s;
  }
  .dp-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -24px rgba(15,35,80,.18); }
  .dp-card .dp-pic { aspect-ratio: 4/3; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .dp-card .dp-dept {
    position: absolute; top: 16px; left: 16px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(15,35,80,.65); color: white; backdrop-filter: blur(8px);
    font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  }
  .dp-card .dp-body { padding: 26px; }
  .dp-card .dp-role { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-blue); font-weight: 600; margin-bottom: 4px; }
  .dp-card .dp-name { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--brand-navy); letter-spacing: -.01em; margin: 0 0 4px; }
  .dp-card .dp-spec { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 16px; }
  .dp-card .dp-bio { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 22px; }
  .dp-card .dp-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--brand-blue); text-decoration: none; }
  .dp-card .dp-cta svg { transition: transform .15s; }
  .dp-card .dp-cta:hover svg { transform: translateX(3px); }

  /* ─── Doctor modal ─── */
  .dr-modal-overlay {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1000;
    background: rgba(10,20,50,.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s, visibility 0s .25s;
  }
  .dr-modal-overlay.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: opacity .25s;
  }
  .dr-modal {
    background: var(--surface); border-radius: 24px;
    overflow: hidden; position: relative;
    width: 100%; max-width: 960px; max-height: 68vh;
    box-shadow: 0 32px 80px -24px rgba(10,20,50,.35);
    transform: translateY(16px);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    display: flex; flex-direction: column;
  }
  .dr-modal-overlay.open .dr-modal { transform: translateY(0); }
  .dr-modal-close {
    position: absolute; top: 16px; right: 16px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.9); border: none;
    display: grid; place-items: center; cursor: pointer;
    color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.12);
    transition: background .15s;
  }
  .dr-modal-close:hover { background: white; }
  .dr-modal-inner {
    display: flex; flex: 1; min-height: 0; overflow: hidden;
  }
  .dr-modal-photo {
    flex-shrink: 0;
    background: linear-gradient(135deg,#c9b696,#9a8662);
    overflow: hidden; display: flex; align-items: flex-end;
    background: white !important;
  }
  .dr-modal-photo img {
    height: auto; width: auto;
    display: block; max-width: 420px; max-height: 68vh;
  }
  .dr-modal-photo .silhouette { width: 220px; position: relative; }
  .dr-modal-body {
    flex: 1; min-width: 0;
    padding: 44px 40px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 10px;
  }
  .dr-modal-role {
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--brand-blue);
  }
  .dr-modal-name {
    font-family: var(--display); font-size: clamp(22px, 3vw, 30px); font-weight: 400;
    color: var(--brand-navy); margin: 0; letter-spacing: -.02em; line-height: 1.1;
  }
  .dr-modal-spec { font-size: 15px; color: var(--ink-soft); }
  .dr-modal-meta {
    font-size: 13px; color: var(--ink-mute);
    padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    margin: 4px 0;
  }
  .dr-modal-langs { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-mute); margin-bottom: 16px; }
  .dr-modal-langs svg { flex-shrink: 0; opacity: .7; }
  .dr-modal-bio { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin: 0; flex: 1; }
  .dr-modal-bio p { margin: 0 0 .6em; }
  .dr-modal-bio ul, .dr-modal-bio ol { padding-left: 1.4em; margin: 0 0 .6em; }
  .dr-modal-actions { margin-top: auto; padding-top: 24px; display: flex; justify-content: flex-end; }
  @media (max-width: 640px) {
    .dr-modal { max-height: 92vh; overflow-y: auto; display: block; }
    .dr-modal-inner { flex-direction: column; overflow: visible; }
    .dr-modal-photo { width: 100%; height: auto; max-height: none; align-items: flex-start; }
    .dr-modal-photo img { width: 100%; height: auto; max-width: 100%; }
    .dr-modal-body { padding: 24px 20px; }
  }

  /* ─── Service doctor feature ─── */
  .service-doc-section { padding: 80px 0; background: var(--surface); }
  .service-doc-grid { margin-top: 48px; }
  .service-doc-card {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 32px; border: 1px solid var(--line); border-radius: 22px;
    background: var(--bg);
  }
  .service-doc-card.featured {
    grid-column: 1 / -1; gap: 40px; align-items: center;
    padding: 44px 48px;
  }
  .sd-pic {
    flex-shrink: 0; width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
    position: relative; display: grid; place-items: center;
  }
  .service-doc-card.featured .sd-pic { width: 130px; height: 130px; }
  .sd-role { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-blue); font-weight: 600; margin-bottom: 4px; }
  .sd-name { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--brand-navy); letter-spacing: -.01em; margin: 0 0 4px; }
  .service-doc-card.featured .sd-name { font-size: 28px; }
  .sd-spec { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 12px; }
  .sd-bio { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin: 0; }

  /* ─── Technique cards ─── */
  .techniques-section { padding: 80px 0; background: var(--surface); }
  .tech-grid { margin-top: 48px; }
  .tech-card {
    padding: 36px 30px; border: 1px solid var(--line); border-radius: 20px;
    background: var(--bg); position: relative; overflow: hidden;
  }
  .tech-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--brand-blue);
  }
  .tech-card:nth-child(2)::before { background: var(--brand-green); }
  .tech-card:nth-child(3)::before { background: var(--warm); }
  .tech-card .tc-abbr {
    font-family: var(--display); font-size: 42px; font-weight: 500;
    color: var(--brand-navy); letter-spacing: -.02em; line-height: 1; margin-bottom: 4px;
  }
  .tech-card .tc-full { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 20px; display: block; }
  .tech-card:nth-child(2) .tc-full { color: var(--brand-green); }
  .tech-card:nth-child(3) .tc-full { color: var(--warm); }
  .tech-card h3 { font-family: var(--display); font-size: 20px; font-weight: 500; color: var(--brand-navy); margin: 0 0 12px; }
  .tech-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

  /* ─── Uses/benefits grid ─── */
  .uses-section { padding: 80px 0; background: var(--bg); }
  .uses-grid { margin-top: 48px; }
  .use-card {
    padding: 28px 26px; border: 1px solid var(--line); border-radius: 18px;
    background: var(--surface); display: flex; gap: 18px; align-items: flex-start;
  }
  .use-card .u-ic {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: var(--accent-2); display: grid; place-items: center; color: var(--brand-blue);
  }
  .use-card .u-body h3 { font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--brand-navy); margin: 0 0 6px; letter-spacing: -.01em; }
  .use-card .u-body p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }

  /* ─── News page ─── */
  .news-grid-section { padding: 80px 0; background: var(--bg); }
  .news-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: transform .2s, box-shadow .2s;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -20px rgba(15,35,80,.15); }
  .news-card-img {
    aspect-ratio: 16/9; overflow: hidden; background: var(--surface);
    display: flex; align-items: center; justify-content: center;
  }
  .news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
  .news-card:hover .news-card-img img { transform: scale(1.05); }
  .news-card-placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--surface), #e2e8f0); }
  .news-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
  .news-card-cat { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 10px; display: block; }
  .news-card-body h3 { font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--brand-navy); line-height: 1.3; margin: 0 0 10px; letter-spacing: -.01em; transition: color .15s; }
  .news-card:hover .news-card-body h3 { color: var(--brand-blue); }
  .news-card-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 18px; flex: 1; }
  .news-card-meta { font-size: 12px; color: var(--ink-mute); display: flex; gap: 6px; margin-top: auto; }
  .news-card-author { color: var(--ink-soft); font-weight: 600; }

  /* ─── Contact page ─── */
  .contact-section { padding: 100px 0; background: var(--bg); }
  .contact-grid {
    display: flex; flex-direction: column;
    margin-top: 56px;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 8px 48px -16px rgba(10,20,50,.14);
  }
  @media (min-width: 981px) {
    .contact-grid { flex-direction: row; align-items: stretch; }
    .contact-info-panel { flex: 1; }
    .contact-form-card { flex: 1.7; }
  }
  .contact-form .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  /* ── Left info panel ── */
  .contact-info-panel {
    background: var(--brand-navy); padding: 52px 44px;
    display: flex; flex-direction: column;
  }
  .cip-head { margin-bottom: 36px; }
  .cip-head h3 {
    font-family: var(--display); font-size: 26px; font-weight: 400;
    color: white; margin: 0 0 10px; letter-spacing: -.02em; line-height: 1.15;
  }
  .cip-head p { color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.6; margin: 0; }
  .contact-info-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1);
  }
  .contact-info-item > div:last-child { min-width: 0; flex: 1; overflow-wrap: break-word; word-break: break-word; }
  .contact-info-item .ci-ic {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: rgba(255,255,255,.1); display: grid; place-items: center;
    color: var(--brand-green);
  }
  .contact-info-item h4 {
    font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin: 0 0 6px;
  }
  .contact-info-item p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.65; margin: 0; }
  .contact-info-item a { font-size: 14px; color: rgba(255,255,255,.8); text-decoration: none; display: block; line-height: 1.65; }
  .contact-info-item a:hover { color: white; }
  .contact-info-item .ci-note { font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 4px; }

  /* ── Right form card ── */
  .contact-form-card { background: var(--surface); padding: 52px 48px; }
  .contact-form-card h3 { font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--brand-navy); margin: 0 0 6px; letter-spacing: -.01em; }
  .contact-form-card .sub { color: var(--ink-soft); font-size: 15px; margin: 0 0 36px; line-height: 1.55; }
  .contact-form { display: flex; flex-direction: column; gap: 18px; }
  .map-section {
    background: var(--brand-navy); height: 380px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .map-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, color-mix(in oklab, var(--brand-blue) 40%, transparent), transparent 70%);
  }
  .map-placeholder { text-align: center; color: rgba(255,255,255,.5); position: relative; }
  .map-placeholder svg { margin-bottom: 16px; color: rgba(255,255,255,.35); }
  .map-placeholder h4 { font-family: var(--display); font-size: 22px; color: white; margin: 0 0 8px; }
  .map-placeholder p { font-size: 14px; margin: 0 0 16px; }
  .map-placeholder a { color: var(--brand-green); font-weight: 600; text-decoration: none; }

  /* ─── Background utilities ─── */
  .bg-navy { background: var(--brand-navy); }
  .bg-surface { background: var(--surface); }
  .bg-bg { background: var(--bg); }

  /* ─── Section spacing ─── */
  .section-xl { padding: 100px 0; }
  .section-lg { padding: 80px 0; }
  .section-md { padding: 64px 0; }

  /* ─── Section head modifiers ─── */
  .section-head--centered { text-align: center; margin-left: auto; margin-right: auto; }
  .section-head--light h2 { color: white; }
  .section-head--light h2 em { color: color-mix(in oklab, var(--brand-green) 70%, white); font-weight: 300; }
  .section-head--light .eyebrow { color: color-mix(in oklab, var(--brand-green) 80%, white); }
  .section-head--light > p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.65; margin-top: 0; }
  .section-head--wide { max-width: 640px; }
  .section-head--narrow { max-width: 540px; }

  /* ─── Equipment section (radiotherapy) ─── */
  .equipment-section { padding: 80px 0; background: var(--brand-navy); color: white; position: relative; overflow: hidden; }
  .equipment-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 0%, color-mix(in oklab, var(--brand-blue) 50%, transparent) 0%, transparent 60%); pointer-events: none; }
  .equipment-section .wrap { position: relative; }
  .equip-stat { padding: 22px 26px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.04); }
  .equip-stat .es-val { font-family: var(--display); font-size: 32px; font-weight: 500; color: white; letter-spacing: -.02em; line-height: 1; }
  .equip-stat .es-val em { font-style: normal; color: var(--brand-green); font-size: 22px; }
  .equip-stat .es-lbl { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }
  .equip-pills-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
  .equip-pill { display: inline-flex; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.1); color: white; font-size: 12px; font-weight: 600; letter-spacing: .06em; }

  /* ─── Tumor board note (doctors page) ─── */
  .tumor-board-note { padding: 80px 0; background: var(--surface); }
  .tumor-board-note .inner { max-width: 820px; margin: 0 auto; text-align: center; }
  .tumor-board-note h2 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 3.5vw, 44px); color: var(--brand-navy); letter-spacing: -.02em; margin: 16px 0 18px; line-height: 1.07; }
  .tumor-board-note h2 em { font-style: italic; color: var(--brand-blue); font-weight: 300; }
  .tumor-board-note p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 36px; }

  /* ─── Dark inline section (services/about dark headings) ─── */
  .dark-h2 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 3.5vw, 46px); line-height: 1.06; letter-spacing: -.02em; color: white; margin: 16px 0 18px; }
  .dark-h2 em { font-style: italic; color: color-mix(in oklab, var(--brand-green) 70%, white); font-weight: 300; }
  .dark-p { color: rgba(255,255,255,.75); line-height: 1.7; font-size: 15.5px; }

  /* ─── Grid helpers ─── */
  .mt-section-grid { margin-top: 48px; }
  .mt-mission { margin-top: 48px; }
  .foot-grid { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.1); }

  /* ─── Service detail — other services strip ─── */
  .svc-nav-strip { padding: 60px 0; background: var(--surface); border-top: 1px solid var(--line); }
  .svc-nav-head { margin-bottom: 28px; }
  .svc-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
  .svc-nav-card {
    display: flex; flex-direction: column; gap: 4px;
    padding: 18px 20px; border-radius: 12px;
    border: 1px solid var(--line); background: var(--bg);
    text-decoration: none; transition: all .15s;
    position: relative;
  }
  .svc-nav-card:hover { border-color: var(--brand-blue); background: #f0f5ff; }
  .svc-nav-card.current { border-color: var(--brand-navy); background: var(--brand-navy); cursor: default; pointer-events: none; }
  .snc-eyebrow { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-green); font-weight: 600; }
  .svc-nav-card.current .snc-eyebrow { color: rgba(255,255,255,.6); }
  .snc-title { font-size: 13.5px; font-weight: 600; color: var(--brand-navy); line-height: 1.3; }
  .svc-nav-card.current .snc-title { color: white; }
  .snc-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--brand-blue); opacity: .6; }

  /* ─── News article detail ─── */
  .news-article-body { padding: 72px 0 96px; background: var(--bg); }
  .news-article-body .article-content h2,
  .news-article-body .article-content h3 { font-family: var(--display); font-weight: 500; color: var(--brand-navy); margin: 2em 0 .75em; }
  .news-article-body .article-content h2 { font-size: clamp(22px, 2.4vw, 28px); }
  .news-article-body .article-content h3 { font-size: clamp(18px, 2vw, 22px); }
  .news-article-body .article-content p { margin-bottom: 1.4em; }
  .news-article-body .article-content ul,
  .news-article-body .article-content ol { margin: 0 0 1.4em 1.6em; }
  .news-article-body .article-content li { margin-bottom: .5em; }
  .news-article-body .article-content blockquote { border-left: 3px solid var(--brand-blue); padding-left: 20px; margin: 1.6em 0; font-style: italic; color: var(--ink-soft); }

  /* ═══════════════════════════════════════════════════════════
     GALLERY PAGE — redesigned
  ═══════════════════════════════════════════════════════════ */

  .gallery-section {
    background: var(--bg);
    padding-bottom: 100px;
  }

  /* ── Tab filter bar ── */
  .gallery-tab-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 72px; z-index: 40;
  }
  .gallery-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gt-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 22px;
    background: none; border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1px;
    font-size: 13.5px; font-weight: 500; font-family: inherit;
    color: var(--ink-mute);
    cursor: pointer;
    white-space: nowrap;
    transition: color .18s, border-color .18s;
  }
  .gt-tab:hover { color: var(--brand-navy); }
  .gt-tab.active {
    color: var(--brand-navy);
    border-bottom-color: var(--brand-navy);
    font-weight: 600;
  }
  .gt-badge {
    font-size: 10.5px; font-weight: 700;
    line-height: 1;
    padding: 3px 7px; border-radius: 999px;
    background: var(--line); color: var(--ink-mute);
    transition: background .18s, color .18s;
  }
  .gt-tab.active .gt-badge {
    background: var(--brand-navy); color: white;
  }

  /* ── Body spacing ── */
  .gallery-body { padding-top: 56px; }

  /* ── Empty state ── */
  .gallery-empty {
    text-align: center; padding: 100px 0; color: var(--ink-mute);
  }
  .ge-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--surface); border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; opacity: .6;
  }
  .gallery-empty p { font-size: 15px; margin: 0; }

  /* ── Masonry grid ── */
  .gallery-masonry {
    columns: 3;
    column-gap: 18px;
  }

  .gi-card {
    position: relative;
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--line);
    display: block;
    transition: transform .35s cubic-bezier(.2,.8,.2,1),
                box-shadow .35s cubic-bezier(.2,.8,.2,1);
  }
  .gi-card:hover,
  .gi-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(15,35,80,.18);
    outline: none;
  }

  .gi-card img {
    width: 100%; height: auto;
    display: block;
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
  }
  .gi-card:hover img,
  .gi-card:focus-visible img { transform: scale(1.04); }

  /* Category pill (top-left) */
  .gi-cat {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(255,255,255,.9);
    color: var(--brand-navy);
    padding: 4px 10px; border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    line-height: 1;
  }

  /* Hover overlay */
  .gi-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
      rgba(8,18,48,.88) 0%,
      rgba(8,18,48,.4) 45%,
      transparent 70%);
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 18px 18px 20px;
    gap: 10px;
    opacity: 0;
    transition: opacity .28s;
  }
  .gi-card:hover .gi-overlay,
  .gi-card:focus-visible .gi-overlay { opacity: 1; }

  .gi-overlay-inner {
    flex: 1 1 0; min-width: 0;
    display: flex; flex-direction: column; gap: 3px;
  }
  .gi-title {
    color: white; font-size: 13px; font-weight: 600;
    line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .gi-caption {
    color: rgba(255,255,255,.65); font-size: 11.5px; line-height: 1.4;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* Expand icon (bottom-right) */
  .gi-expand {
    flex-shrink: 0;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .18s;
  }
  .gi-card:hover .gi-expand { background: rgba(255,255,255,.28); }

  /* ── Responsive masonry ── */
  @media (max-width: 1024px) {
    .gallery-masonry { columns: 2; column-gap: 14px; }
    .gi-card { margin-bottom: 14px; }
  }
  @media (max-width: 540px) {
    .gallery-masonry { columns: 1; }
    .gallery-tab-bar { top: 60px; }
  }

  /* ═══════════════════════════════════════════════════════════
     LIGHTBOX — redesigned
  ═══════════════════════════════════════════════════════════ */

  .lb-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(5, 10, 28, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 900;
    transition: opacity .2s;
  }
  .lb-backdrop.open { display: block; }

  .lb-shell {
    display: none; position: fixed; inset: 0; z-index: 901;
    flex-direction: column;
    align-items: center; justify-content: center;
    padding: 24px 16px 0;
  }
  .lb-shell.open { display: flex; }

  /* Close button */
  .lb-close {
    position: fixed; top: 20px; right: 24px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: white; cursor: pointer; z-index: 902;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, transform .15s;
  }
  .lb-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }

  /* Stage: prev | image | next */
  .lb-stage {
    display: flex; align-items: center; gap: 16px;
    width: 100%; max-width: min(92vw, 1160px);
    flex: 1 1 auto;
    min-height: 0;
  }

  .lb-nav {
    flex-shrink: 0;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, transform .15s;
  }
  .lb-nav:disabled { opacity: .2; cursor: default; transform: none; }
  .lb-nav:not(:disabled):hover {
    background: rgba(255,255,255,.2);
    transform: scale(1.1);
  }

  .lb-img-wrap {
    flex: 1 1 auto; min-width: 0;
    display: flex; align-items: center; justify-content: center;
    max-height: calc(100vh - 160px);
    overflow: hidden;
  }
  .lb-img-wrap img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 8px;
    display: block;
    opacity: 0; transition: opacity .3s ease;
    box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
  }
  .lb-img-wrap img.loaded { opacity: 1; }

  /* Info bar below the stage */
  .lb-bar {
    width: 100%; max-width: min(92vw, 1160px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0 20px;
    gap: 16px;
    flex-shrink: 0;
  }
  .lb-bar-info {
    display: flex; flex-direction: column; gap: 3px;
    min-width: 0; flex: 1;
  }
  .lb-bar-title {
    color: white; font-size: 14px; font-weight: 600;
    line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .lb-bar-caption {
    color: rgba(255,255,255,.5); font-size: 12.5px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .lb-bar-counter {
    flex-shrink: 0;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 5px 14px; border-radius: 999px;
    white-space: nowrap;
  }

  @media (max-width: 640px) {
    .lb-nav { width: 38px; height: 38px; }
    .lb-stage { gap: 10px; }
  }

  @media (max-width: 980px) {
    .contact-form .two-col { grid-template-columns: 1fr; }
  }

  /* ─── Section-builder blocks (public rendering) ─────────────── */
  .sb-wrap {}
  .sb-block { margin-bottom: 40px; }
  .sb-block:last-child { margin-bottom: 0; }

  /* Text */
  .sb-text { font-size: 16px; line-height: 1.8; color: var(--ink-soft); }
  .sb-text p { margin-bottom: 1rem; }
  .sb-text h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 16px; color: var(--ink); }
  .sb-text h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
  .sb-text ul, .sb-text ol { padding-left: 24px; margin-bottom: 1rem; }
  .sb-text li { margin-bottom: 6px; }
  .sb-text strong { color: var(--ink); }
  .sb-text a { color: var(--brand-blue); }

  /* Heading */
  .sb-heading { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--ink); line-height: 1.2; margin-bottom: 0; }
  h3.sb-heading { font-size: 24px; }

  /* Feature list */
  .sb-feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .sb-feature-item { background: var(--surface); border-radius: 14px; padding: 24px; border: 1px solid var(--line); }
  .sb-feature-item h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .sb-feature-item p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

  /* Callout */
  .sb-callout { border-radius: 14px; padding: 24px 28px; }
  .sb-callout--info    { background: rgba(46,111,219,.07); border-left: 4px solid var(--brand-blue); }
  .sb-callout--tip     { background: rgba(63,174,90,.07);  border-left: 4px solid var(--brand-green); }
  .sb-callout--warning { background: rgba(245,158,11,.07); border-left: 4px solid #f59e0b; }
  .sb-callout-title { font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 8px; }
  .sb-callout-body  { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }
  .sb-callout-body p { margin-bottom: .5rem; }

  /* Stats */
  .sb-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 24px; }
  .sb-stat { text-align: center; }
  .sb-stat-num   { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--brand-blue); line-height: 1; margin-bottom: 8px; }
  .sb-stat-label { font-size: 13px; color: var(--ink-mute); line-height: 1.4; }

  /* Two column */
  .sb-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
  .sb-col { font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
  .sb-col p  { margin-bottom: 1rem; }
  .sb-col h3, .sb-col h4 { color: var(--ink); margin-bottom: 8px; }
  .sb-col ul, .sb-col ol { padding-left: 20px; margin-bottom: 1rem; }

  /* Video thumbnail */
  .sb-video-thumb { display: block; text-decoration: none; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(15,35,80,.12); transition: box-shadow .35s, transform .35s; }
  .sb-video-thumb:hover { box-shadow: 0 14px 44px rgba(15,35,80,.22); transform: translateY(-4px); }
  .sb-vt-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
  .sb-vt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; display: block; }
  .sb-video-thumb:hover .sb-vt-img img { transform: scale(1.04); }
  .sb-vt-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.2); transition: background .25s; }
  .sb-video-thumb:hover .sb-vt-play { background: rgba(0,0,0,.38); }
  .sb-vt-play-btn { width: 76px; height: 76px; background: rgba(255,255,255,.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 28px rgba(0,0,0,.32); transition: transform .25s, box-shadow .25s; }
  .sb-video-thumb:hover .sb-vt-play-btn { transform: scale(1.12); box-shadow: 0 8px 36px rgba(0,0,0,.42); }
  .sb-vt-play-btn svg { transform: translateX(3px); }
  .sb-vt-caption { padding: 14px 20px 16px; background: var(--surface); font-size: 14px; font-weight: 500; color: var(--ink); }

  @media (max-width: 700px) {
    .sb-two-col { grid-template-columns: 1fr; }
    .sb-stat-num { font-size: 36px; }
    .sb-heading  { font-size: 26px; }
    .sb-vt-play-btn { width: 56px; height: 56px; }
  }

