/* ============================================================
   UTOPIA PLASTIC SURGERY & MEDSPA — Luxury Rebuild
   Palette derived from brand logo: Navy #243C84 + Gold #786030
   Designed & developed by Novelio Technologies — 2026
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — navy */
  --navy:        #1C2E5A;
  --navy-mid:    #22366F;
  --navy-deep:   #0D1730;
  --navy-ink:    #0A1226;

  /* Brand — gold / champagne */
  --gold:        #B08D4F;
  --gold-soft:   #C9A868;
  --gold-light:  #E4CD9A;
  --gold-glow:   rgba(176, 141, 79, 0.35);

  /* Neutrals */
  --cream:       #F8F4EC;
  --ivory:       #FCFAF5;
  --surface:     #FFFFFF;
  --text:        #16233F;
  --text-soft:   #4A566E;
  --muted:       #7A8397;
  --border:      #E7E1D4;
  --border-soft: rgba(28, 46, 90, 0.08);

  /* Glass */
  --glass-bg:    rgba(255, 255, 255, 0.65);
  --glass-brd:   rgba(255, 255, 255, 0.55);
  --glass-dark:  rgba(13, 23, 48, 0.55);

  /* Shadows (multi-layer, luxe depth) */
  --sh-sm:  0 1px 2px rgba(13,23,48,.05), 0 2px 6px rgba(13,23,48,.06);
  --sh-md:  0 4px 10px rgba(13,23,48,.06), 0 12px 28px rgba(13,23,48,.09);
  --sh-lg:  0 10px 24px rgba(13,23,48,.08), 0 30px 60px rgba(13,23,48,.14);
  --sh-gold: 0 10px 30px rgba(176,141,79,.30);

  /* Type */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Jost', 'Segoe UI', sans-serif;

  /* Layout */
  --wrap: 1220px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* z-index scale */
  --z-topbar: 40;
  --z-header: 50;
  --z-sticky: 60;
  --z-modal: 90;
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.12; color: var(--navy); letter-spacing: -.01em; }
::selection { background: var(--gold); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 78px 0; }
.center { text-align: center; }

/* ---------- Reusable atoms ---------- */
.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }

.h-xl { font-size: clamp(2.6rem, 6vw, 5rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.lead { font-size: 1.14rem; color: var(--text-soft); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.gold-text { color: var(--gold); }
.serif-italic { font-style: italic; font-weight: 400; }

.divider-gold { width: 64px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 22px 0; }
.center .divider-gold { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff; box-shadow: var(--sh-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(176,141,79,.42); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--sh-md); }
.btn--navy:hover { transform: translateY(-3px); background: var(--navy-mid); }
.btn--ghost { border: 1px solid var(--border); color: var(--navy); background: rgba(255,255,255,.6); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep); color: rgba(255,255,255,.82);
  font-size: 13.5px; position: relative; z-index: var(--z-topbar);
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.topbar a { color: rgba(255,255,255,.82); transition: color .25s; }
.topbar a:hover { color: var(--gold-light); }
.topbar__left { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--gold); }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social a { display: inline-flex; }
.topbar__social svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(252,250,245,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .4s var(--ease), background .4s;
}
.header.scrolled { box-shadow: var(--sh-md); background: rgba(252,250,245,.94); }
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; transition: padding .4s var(--ease); }
.header.scrolled .header__in { padding: 7px 0; }
.brand img { height: 46px; width: auto; transition: transform .4s var(--ease), height .4s var(--ease); }
.header.scrolled .brand img { height: 38px; }
.brand:hover img { transform: scale(1.04); }
.nav { display: flex; align-items: center; gap: 1px; }
.nav > a, .has-drop > a {
  padding: 9px 11px; font-size: .87rem; font-weight: 500; color: var(--navy);
  border-radius: 8px; position: relative; transition: color .25s; white-space: nowrap;
}
.has-drop > a::after, .nav > a::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 5px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.has-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.has-drop > a::before {
  content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
  order: 2; opacity: .55; transition: transform .3s;
}
.has-drop:hover > a::before { transform: rotate(45deg) translateY(0); opacity: .9; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: 12px; }

/* phone number — revealed only once the page is scrolled */
.header__phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .88rem; font-weight: 600; color: var(--navy); white-space: nowrap;
  max-width: 0; opacity: 0; overflow: hidden; transform: translateX(10px);
  pointer-events: none;
  transition: max-width .45s var(--ease), opacity .35s, transform .45s var(--ease), color .25s;
}
.header__phone svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.header.scrolled .header__phone {
  max-width: 200px; opacity: 1; transform: none; pointer-events: auto;
}
.header__phone:hover { color: var(--gold); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--sh-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 14px; border-radius: 8px; font-size: .9rem; }
.drop a::after { display: none; }
.drop a:hover { background: var(--cream); color: var(--gold); }

/* multi-column mega dropdowns */
.drop--mega { display: grid; grid-template-columns: repeat(3, minmax(148px,1fr)); gap: 2px 14px;
  min-width: 620px; padding: 16px; }
.drop--two { display: grid; grid-template-columns: repeat(2, minmax(158px,1fr)); gap: 2px 12px;
  min-width: 380px; padding: 14px; }
.drop__col h5 { margin: 0 0 2px; padding: 8px 14px 6px; }
.drop__col h5 a { font-family: var(--f-display); font-size: 1rem; color: var(--navy);
  padding: 0; border-bottom: 1px solid var(--border); display: block; padding-bottom: 8px; }
.drop__col h5 a:hover { background: none; color: var(--gold); }
.drop--mega a, .drop--two a { padding: 8px 14px; font-size: .86rem; }

/* burger */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--border); background: #fff; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--navy);
  transition: all .3s var(--ease); }
.burger span:nth-child(1){ top: 16px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 28px; }
.burger.open span:nth-child(1){ top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ top: 22px; transform: rotate(-45deg); }

/* mobile nav */
.mnav {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw);
  background: var(--navy-deep); z-index: var(--z-modal);
  transform: translateX(100%); transition: transform .45s var(--ease-out);
  padding: 90px 30px 40px; overflow-y: auto;
}
.mnav.open { transform: translateX(0); }
.mnav a { display: block; color: #fff; font-size: 1.1rem; padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); }
.mnav a:hover { color: var(--gold-light); }
.mnav__label { display: block; color: var(--gold); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .18em; margin-top: 20px; padding-bottom: 2px; font-weight: 600; }
.mnav .btn { margin-top: 26px; width: 100%; justify-content: center; }
.mnav__close { position: absolute; top: 26px; right: 26px; width: 42px; height: 42px;
  border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 24px; }
.scrim { position: fixed; inset: 0; background: rgba(10,18,38,.5); backdrop-filter: blur(3px);
  z-index: 80; opacity: 0; visibility: hidden; transition: opacity .4s; }
.scrim.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--navy-deep); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 700px at 78% 15%, rgba(176,141,79,.30), transparent 60%),
    linear-gradient(115deg, rgba(10,18,38,.94) 30%, rgba(13,23,48,.72) 62%, rgba(13,23,48,.5) 100%); }
.hero__in { position: relative; z-index: 2; padding: 120px 0; max-width: 760px; }
.hero h1 { color: #fff; margin: 20px 0 18px; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.86); max-width: 54ch; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero__cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 54px; flex-wrap: wrap; }
.hero__stat b { font-family: var(--f-display); font-size: 2.6rem; color: var(--gold-light); display: block; line-height: 1; }
.hero__stat span { font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.7); }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; text-align: center; }
.hero__scroll span { display: block; width: 1px; height: 42px; background: linear-gradient(var(--gold-light), transparent);
  margin: 10px auto 0; animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{ transform: scaleY(.4); opacity:.4;} 50%{ transform: scaleY(1); opacity:1;} }

/* Floating decorative orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(40px); z-index: 1; pointer-events: none; }
.orb--gold { background: radial-gradient(circle, rgba(176,141,79,.5), transparent 70%); }
.orb--navy { background: radial-gradient(circle, rgba(36,60,132,.5), transparent 70%); }
.float { animation: floaty 8s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-26px);} }

/* ---------- Luxury split hero ---------- */
.lhero { position:relative; overflow:hidden; padding:72px 0 84px;
  background:
    radial-gradient(1000px 640px at 90% -8%, rgba(176,141,79,.18), transparent 55%),
    radial-gradient(700px 500px at 5% 110%, rgba(28,46,90,.06), transparent 60%),
    linear-gradient(165deg, var(--ivory) 0%, var(--cream) 62%, #F1E9DA 100%); }
.lhero__grid { display:grid; grid-template-columns:1.08fr .92fr; gap:50px; align-items:center; }
.lhero__content { position:relative; z-index:2; }
.lhero__badge { display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px); border:1px solid var(--glass-brd); border-radius:100px; padding:8px 17px;
  box-shadow:var(--sh-sm); font-size:.84rem; font-weight:600; color:var(--navy); }
.lhero__badge .gstars { color:var(--gold); display:flex; gap:1px; }
.lhero__badge .gstars svg { width:14px; height:14px; }
.lhero__eyebrow { margin-top:26px; }
.lhero h1 { font-size:clamp(2.5rem, 5.2vw, 4.4rem); line-height:1.06; margin:18px 0 20px; }
.lhero h1 em { color:var(--gold); font-style:italic; font-weight:500; }
.lhero__sub { font-size:1.14rem; color:var(--text-soft); max-width:52ch; }
.lhero__cta { display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.lhero__trust { display:flex; align-items:center; gap:16px; margin-top:38px; }
.lhero__avatars { display:flex; }
.lhero__avatars span { width:46px; height:46px; border-radius:50%; border:2.5px solid var(--ivory);
  margin-left:-14px; background-size:cover; background-position:center top; box-shadow:var(--sh-sm); }
.lhero__avatars span:first-child { margin-left:0; }
.lhero__trust b { color:var(--navy); display:block; font-size:.98rem; }
.lhero__trust p { font-size:.86rem; color:var(--muted); margin:0; }

.lhero__media { position:relative; margin:8px 18px 8px 8px; }
.lhero__orb { position:absolute; width:300px; height:300px; top:-24px; right:-30px; border-radius:50%;
  filter:blur(52px); background:radial-gradient(circle, var(--gold-glow), transparent 70%); z-index:0; }
.lhero__ring { position:absolute; inset:20px -20px -20px 20px; border:1.5px solid var(--gold-light);
  border-radius:var(--radius-lg); z-index:1; }
.lhero__dots { position:absolute; z-index:1; width:118px; height:118px; bottom:-26px; left:-26px;
  background-image:radial-gradient(var(--gold) 1.6px, transparent 1.6px); background-size:15px 15px; opacity:.4; }
.lhero__frame { position:relative; z-index:2; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--sh-lg); border:1px solid rgba(255,255,255,.6); aspect-ratio:4/3.35; margin:0; }
.lhero__frame img { width:100%; height:100%; object-fit:cover; object-position:center;
  transition:transform 1.1s var(--ease); }
.lhero__media:hover .lhero__frame img { transform:scale(1.05); }
.lhero__frame::after { content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 62%, rgba(13,23,48,.28)); }
.lhero__card { position:absolute; z-index:4; background:rgba(255,255,255,.85); backdrop-filter:blur(14px);
  border:1px solid var(--glass-brd); border-radius:16px; box-shadow:var(--sh-lg); padding:15px 19px;
  display:flex; align-items:center; gap:13px; }
.lhero__card b { font-family:var(--f-display); font-size:1.75rem; color:var(--gold); line-height:1; }
.lhero__card span { font-size:.76rem; color:var(--text-soft); line-height:1.3; }
.lhero__card svg { width:26px; height:26px; color:var(--gold); }
.lhero__card--tl { top:-22px; left:-26px; animation:floaty 7s ease-in-out infinite; }
.lhero__card--br { bottom:-20px; right:-26px; animation:floaty 8s ease-in-out infinite .5s; }
.lhero__chip { position:absolute; z-index:4; bottom:20px; left:20px; background:var(--navy); color:#fff;
  border-radius:100px; padding:9px 18px; font-size:.78rem; font-weight:600; box-shadow:var(--sh-md);
  display:inline-flex; align-items:center; gap:8px; }
.lhero__chip svg { width:15px; height:15px; color:var(--gold-light); }

@media (max-width:900px){
  .lhero__grid { grid-template-columns:1fr; gap:34px; }
  .lhero__media { margin:8px 20px 8px 8px; max-width:520px; margin-inline:auto; }
  .lhero__card--tl { left:-10px; } .lhero__card--br { right:-10px; }
  .lhero__content { text-align:center; }
  .lhero .eyebrow, .lhero__badge { justify-content:center; }
  .lhero__cta, .lhero__trust { justify-content:center; }
  .lhero__sub { margin-inline:auto; }
}
@media (max-width:560px){
  .lhero { padding:44px 0 60px; }
  .lhero__card b { font-size:1.4rem; } .lhero__card { padding:12px 15px; }
  .lhero__card--tl { top:-16px; } .lhero__card--br { bottom:-14px; }
  .lhero__trust { flex-direction:column; gap:10px; }
  .lhero__ring { inset:14px -14px -14px 14px; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 30px 0; }
.trust__in { display: flex; align-items: center; justify-content: center; gap: 46px; flex-wrap: wrap;
  font-family: var(--f-display); font-size: 1.15rem; font-style: italic; letter-spacing: .04em; }
.trust__in span { color: var(--gold-light); opacity: .9; }
.trust__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .6; }

/* ---------- Section heading block ---------- */
.shead { max-width: 640px; margin-bottom: 58px; }
.center.shead, .shead.center { margin-inline: auto; }

/* ---------- Feature / value cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--gold-light); }
.card__ico { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(176,141,79,.16), rgba(36,60,132,.1)); color: var(--gold); margin-bottom: 20px; }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .98rem; }
.card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; color: var(--gold);
  font-weight: 600; font-size: .9rem; transition: gap .3s; }
.card:hover .card__link { gap: 13px; }

/* ---------- Service (procedure) cards with image ---------- */
.svc { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 380px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--sh-md); }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease); z-index: 0; }
.svc::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,18,38,.92) 6%, rgba(10,18,38,.35) 55%, rgba(10,18,38,.1)); }
.svc:hover img { transform: scale(1.08); }
.svc__body { position: relative; z-index: 2; padding: 30px; }
.svc__body h3 { color: #fff; font-size: 1.5rem; }
.svc__body p { color: rgba(255,255,255,.8); font-size: .95rem; margin-top: 8px; }
.svc__tag { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--sh-lg); }
.split__media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg); z-index: -1; }
.badge-float {
  position: absolute; bottom: 24px; right: -20px; background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px); border: 1px solid var(--glass-brd); border-radius: 16px;
  box-shadow: var(--sh-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px; }
.badge-float b { font-family: var(--f-display); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.badge-float span { font-size: .8rem; color: var(--text-soft); }
.tick-list { margin-top: 22px; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.tick-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }

/* ---------- Stats band ---------- */
.stats { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; position: relative; overflow: hidden; }
.stats .grid-4 { position: relative; z-index: 2; }
.stat { text-align: center; padding: 20px; }
.stat b { font-family: var(--f-display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--gold-light); display: block; }
.stat span { text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: rgba(255,255,255,.72); }

/* ---------- Reviews (by category) ---------- */
.rev-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.rev-tab { padding: 11px 24px; border-radius: 100px; border: 1px solid var(--border);
  background: #fff; font-weight: 600; font-size: .9rem; color: var(--text-soft); transition: all .3s var(--ease); }
.rev-tab:hover { border-color: var(--gold); color: var(--gold); }
.rev-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--sh-md); }
.rev-panel { display: none; }
.rev-panel.active { display: grid; animation: fadeUp .6s var(--ease); }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s;
  display: flex; flex-direction: column; }
.review:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.review__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 14px; }
.review__stars svg { width: 18px; height: 18px; }
.review p { color: var(--text-soft); font-size: .98rem; flex: 1; }
.review__by { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review__av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--navy)); color: #fff; font-family: var(--f-display); font-weight: 700; }
.review__by b { font-size: .96rem; color: var(--navy); font-family: var(--f-body); }
.review__by small { color: var(--muted); display: block; font-size: .8rem; }
.google-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 12px 24px; box-shadow: var(--sh-sm); margin-top: 44px; }
.google-badge b { font-family: var(--f-display); font-size: 1.5rem; color: var(--navy); }
.google-badge .gstars { color: var(--gold); display: flex; gap: 1px; }
.google-badge .gstars svg { width: 16px; height: 16px; }

/* ---------- Gallery grid ---------- */
.masonry { columns: 3; column-gap: 20px; }
.masonry figure { break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; box-shadow: var(--sh-sm); }
.masonry img { transition: transform .8s var(--ease); width: 100%; }
.masonry figure::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,.6), transparent 55%); opacity: 0; transition: opacity .4s; }
.masonry figure:hover img { transform: scale(1.08); }
.masonry figure:hover::after { opacity: 1; }
.masonry figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff;
  opacity: 0; transform: translateY(8px); transition: all .4s; font-weight: 600; font-size: .9rem; }
.masonry figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,14,30,.92); z-index: var(--z-modal);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .4s; padding: 30px; }
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--sh-lg); }
.lightbox__close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 34px; }

/* ---------- Team ---------- */
.team-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--sh-sm);
  transition: transform .45s var(--ease), box-shadow .45s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.team-card__img { position: relative; aspect-ratio: 3/3.4; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card__social { position: absolute; inset: auto 0 0 0; padding: 16px; display: flex; gap: 10px;
  background: linear-gradient(to top, rgba(10,18,38,.8), transparent); transform: translateY(100%); transition: transform .4s var(--ease); }
.team-card:hover .team-card__social { transform: translateY(0); }
.team-card__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2);
  display: grid; place-items: center; color: #fff; backdrop-filter: blur(6px); }
.team-card__social a:hover { background: var(--gold); }
.team-card__body { padding: 22px 24px 26px; }
.team-card__body h3 { font-size: 1.24rem; }
.team-card__body .role { color: var(--gold); font-weight: 600; font-size: .86rem;
  text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Founder spotlight ---------- */
.founder-media { position:relative; display:flex; justify-content:center; align-items:flex-end; min-height:480px; }
.founder-disc { position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  width:360px; height:360px; max-width:86%; border-radius:50%;
  background:linear-gradient(158deg,#2B4079,var(--navy-deep)); z-index:0;
  box-shadow: inset 0 -20px 60px rgba(0,0,0,.25), var(--sh-lg); }
.founder-ring { position:absolute; bottom:2px; left:50%; transform:translateX(-50%);
  width:392px; height:392px; max-width:94%; border:1.5px solid var(--gold-light); border-radius:50%; z-index:1; }
.founder-media img { position:relative; z-index:2; height:470px; width:auto; max-width:100%;
  filter:drop-shadow(0 26px 34px rgba(13,23,48,.3)); }
.chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.chip { display:inline-flex; align-items:center; gap:7px; background:var(--cream);
  border:1px solid var(--border); border-radius:100px; padding:8px 15px; font-size:.82rem;
  font-weight:600; color:var(--navy); }
.chip svg { width:15px; height:15px; color:var(--gold); flex:none; }
.team-card__tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:14px; }
.team-card__tags span { font-size:.7rem; background:rgba(176,141,79,.12); color:var(--gold);
  padding:5px 11px; border-radius:100px; font-weight:600; letter-spacing:.02em; }
@media (max-width:600px){
  .founder-media { min-height:400px; } .founder-media img { height:380px; }
  .founder-disc { width:290px; height:290px; } .founder-ring { width:318px; height:318px; }
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; text-align: center; }
.cta-band__in { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin: 16px auto 30px; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Inquiry form ---------- */
.inquire { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--sh-lg); background: #fff; }
.inquire__aside { background: linear-gradient(150deg, var(--navy), var(--navy-deep)); color: #fff; padding: 50px 44px; position: relative; overflow: hidden; }
.inquire__aside h2 { color: #fff; }
.inquire__aside p { color: rgba(255,255,255,.8); margin-top: 14px; }
.inq-contact { margin-top: 34px; display: grid; gap: 20px; }
.inq-contact li { display: flex; gap: 14px; align-items: flex-start; }
.inq-contact svg { width: 22px; height: 22px; color: var(--gold-light); flex: none; margin-top: 2px; }
.inq-contact b { display: block; font-family: var(--f-body); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gold-light); }
.inq-contact span { color: rgba(255,255,255,.9); }
.form { padding: 50px 44px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--text); background: var(--ivory); transition: all .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px var(--gold-glow); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form__ok { display: none; padding: 16px; border-radius: 12px; background: rgba(176,141,79,.12);
  border: 1px solid var(--gold-light); color: var(--navy); font-weight: 600; margin-top: 16px; text-align: center; }
.form__ok.show { display: block; animation: fadeUp .5s var(--ease); }

/* ---------- Page hero (inner pages) ---------- */
.phero { background: var(--navy-deep); color: #fff; padding: 150px 0 90px; position: relative; overflow: hidden; text-align: center; }
.phero::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 500px at 70% 0%, rgba(176,141,79,.28), transparent 60%); }
.phero__in { position: relative; z-index: 2; }
.phero h1 { color: #fff; margin: 16px 0; }
.phero .eyebrow { color: var(--gold-light); justify-content: center; }
.phero .eyebrow::before, .phero .eyebrow::after { background: var(--gold-light); }
.crumb { color: rgba(255,255,255,.6); font-size: .86rem; margin-top: 14px; }
.crumb a:hover { color: var(--gold-light); }

/* ---------- Accordion / FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.acc { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .3s; }
.acc.open { box-shadow: var(--sh-md); border-color: var(--gold-light); }
.acc__q { width: 100%; text-align: left; padding: 22px 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; font-family: var(--f-display); font-size: 1.12rem; color: var(--navy); }
.acc__q svg { width: 22px; height: 22px; color: var(--gold); flex: none; transition: transform .4s var(--ease); }
.acc.open .acc__q svg { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__a p { padding: 0 24px 24px; color: var(--text-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-ink); color: rgba(255,255,255,.7); padding-top: 78px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; }
.footer h4 { color: #fff; font-family: var(--f-body); font-size: .82rem; text-transform: uppercase;
  letter-spacing: .16em; margin-bottom: 22px; }
.footer__brand img { height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .96; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer a { transition: color .25s; }
.footer li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer ul li { margin-bottom: 12px; font-size: .95rem; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; transition: all .3s; }
.footer__social a:hover { background: var(--gold); color: var(--navy-ink); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
.footer__bar a:hover { color: var(--gold-light); }
.credit { color: rgba(255,255,255,.55); }
.credit b { color: var(--gold-light); font-weight: 600; }

/* ---------- Sticky mobile actions ---------- */
.sticky-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; grid-template-columns: 1fr 1fr; gap: 1px; box-shadow: 0 -8px 24px rgba(10,18,38,.18); }
.sticky-actions a { display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px; font-weight: 600; color: #fff; font-size: .96rem; }
.sticky-actions svg { width: 20px; height: 20px; }
.sa-call { background: var(--navy); }
.sa-wa { background: #25D366; }

/* ---------- Press / "As Seen In" strip ---------- */
.press { background: var(--navy-deep); padding: 68px 0 64px; position: relative; overflow: hidden; }
.press::before { content: ""; position: absolute; left: 50%; top: -140px; transform: translateX(-50%);
  width: 760px; height: 380px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(176,141,79,.16), transparent 70%); }
.press::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,205,154,.35), transparent); }

.press__head { display: flex; align-items: center; justify-content: center; gap: 26px; margin-bottom: 40px; }
.press__label { color: var(--gold-light); font-size: 12px; letter-spacing: .38em; text-transform: uppercase;
  font-weight: 600; white-space: nowrap; }
.press__label em { font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 15px; letter-spacing: 0; color: var(--gold-soft); }
.press__rule { flex: 1; max-width: 220px; height: 1px; position: relative;
  background: linear-gradient(90deg, transparent, rgba(228,205,154,.45)); }
.press__rule::after { content: ""; position: absolute; right: -3px; top: 50%; width: 5px; height: 5px;
  transform: translateY(-50%) rotate(45deg); background: var(--gold-soft); }
.press__rule--r { background: linear-gradient(90deg, rgba(228,205,154,.45), transparent); }
.press__rule--r::after { right: auto; left: -3px; }

.press__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.press-card { text-align: center; }
.press-card__frame { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 5 / 3;
  box-shadow: 0 10px 26px rgba(0,0,0,.35); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.press-card__frame img { width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(.94); transition: filter .5s, transform .8s var(--ease); }
.press-card__frame::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(13,23,48,.38), rgba(13,23,48,.12) 55%, rgba(176,141,79,.16));
  transition: opacity .5s; }
.press-card__frame::after { content: ""; position: absolute; inset: 7px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(228,205,154,.4); border-radius: 9px; transition: border-color .5s; }
.press-card figcaption { margin-top: 16px; color: rgba(255,255,255,.52); font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; transition: color .4s;
  display: inline-flex; align-items: center; gap: 10px; }
.press-card figcaption::before, .press-card figcaption::after { content: ""; width: 3px; height: 3px;
  transform: rotate(45deg); background: rgba(228,205,154,.45); transition: background .4s; }
.press-card:hover .press-card__frame { transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 6px 24px var(--gold-glow); }
.press-card:hover .press-card__frame img { filter: grayscale(0) brightness(1); transform: scale(1.06); }
.press-card:hover .press-card__frame::before { opacity: .35; }
.press-card:hover .press-card__frame::after { border-color: rgba(228,205,154,.75); }
.press-card:hover figcaption { color: var(--gold-light); }
.press-card:hover figcaption::before, .press-card:hover figcaption::after { background: var(--gold-soft); }

/* ---------- Statement band ---------- */
.statement { background: var(--cream); padding: 96px 0 88px; position: relative; overflow: hidden; }
.statement::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 820px; height: 420px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(176,141,79,.10), transparent 70%); }
.statement .wrap { position: relative; }
.statement__mark { display: block; width: 130px; height: 1px; margin: 0 auto 30px; position: relative;
  background: linear-gradient(90deg, transparent, var(--gold) 32%, var(--gold) 68%, transparent); }
.statement__mark::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px;
  transform: translate(-50%,-50%) rotate(45deg); background: var(--cream); border: 1px solid var(--gold); }
.statement__text { font-family: var(--f-display); color: var(--navy);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.3; max-width: 21ch; margin-inline: auto;
  font-weight: 600; letter-spacing: -.01em; }
.statement__text em { font-style: italic; font-weight: 400; color: var(--gold); }
.statement__sub { display: block; margin-top: 20px; color: var(--muted); font-size: 1rem;
  letter-spacing: .04em; }

/* ---------- In the Media grid ---------- */
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; }
.media-tile { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--sh-sm); cursor: pointer; }
.media-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.media-tile::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,.78), transparent 60%); opacity: .85; transition: opacity .4s; }
.media-tile:hover img { transform: scale(1.08); }
.media-tile figcaption { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  font-weight: 600; font-size: .9rem; }

/* ---------- Facility band (full-width image) ---------- */
.facility { position: relative; min-height: 460px; display: flex; align-items: center; overflow: hidden;
  color: #fff; background: var(--navy-deep); }
.facility__bg { position: absolute; inset: 0; z-index: 0; }
.facility__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.facility::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(10,18,38,.92) 32%, rgba(13,23,48,.55) 100%); }
.facility__in { position: relative; z-index: 2; max-width: 560px; }
.facility h2 { color: #fff; }
.facility p { color: rgba(255,255,255,.85); margin-top: 14px; }

/* ---------- Financing (CareCredit) callout ---------- */
.finance { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 38px; box-shadow: var(--sh-md); }
.finance__txt h3 { font-size: 1.4rem; }
.finance__txt p { color: var(--text-soft); margin-top: 6px; max-width: 52ch; }
.finance__logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.finance__logos img { height: 46px; width: auto; border-radius: 8px; }

/* ---------- Patients triptych showcase ---------- */
.triptych { display:grid; grid-template-columns: 1fr 2.15fr 1fr; gap:22px; align-items:stretch; }
.triptych__side { border-radius:var(--radius); overflow:hidden; box-shadow:var(--sh-md); position:relative; }
.triptych__side img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.triptych__side::after { content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(28,46,90,.28)); }
.triptych__center { display:flex; flex-direction:column; justify-content:center; }
.triptych__center .frameimg { position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--sh-lg); }
.triptych__center .frameimg img { width:100%; display:block; transition:transform .8s var(--ease); }
.triptych__center .frameimg:hover img { transform:scale(1.03); }
.triptych__cap { font-family:var(--f-display); font-style:italic; color:var(--gold);
  text-align:center; font-size:1.06rem; line-height:1.55; margin-top:22px; max-width:60ch; margin-inline:auto; }
@media (max-width:860px){
  .triptych { grid-template-columns:1fr; }
  .triptych__side { display:none; }
}

/* ---------- Featured story tag ---------- */
.story-tag { display:inline-flex; align-items:center; gap:8px; background: rgba(176,141,79,.12);
  color: var(--gold); padding:7px 15px; border-radius:100px; font-size:.74rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; }

/* ---------- Video feature ---------- */
.video-cta { position: relative; border-radius: var(--radius-lg); overflow: hidden; display:block;
  box-shadow: var(--sh-lg); min-height: 430px; }
.video-cta img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
  transition: transform .8s var(--ease); }
.video-cta::after { content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(10,18,38,.88), rgba(10,18,38,.2)); }
.video-cta:hover img { transform: scale(1.06); }
.video-cta__in { position:relative; z-index:2; min-height:430px; display:flex; flex-direction:column;
  justify-content:flex-end; padding:40px; color:#fff; }
.video-play { width:84px; height:84px; border-radius:50%; background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px); border:1px solid rgba(255,255,255,.42); display:grid; place-items:center;
  margin-bottom:auto; transition: all .4s var(--ease); }
.video-cta:hover .video-play { background: var(--gold); transform: scale(1.08); border-color: var(--gold); }
.video-play svg { width:30px; height:30px; color:#fff; margin-left:5px; }

/* ---------- Highlight card (membership) ---------- */
.hcard { padding:46px 42px; border-radius:var(--radius-lg); background:linear-gradient(150deg,var(--navy),var(--navy-deep));
  color:#fff; position:relative; overflow:hidden; box-shadow:var(--sh-lg); }
.hcard h3 { color:#fff; }
.hcard p { color:rgba(255,255,255,.84); margin-top:12px; }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color:#fff;
  border-radius: var(--radius-lg); padding: 52px 48px; text-align:center; position:relative; overflow:hidden;
  box-shadow: var(--sh-lg); }
.newsletter h2 { color:#fff; }
.newsletter p { color: rgba(255,255,255,.92); margin:12px auto 26px; max-width: 52ch; }
.newsletter form { display:flex; gap:12px; max-width:520px; margin:0 auto; position:relative; z-index:2; }
.newsletter input { flex:1; padding:15px 22px; border-radius:100px; border:none; font-family:inherit;
  font-size:.96rem; color:var(--text); }
.newsletter input:focus { outline:none; box-shadow:0 0 0 4px rgba(255,255,255,.4); }
.newsletter .btn { flex:none; background:var(--navy); color:#fff; }
.newsletter .btn:hover { background:var(--navy-deep); transform:translateY(-3px); }
.newsletter__ok { display:none; margin-top:16px; font-weight:600; color:#fff; }
.newsletter__ok.show { display:block; }
@media(max-width:560px){ .newsletter form{ flex-direction:column;} .newsletter{ padding:36px 22px;} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: none;} }

/* scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 100; transition: width .1s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media { max-width: 560px; }
  .masonry { columns: 2; }
  .inquire { grid-template-columns: 1fr; }
}
@media (max-width: 1120px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
}
@media (max-width: 860px) {
  .topbar__left .topbar__item.hide-sm { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .press { padding: 52px 0 48px; }
  .press__head { margin-bottom: 30px; }
  .press__row { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 8px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .press__row::-webkit-scrollbar { display: none; }
  .press-card { flex: 0 0 210px; scroll-snap-align: center; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .sticky-actions { display: grid; }
  body { padding-bottom: 54px; }
  .section { padding: 78px 0; }
  .badge-float { right: 10px; }
}
@media (max-width: 560px) {
  .grid-2, .grid-4, .form-row { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__left { gap: 16px; }
  .hero__stats { gap: 26px; }
  .form, .inquire__aside { padding: 34px 24px; }
  .trust__in { gap: 20px; font-size: 1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
