/* =========================================================
   Pioneer Imaging & Diagnostics — Global Stylesheet
   Premium medical site, mobile-first, animation-rich.
   ========================================================= */

/* -------------------- Tokens -------------------- */
:root {
  /* Banner-driven palette: deep burgundy + warm gold + cream */
  --c-ink:        #5a0d12;   /* deep burgundy — primary brand */
  --c-ink-2:      #7a0f17;   /* rich crimson */
  --c-ink-soft:   #6e4a3e;   /* warm muted brown for body copy */
  --c-bg:         #fbf6ec;   /* warm cream background */
  --c-bg-2:       #f4ead4;   /* deeper cream / linen */
  --c-white:      #ffffff;
  --c-line:       rgba(90, 13, 18, .10);
  --c-glass:      rgba(255, 250, 240, .72);
  --c-glass-dark: rgba(58, 8, 12, .58);

  --c-accent:     #b8860b;   /* dark gold — primary accent */
  --c-accent-2:   #d4af37;   /* classic gold */
  --c-accent-3:   #e9c659;   /* light gold highlight */
  --c-gold:       #d4af37;
  --c-burgundy:   #5a0d12;
  --c-burgundy-2: #8b1219;

  --grad-primary:  linear-gradient(135deg, #e9c659 0%, #b8860b 100%);
  --grad-deep:     linear-gradient(135deg, #3a070a 0%, #5a0d12 50%, #8b1219 130%);
  --grad-soft:     linear-gradient(180deg, #fbf6ec 0%, #ffffff 100%);
  --grad-aurora:   radial-gradient(60% 70% at 20% 10%, rgba(212,175,55,.22) 0%, transparent 60%),
                   radial-gradient(50% 60% at 90% 20%, rgba(233,198,89,.18) 0%, transparent 60%),
                   radial-gradient(60% 70% at 50% 110%, rgba(139,18,25,.30) 0%, transparent 60%);

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

  --sh-1: 0 1px 2px rgba(58,8,12,.06), 0 8px 30px rgba(58,8,12,.08);
  --sh-2: 0 20px 60px rgba(58,8,12,.16);
  --sh-glow: 0 10px 40px rgba(184,134,11,.30);

  --ff-sans:    'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-display: 'Cormorant Garamond', Georgia, serif;

  --container: 1240px;
  --nav-h: 76px;

  --ease-out: cubic-bezier(.22,1,.36,1);
}

/* -------------------- Base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* -------------------- Layout -------------------- */
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.site-main { min-height: 50vh; }
section { position: relative; padding: clamp(64px, 9vw, 120px) 0; }

/* -------------------- Type -------------------- */
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(90deg, var(--c-accent-2), var(--c-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--grad-primary); }
.section-title { max-width: 760px; }
.section-title p { color: var(--c-ink-soft); font-size: 1.05rem; }
.serif { font-family: var(--ff-display); font-style: italic; font-weight: 500; }
.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* -------------------- Buttons -------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn i { width: 18px; height: 18px; }
.btn--primary {
  color: #fff;
  background: var(--grad-primary);
  box-shadow: var(--sh-glow);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  opacity: 0; transition: opacity .35s; z-index: -1;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(184,134,11,.4); }
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
  color: var(--c-ink);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
}
.btn--ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--sh-1); }

.btn--outline {
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
  background: transparent;
}
.btn--outline:hover { background: var(--c-ink); color: #fff; }

.btn--lg { padding: 18px 30px; font-size: 1rem; }

/* -------------------- Pre-loader -------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__ring {
  width: 64px; height: 64px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--c-accent-2);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
.preloader__brand { display: flex; align-items: center; gap: 12px; color: #fff; opacity: .8; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
@keyframes spin { to { transform: rotate(360deg); } }


/* -------------------- Top bar (animated) -------------------- */
.topbar {
  position: relative;
  color: rgba(255,255,255,.95);
  font-size: .82rem;
  padding: 10px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, #3a070a 0%, #5a0d12 25%, #8b1219 50%, #5a0d12 75%, #3a070a 100%);
  background-size: 300% 100%;
  animation: topbarShift 18s ease-in-out infinite;
  border-bottom: 1px solid rgba(212,175,55,.35);
  box-shadow: inset 0 -1px 0 rgba(212,175,55,.18);
}
.topbar::before {
  /* Subtle gold sweep that travels across the bar */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg,
      transparent 0%,
      transparent 40%,
      rgba(233,198,89,.18) 50%,
      transparent 60%,
      transparent 100%);
  background-size: 200% 100%;
  animation: topbarSheen 7s linear infinite;
  pointer-events: none;
}
.topbar::after {
  /* Faint moving stitch line at the bottom */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg,
      rgba(212,175,55,.55) 0 8px,
      transparent 8px 16px);
  background-size: 32px 1px;
  animation: topbarStitch 6s linear infinite;
  pointer-events: none;
}
@keyframes topbarShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes topbarSheen {
  0%   { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
@keyframes topbarStitch {
  to { background-position: 32px 0; }
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.topbar__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(233,198,89,.35);
  font-weight: 600; letter-spacing: .02em;
  position: relative;
  animation: topbarPulse 3.5s ease-in-out infinite;
}
.topbar__pill i { width: 14px; height: 14px; color: var(--c-accent-3); }
@keyframes topbarPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,198,89,.30); }
  50%      { box-shadow: 0 0 0 6px rgba(233,198,89,0); }
}
.topbar__links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar__links a {
  display: inline-flex; align-items: center; gap: 6px;
  opacity: .92; transition: opacity .2s, color .2s, transform .25s;
}
.topbar__links a:hover { opacity: 1; color: var(--c-accent-3); transform: translateY(-1px); }
.topbar__links i { width: 14px; height: 14px; }
.topbar__links .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-accent-2);
  animation: topbarDot 2.4s ease-in-out infinite;
}
@keyframes topbarDot {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.3); }
}
.topbar__links .dot:nth-of-type(2) { animation-delay: .8s; }
@media (max-width: 920px) {
  .topbar__row { justify-content: center; text-align: center; }
  .topbar__links { gap: 10px; font-size: .78rem; }
  .topbar__links .dot { display: none; }
}
@media (max-width: 520px) {
  .topbar { font-size: .76rem; padding: 8px 0; }
  .topbar__pill { padding: 4px 10px; }
  .topbar__links a:nth-child(n+5) { display: none; }
}

/* -------------------- Nav -------------------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--c-line);
  transition: transform .35s var(--ease-out), background .3s, box-shadow .3s, border-color .3s;
}
.nav.is-solid { background: rgba(255,255,255,.92); box-shadow: 0 6px 24px rgba(58,8,12,.06); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  height: var(--nav-h);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-1);
}
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-words strong { font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; }
.brand-words small  { font-size: .7rem; color: var(--c-ink-soft); letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a, .has-dropdown > a {
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px;
  font-weight: 500; font-size: .95rem;
  color: var(--c-ink);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__links > a::after, .has-dropdown > a::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2px; background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links > a:hover::after, .has-dropdown:hover > a::after, .nav__links > a.active::after { transform: scaleX(1); }
.nav__links > a.active { color: var(--c-accent); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; padding: 8px;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s var(--ease-out);
}
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--c-ink); transition: background .2s; }
.dropdown a:hover { background: var(--c-bg-2); color: var(--c-accent); }
.dropdown i { width: 16px; height: 16px; color: var(--c-accent); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__cta { display: inline-flex; }
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--c-bg-2);
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1080px) { .nav__burger { display: flex; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--grad-deep);
  color: #fff;
  padding: calc(var(--nav-h) + 32px) 24px 32px;
  transform: translateY(-110%);
  transition: transform .5s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__inner { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin: 0 auto; }
.mobile-menu a {
  font-size: 1.4rem; font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateY(20px);
  transition: opacity .35s, transform .35s var(--ease-out), color .2s;
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open a:nth-child(1)  { transition-delay: .05s; }
.mobile-menu.is-open a:nth-child(2)  { transition-delay: .1s; }
.mobile-menu.is-open a:nth-child(3)  { transition-delay: .15s; }
.mobile-menu.is-open a:nth-child(4)  { transition-delay: .2s; }
.mobile-menu.is-open a:nth-child(5)  { transition-delay: .25s; }
.mobile-menu.is-open a:nth-child(6)  { transition-delay: .3s; }
.mobile-menu.is-open a:nth-child(7)  { transition-delay: .35s; }
.mobile-menu.is-open a:nth-child(8)  { transition-delay: .4s; }
.mobile-menu.is-open a:nth-child(9)  { transition-delay: .45s; }
.mobile-menu.is-open a:nth-child(10) { transition-delay: .5s; }
.mobile-menu.is-open a:nth-child(11) { transition-delay: .55s; }
.mobile-menu.is-open a:nth-child(12) { transition-delay: .6s; }
.mobile-menu .btn--primary { align-self: flex-start; margin-top: 10px; }
.mobile-menu__contact { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; opacity: .85; }
.mobile-menu__contact a { font-size: 1rem; padding: 4px 0; border: 0; }
.mobile-menu__contact i { width: 16px; height: 16px; color: var(--c-accent-2); }

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
  background: var(--grad-deep);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-aurora), radial-gradient(80% 80% at 50% 100%, rgba(212,175,55,.14), transparent 70%);
  opacity: .9; pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(255,255,255,.03) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,.03) 60px 61px);
  mask-image: radial-gradient(70% 80% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; gap: 48px;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 32px; } }

.hero__badges {
  display: inline-flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: .82rem; font-weight: 500;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.hero__badge i { width: 14px; height: 14px; color: var(--c-accent-2); }

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(110%); animation: wordUp .9s var(--ease-out) forwards; }
.hero h1 .word:nth-child(1) > span { animation-delay: .1s; }
.hero h1 .word:nth-child(2) > span { animation-delay: .2s; }
.hero h1 .word:nth-child(3) > span { animation-delay: .3s; }
.hero h1 .word:nth-child(4) > span { animation-delay: .4s; }
.hero h1 .word:nth-child(5) > span { animation-delay: .5s; }
.hero h1 .word:nth-child(6) > span { animation-delay: .6s; }
@keyframes wordUp { to { transform: translateY(0); } }

.hero p.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,.78); max-width: 560px; margin: 0 0 28px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px; justify-self: end; width: 100%;
}
.hero__photo {
  position: absolute; inset: 6%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), inset 0 0 60px rgba(0,0,0,.4);
  border: 2px solid rgba(212,175,55,.35);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__photo img { width:100%; height:100%; object-fit: cover; display:block; filter: saturate(1.05) brightness(.95); }
.hero__photo::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(40% 40% at 30% 30%, rgba(255,255,255,.18), transparent 60%),
              linear-gradient(135deg, rgba(58,8,12,.35) 0%, transparent 70%);
}
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__orb {
  position: absolute; inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(60% 60% at 70% 70%, rgba(212,175,55,.4), transparent 60%),
    linear-gradient(135deg, #b8860b, #7a0f17);
  box-shadow: 0 30px 80px rgba(184,134,11,.35), inset 0 0 60px rgba(255,255,255,.18);
  animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__rings { position: absolute; inset: 0; pointer-events: none; }
.hero__rings span {
  position: absolute; inset: 0;
  border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: 50%;
  animation: spinSlow 22s linear infinite;
}
.hero__rings span:nth-child(2) { inset: 8%;  border-color: rgba(212,175,55,.25); animation-duration: 30s; animation-direction: reverse; }
.hero__rings span:nth-child(3) { inset: 16%; border-color: rgba(255,255,255,.12); animation-duration: 40s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero__chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--c-ink);
  box-shadow: var(--sh-2);
  font-size: .85rem; font-weight: 600;
  animation: chipFloat 5s ease-in-out infinite;
}
.hero__chip i { width: 16px; height: 16px; color: var(--c-accent); }
.hero__chip--1 { top: 8%; left: -6%; animation-delay: 0s; }
.hero__chip--2 { bottom: 12%; right: -4%; animation-delay: 1.5s; }
.hero__chip--3 { bottom: 28%; left: -10%; animation-delay: 3s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-indicator {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.scroll-indicator__mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 14px; position: relative;
}
.scroll-indicator__mouse::after {
  content: ""; position: absolute; left: 50%; top: 8px;
  width: 2px; height: 8px; background: #fff; border-radius: 2px;
  transform: translateX(-50%);
  animation: wheelDown 1.6s ease-in-out infinite;
}
@keyframes wheelDown { 0% { opacity: 0; transform: translate(-50%, -8px); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* -------------------- Marquee trust bar -------------------- */
.marquee {
  background: #fff;
  border-block: 1px solid var(--c-line);
  padding: 22px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-ink-soft);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item i { width: 18px; height: 18px; color: var(--c-accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------- About snapshot -------------------- */
.about-snap {
  background: linear-gradient(180deg, var(--c-bg) 0%, #fff 100%);
}
.about-snap__grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center;
}
@media (max-width: 920px) { .about-snap__grid { grid-template-columns: 1fr; } }

.doctor-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grad-deep);
  box-shadow: var(--sh-2);
}
.doctor-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58,8,12,.7) 100%);
}
.doctor-frame svg.doctor-illu,
.doctor-frame img.doctor-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.doctor-frame .signature {
  position: absolute; left: 24px; bottom: 24px; z-index: 2; color: #fff;
}
.doctor-frame .signature strong { display: block; font-size: 1.15rem; }
.doctor-frame .signature span { font-size: .82rem; opacity: .85; }
.doctor-frame .badge-floating {
  position: absolute; top: 20px; right: 20px;
  background: #fff; color: var(--c-ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  box-shadow: var(--sh-1);
  display: inline-flex; gap: 6px; align-items: center;
}
.badge-floating i { width: 14px; height: 14px; color: var(--c-accent); }

.stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 28px;
}
.stat {
  padding: 22px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-1);
}
.stat__num { font-size: 2.2rem; font-weight: 800; line-height: 1; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: .85rem; color: var(--c-ink-soft); margin-top: 6px; }

/* -------------------- Core Services (split-reveal) -------------------- */
.svc {
  background: #fff;
}
.svc__grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}
@media (max-width: 820px) { .svc__grid { grid-template-columns: 1fr; } }
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 36px;
  min-height: 420px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  isolation: isolate;
  transition: transform .5s var(--ease-out), box-shadow .5s;
  box-shadow: var(--sh-2);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(58,8,12,.18); }
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--grad-deep);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at var(--mx,50%) var(--my,50%), rgba(212,175,55,.4), transparent 60%);
  transition: background .3s;
}
.svc-card--mri::before { background: linear-gradient(135deg,#b8860b 0%, #7a0f17 100%); }
.svc-card--ct::before  { background: linear-gradient(135deg,#5a0d12 0%, #5a0d12 100%); }
.svc-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.svc-card__icon i { width: 28px; height: 28px; color: #fff; }
.svc-card h3 { font-size: 1.8rem; margin: 18px 0 8px; }
.svc-card p  { color: rgba(255,255,255,.78); margin: 0 0 20px; }
.svc-card ul { margin: 0 0 24px; padding: 0; list-style: none; display: grid; gap: 6px; }
.svc-card ul li { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.85); }
.svc-card ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent-2); flex: 0 0 auto; }
.svc-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
  transition: gap .3s, color .2s;
}
.svc-card .arrow:hover { gap: 14px; color: var(--c-accent-2); }

/* -------------------- X-Ray section (THE WOW) -------------------- */
.xray {
  background: var(--grad-deep);
  color: #fff;
  overflow: hidden;
}
.xray__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 920px) { .xray__grid { grid-template-columns: 1fr; } }
.xray__copy h2 { color: #fff; }
.xray__copy p  { color: rgba(255,255,255,.75); max-width: 520px; }

.xray__viewer {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 460px; width: 100%;
  margin-inline: auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(80% 80% at 50% 30%, #7a0f17 0%, #5a0d12 70%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  cursor: crosshair;
  --x: 50%;
  --y: 50%;
}
.xray__viewer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255,255,255,.04) 12px 13px);
  pointer-events: none;
}
.xray__layer { position: absolute; inset: 0; }
.xray__body  { color: #f0d99c; }
.xray__bones { color: #ffffff; }
.xray__bones {
  -webkit-mask-image: radial-gradient(circle 130px at var(--x) var(--y), #000 0%, transparent 100%);
  mask-image: radial-gradient(circle 130px at var(--x) var(--y), #000 0%, transparent 100%);
  transition: -webkit-mask-image .15s, mask-image .15s;
  filter: drop-shadow(0 0 8px rgba(212,175,55,.6));
}

/* Chips above the reveal */
.xray__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 6px;
}
.xray__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212,175,55,.35);
  color: #fff; font-size: .82rem; font-weight: 500;
}
.xray__chip i { width: 14px; height: 14px; color: var(--c-accent-2); }

/* -------- Cursor X-ray reveal (single stacked image) -------- */
.xray__stage {
  display: flex; justify-content: center; align-items: center;
}
.xray__reveal {
  --rx: 50%;
  --ry: 50%;
  --lens: 170px;
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: crosshair;
  background: radial-gradient(80% 80% at 50% 30%, #0e2a4a 0%, #061425 70%);
  border: 1px solid rgba(212,175,55,.25);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.04);
  isolation: isolate;
}
.xray__reveal img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.xray__reveal-bottom {
  z-index: 1;
  filter: brightness(1.05) contrast(1.05);
}
/* Top "outside" layer with a circular hole that follows the cursor */
.xray__reveal-top {
  z-index: 2;
  -webkit-mask-image: radial-gradient(circle var(--lens) at var(--rx) var(--ry),
                        transparent 0%, transparent 60%, #000 100%);
          mask-image: radial-gradient(circle var(--lens) at var(--rx) var(--ry),
                        transparent 0%, transparent 60%, #000 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: -webkit-mask-image .12s linear, mask-image .12s linear;
}
/* Soft golden ring around the lens to highlight the active area */
.xray__reveal::after {
  content: "";
  position: absolute; z-index: 3;
  width: calc(var(--lens) * 2);
  height: calc(var(--lens) * 2);
  left: var(--rx); top: var(--ry);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at center,
      rgba(212,175,55,0) 56%,
      rgba(212,175,55,.35) 60%,
      rgba(212,175,55,0) 64%);
  box-shadow:
    0 0 40px rgba(212,175,55,.25),
    inset 0 0 30px rgba(62, 224, 208, .15);
  opacity: .9;
  transition: opacity .25s;
}
/* Crosshair lens marker */
.xray__lens {
  position: absolute; z-index: 4;
  width: 28px; height: 28px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: .85;
}
.xray__lens-ring {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0,0,0,.25);
}
.xray__lens-cross {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent calc(50% - .5px), rgba(255,255,255,.85) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(to bottom, transparent calc(50% - .5px), rgba(255,255,255,.85) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px));
  mix-blend-mode: difference;
}
/* Sweeping scanline on the inside layer */
.xray__scanline {
  position: absolute; z-index: 1;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent-2), transparent);
  box-shadow: 0 0 14px var(--c-accent-2);
  top: 0;
  animation: scan 3.6s ease-in-out infinite;
  pointer-events: none;
  opacity: .55;
}
@keyframes scan {
  0%, 100% { top: 5%;  opacity: .35; }
  50%      { top: 95%; opacity: .8; }
}
.xray__hint {
  position: absolute; z-index: 5;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(7, 17, 31, .65);
  backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 999px;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(212,175,55,.35);
  pointer-events: none;
  transition: opacity .25s;
}
.xray__reveal.is-active .xray__hint { opacity: 0; }
.xray__hint i { width: 14px; height: 14px; color: var(--c-accent-2); }
.xray__legend {
  position: absolute; z-index: 5;
  left: 14px; bottom: 14px; right: 14px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.xray__legend span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(7,17,31,.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px; border-radius: 999px;
  font-size: .72rem; color: #fff;
}
.xray__legend i { width: 14px; height: 14px; color: var(--c-accent-2); }

@media (max-width: 540px) {
  .xray__reveal { max-width: 340px; --lens: 130px; }
  .xray__reveal::after { box-shadow: 0 0 22px rgba(212,175,55,.2); }
}
@media (prefers-reduced-motion: reduce) {
  .xray__scanline { animation: none; }
  .xray__reveal-top { transition: none; }
}

/* -------------------- Why-choose Bento -------------------- */
.why {
  background: var(--c-bg);
}
.bento {
  display: grid; gap: 20px; margin-top: 48px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
}
.bento > * {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento > *:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: rgba(184,134,11,.35); }
.bento h3 { font-size: 1.12rem; margin: 12px 0 6px; line-height: 1.3; }
.bento p { font-size: .9rem; color: var(--c-ink-soft); margin: 0; line-height: 1.55; }
.bento .feat-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(184,134,11,.12), rgba(212,175,55,.18));
  display: inline-grid; place-items: center;
  margin-bottom: 4px;
}
.bento i.feat { width: 22px; height: 22px; color: var(--c-accent); }

/* B-1 — hero card with photo */
.b-1 {
  grid-column: span 3; grid-row: span 2;
  background: var(--grad-deep); color: #fff;
  min-height: 380px;
  justify-content: flex-end;
}
.b-1::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/clinic/control-room.webp') center/cover;
  opacity: .35; filter: saturate(1.2);
}
.b-1::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,8,12,.4) 0%, rgba(58,8,12,.85) 70%, rgba(58,8,12,.95) 100%);
}
.b-1 > * { position: relative; z-index: 2; }
.b-1 .feat-wrap { background: rgba(212,175,55,.18); border: 1px solid rgba(212,175,55,.4); }
.b-1 i.feat { color: var(--c-accent-2); }
.b-1 h3 { color: #fff; font-size: 1.5rem; }
.b-1 p { color: rgba(255,255,255,.82); }
.b-1 .b-stat {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin-top: 12px; padding: 8px 14px;
  background: rgba(212,175,55,.14); border: 1px solid rgba(212,175,55,.4);
  border-radius: 999px;
  color: var(--c-accent-2); font-weight: 600; font-size: .85rem;
}
.b-1 .b-stat strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #fff; }

.b-2 { grid-column: span 3; }
.b-3 { grid-column: span 2; }
.b-4 { grid-column: span 2; background: linear-gradient(135deg, #fff, var(--c-bg-2)); }
.b-5 { grid-column: span 2; }
.b-6 {
  grid-column: span 3;
  color: #fff;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  min-height: 200px;
}
.b-6::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/clinic/building-night.webp') center/cover;
  opacity: .55;
}
.b-6::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,5,8,.5), rgba(20,5,8,.85));
}
.b-6 > * { position: relative; z-index: 2; }
.b-6 h3 { color: #fff; }
.b-6 p { color: rgba(255,255,255,.82); }
.b-6 .feat-wrap { background: rgba(212,175,55,.18); }
.b-6 i.feat { color: var(--c-accent-2); }
.b-7 { grid-column: span 3; background: linear-gradient(135deg, #fdf3d8, #fff); }

@media (max-width: 820px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento > * { grid-column: span 1; grid-row: auto; }
  .b-1 { grid-column: span 2; min-height: 320px; }
  .b-6 { grid-column: span 2; }
  .b-7 { grid-column: span 2; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .b-1, .b-6, .b-7 { grid-column: span 1; }
}

/* -------------------- Modern post-card with real images -------------------- */
.post-card__cover img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .8s var(--ease-out);
}
.post-card:hover .post-card__cover img { transform: scale(1.08); }
.post-card__cover-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--c-primary);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.post-card__cover::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
}

/* Scan strip — sample images on service pages */
.scan-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 820px) { .scan-strip { grid-template-columns: 1fr; } }
.scan-strip figure {
  position: relative; margin: 0;
  border-radius: var(--r-lg); overflow: hidden;
  background: #0a0508;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-1);
  transition: transform .4s, box-shadow .4s;
}
.scan-strip figure:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.scan-strip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease-out); }
.scan-strip figure:hover img { transform: scale(1.06); }
.scan-strip figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 10px 14px;
  background: rgba(10,5,8,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 10px;
  color: #fff;
  display: grid; gap: 2px;
}
.scan-strip figcaption strong { font-size: .95rem; }
.scan-strip figcaption span { font-size: .78rem; color: rgba(255,255,255,.78); }

/* Article cover image (blog-single) */
.article-cover {
  margin: 0 0 32px; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 16/9; box-shadow: var(--sh-2);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
article h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.35rem; color: var(--c-primary); }
article ul { padding-left: 22px; margin: 12px 0 18px; }
article ul li { margin-bottom: 8px; }
article p { margin: 0 0 16px; }

/* -------------------- Doctor spotlight -------------------- */
.spotlight {
  background:
    radial-gradient(50% 60% at 80% 40%, rgba(212,175,55,.18), transparent 70%),
    var(--grad-deep);
  color: #fff;
  overflow: hidden;
}
.spotlight__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 920px) { .spotlight__grid { grid-template-columns: 1fr; } }
.spotlight__portrait {
  position: relative;
  aspect-ratio: 1/1; max-width: 480px; width: 100%;
  border-radius: 50% 50% 14px 14px / 50% 50% 14px 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #7a0f17 0%, #5a0d12 100%);
}
.spotlight__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight__portrait::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 35% at 50% 35%, rgba(212,175,55,.35), transparent 70%);
}
.spotlight__copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.spotlight__copy p  { color: rgba(255,255,255,.78); max-width: 520px; }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 28px; }
.creds span {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: .85rem;
}

/* -------------------- Process steps (sticky) -------------------- */
.process {
  background: #fff;
}
.process__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 920px) { .process__grid { grid-template-columns: 1fr; } }
.process__sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.process__steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.step:hover { transform: translateX(6px); box-shadow: var(--sh-1); }
.step__num {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff; font-weight: 800; font-size: 1.2rem;
  box-shadow: var(--sh-glow);
}
.step h3 { margin: 0 0 4px; }
.step p  { margin: 0; color: var(--c-ink-soft); font-size: .95rem; }

/* -------------------- Tech stack -------------------- */
.tech {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
}
.tech__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
@media (max-width: 920px) { .tech__cards { grid-template-columns: 1fr; } }
.tech-card {
  position: relative;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out);
  overflow: hidden;
}
.tech-card:hover { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); }
.tech-card .glyph {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: var(--grad-primary);
  display: grid; place-items: center; color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--sh-glow);
}
.tech-card .glyph i { width: 32px; height: 32px; }
.tech-card h3 { margin: 0 0 8px; }
.tech-card p  { color: var(--c-ink-soft); margin: 0; }

/* -------------------- Pricing teaser -------------------- */
.pricing {
  background: #fff;
}
.price-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.price-card.is-featured {
  background: var(--grad-deep);
  color: #fff;
  border: 0;
  transform: translateY(-12px);
}
.price-card.is-featured .price__amt small { color: rgba(255,255,255,.7); }
.price-card.is-featured .price__list li { color: rgba(255,255,255,.85); }
.price-card.is-featured .price__list li i { color: var(--c-accent-2); }
.price__pill {
  position: absolute; top: 16px; right: 16px;
  font-size: .7rem; padding: 4px 10px; border-radius: 999px;
  background: var(--c-accent-3); color: #fff;
  letter-spacing: .12em; text-transform: uppercase;
}
.price__title { font-weight: 700; font-size: 1.1rem; margin: 0; }
.price__amt { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 16px; }
.price__amt strong { font-size: 2.4rem; font-weight: 800; }
.price__amt small { font-size: .85rem; color: var(--c-ink-soft); }
.price__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; font-size: .92rem; }
.price__list li { display: flex; align-items: center; gap: 8px; }
.price__list li i { width: 16px; height: 16px; color: var(--c-accent); }

/* -------------------- Testimonials -------------------- */
.testi {
  background: linear-gradient(180deg, var(--c-bg-2) 0%, #fff 100%);
}
.testi__wall {
  margin-top: 48px;
  columns: 3 320px;
  column-gap: 18px;
}
.testi-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card .stars { color: #f3a93b; display: flex; gap: 2px; margin-bottom: 10px; }
.testi-card .stars i { width: 16px; height: 16px; fill: currentColor; }
.testi-card p { margin: 0 0 16px; color: var(--c-ink); }
.testi-card .who { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--c-ink-soft); }
.testi-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
}

/* -------------------- Blog teaser -------------------- */
.blogteaser {
  background: #fff;
}
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
@media (max-width: 920px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.post-card__cover {
  aspect-ratio: 16/10;
  background: var(--grad-deep);
  position: relative; overflow: hidden;
}
.post-card__cover svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .85; transition: transform .8s var(--ease-out); }
.post-card:hover .post-card__cover svg { transform: scale(1.08); }
.post-card__body { padding: 22px; }
.post-card__meta { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px; }
.post-card h3 { font-size: 1.15rem; margin: 0 0 8px; }
.post-card p  { color: var(--c-ink-soft); margin: 0; font-size: .92rem; }

/* -------------------- CTA banner -------------------- */
.cta-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 80% at 90% 0%, rgba(212,175,55,.25), transparent 70%),
    var(--grad-deep);
  color: #fff;
}
.cta-banner__row {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
@media (max-width: 920px) { .cta-banner__row { grid-template-columns: 1fr; } }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; }
.cta-banner p  { color: rgba(255,255,255,.78); max-width: 540px; }
.contact-strip {
  display: grid; gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.contact-strip a { display: flex; align-items: center; gap: 10px; }
.contact-strip i { width: 18px; height: 18px; color: var(--c-accent-2); }

/* -------------------- Footer -------------------- */
.footer {
  position: relative;
  background: var(--c-ink);
  color: rgba(255,255,255,.78);
  padding-top: 60px;
}
.footer__wave { color: var(--c-bg); position: absolute; top: -1px; left: 0; right: 0; width: 100%; height: 80px; transform: rotate(180deg); }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; letter-spacing: .04em; }
.footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
  padding: 60px 0 40px;
}
@media (max-width: 920px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: span 2; } }
@media (max-width: 580px) { .footer__grid { grid-template-columns: 1fr; } .footer__brand { grid-column: span 1; } }
.footer__tagline { margin: 14px 0 18px; max-width: 360px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__list a { transition: color .2s; }
.footer__list a:hover { color: var(--c-accent-2); }
.footer__list--contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer__list--contact i { width: 16px; height: 16px; color: var(--c-accent-2); margin-top: 4px; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,.06);
  transition: transform .3s, background .3s;
}
.footer__socials a:hover { background: var(--grad-primary); color: #fff; transform: translateY(-3px); }
.social-glyph { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 700; font-size: 1.1rem; line-height: 1; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; font-size: .85rem; }
.footer__bottom-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.newsletter { display: flex; gap: 8px; margin-top: 14px; max-width: 360px; }
.newsletter input {
  flex: 1; padding: 12px 16px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: #fff;
  font: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: 0; border-color: var(--c-accent-2); }
.newsletter .btn--ghost { padding: 12px 16px; background: var(--grad-primary); color: #fff; border: 0; }

/* Floating widgets */
.back-to-top, .float-wa {
  position: fixed; right: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  box-shadow: var(--sh-2);
  transition: transform .3s, opacity .3s;
}
.back-to-top {
  bottom: 90px;
  width: 44px; height: 44px;
  background: #fff; color: var(--c-ink);
  justify-content: center;
  opacity: 0; transform: translateY(20px);
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.float-wa {
  bottom: 20px;
  background: #25D366; color: #fff;
  padding: 12px 18px; font-weight: 600;
}
.float-wa i { width: 18px; height: 18px; }
.float-wa span { font-size: .9rem; }
@media (max-width: 540px) { .float-wa span { display: none; } .float-wa { padding: 14px; } }

/* -------------------- Scroll progress bar -------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 9999;
  background: rgba(122,15,23,.08);
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 50%, var(--c-primary) 100%);
  box-shadow: 0 0 12px rgba(212,175,55,.55);
  transition: width .08s linear;
  border-radius: 0 4px 4px 0;
}

/* -------------------- Subpage hero / breadcrumb -------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--grad-deep);
  color: #fff;
  padding: clamp(48px, 7vw, 90px) 0 clamp(36px, 5vw, 60px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-aurora); opacity: .8;
  pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(255,255,255,.03) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,.03) 60px 61px);
  mask-image: radial-gradient(70% 80% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 10px 0 12px;
  line-height: 1.1;
}
.page-hero p { color: rgba(255,255,255,.78); max-width: 600px; font-size: 1.05rem; }
.crumbs { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--c-accent-2); }
.crumbs i { width: 14px; height: 14px; opacity: .6; }

/* -------------------- Forms -------------------- */
.form-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--sh-2);
  border: 1px solid var(--c-line);
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .82rem; color: var(--c-ink-soft); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--c-ink);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0; border-color: var(--c-accent); box-shadow: 0 0 0 4px rgba(184,134,11,.12);
}
.flash {
  padding: 14px 18px; border-radius: 12px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.flash.is-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash.is-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* -------------------- FAQ accordion (modern) -------------------- */
.faq-list { display: grid; gap: 14px; max-width: 880px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s, transform .25s;
  position: relative;
}
.faq-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, var(--c-accent), var(--c-accent-2));
  opacity: 0; transition: opacity .3s;
}
.faq-item:hover { border-color: rgba(184,134,11,.4); transform: translateY(-1px); }
.faq-item.is-open { border-color: var(--c-accent); box-shadow: 0 12px 30px rgba(122,15,23,.10); }
.faq-item.is-open::before { opacity: 1; }
.faq-item button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  font-size: 1.02rem; font-weight: 600;
  text-align: left;
  color: var(--c-ink);
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit;
}
.faq-item button:hover { color: var(--c-accent); }
.faq-item button > span:first-child {
  display: flex; align-items: center; gap: 12px;
}
.faq-item button > span:first-child::before {
  content: "?"; flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(184,134,11,.12), rgba(212,175,55,.18));
  color: var(--c-accent);
  display: inline-grid; place-items: center;
  font-weight: 800; font-size: .95rem;
  font-family: 'Cormorant Garamond', serif;
}
.faq-item .chev {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-bg);
  display: inline-grid; place-items: center;
  transition: transform .3s, background .3s;
  flex: 0 0 auto;
}
.faq-item .chev i { width: 18px; height: 18px; color: var(--c-accent); transition: transform .3s; }
.faq-item.is-open .chev { background: var(--c-accent); }
.faq-item.is-open .chev i { color: #fff; transform: rotate(180deg); }
.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item__body p { padding: 0 26px 24px 66px; color: var(--c-ink-soft); margin: 0; line-height: 1.7; }

/* -------------------- Image Hero (full-bleed photo block) -------------------- */
.img-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--sh-2);
}
.img-hero img { width:100%; height:100%; object-fit: cover; display:block; transition: transform 1.2s var(--ease-out); }
.img-hero:hover img { transform: scale(1.04); }
.img-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(58,8,12,.78) 100%);
}
.img-hero__caption {
  position: absolute; left: 28px; right: 28px; bottom: 24px; z-index: 2; color:#fff;
}
.img-hero__caption h3 { color:#fff; font-size: clamp(1.2rem, 2.5vw, 1.8rem); margin: 6px 0 0; max-width: 720px; }
.img-hero__caption .eyebrow { color: var(--c-accent-2); }
.img-hero__caption .eyebrow::before { background: var(--c-accent-2); }
@media (max-width: 600px) { .img-hero { aspect-ratio: 4/5; } }

/* -------------------- Gallery -------------------- */
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.g-cell {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grad-deep);
  position: relative;
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out);
  cursor: zoom-in;
}
.g-cell:hover { transform: scale(1.02); }
.g-cell svg,
.g-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.g-cell:hover img { transform: scale(1.06); }
.g-cell::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58,8,12,.7) 100%);
  pointer-events: none;
}
.g-cell .label {
  position: absolute; bottom: 12px; left: 14px;
  color: #fff; font-weight: 600;
  font-size: .85rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.g-1 { grid-row: span 2; }
.g-4 { grid-column: span 2; }
.g-7 { grid-column: span 2; grid-row: span 2; }

/* -------------------- Map -------------------- */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-1);
  aspect-ratio: 16/9;
  background: var(--c-bg-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -------------------- Utility classes -------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 920px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.center { text-align: center; margin-inline: auto; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

.card-soft {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-1);
}
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(184,134,11,.08); color: var(--c-accent);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
}

/* About-page image gallery cards */
.about-gallery__card {
  position: relative; margin: 0;
  border-radius: var(--r-xl); overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 22, 51, .08);
  border: 1px solid rgba(8, 22, 51, .06);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.about-gallery__card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 1s var(--ease-out);
}
.about-gallery__card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(8,22,51,.14); }
.about-gallery__card:hover img { transform: scale(1.05); }
.about-gallery__card figcaption {
  padding: 14px 18px;
  font-size: .92rem;
  color: var(--c-ink-soft);
  border-top: 1px solid rgba(8, 22, 51, .06);
}

/* -------------------- Captcha widget -------------------- */
.captcha-field { margin-bottom: 18px; }
.captcha-box {
  display: flex; align-items: stretch; gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fbf6ec 0%, #f4ead4 100%);
  border: 1px dashed rgba(184,134,11,.45);
  border-radius: 14px;
}
.captcha-q {
  display: inline-flex; align-items: center; gap: 8px;
  flex: 1 1 auto; min-width: 0;
  font-weight: 600; color: var(--c-ink);
  font-size: .98rem;
}
.captcha-q i { width: 18px; height: 18px; color: var(--c-accent); flex: 0 0 auto; }
.captcha-q strong { color: var(--c-accent); font-size: 1.05rem; letter-spacing: .03em; }
.captcha-box input[type="number"] {
  flex: 0 0 110px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  background: #fff;
  font: inherit; font-weight: 600;
  color: var(--c-ink);
  text-align: center;
  -moz-appearance: textfield;
}
.captcha-box input[type=number]::-webkit-outer-spin-button,
.captcha-box input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.captcha-box input[type="number"]:focus {
  outline: 0; border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(184,134,11,.18);
}
.form-privacy {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: .82rem;
  color: var(--c-ink-soft);
}
.form-privacy i { width: 16px; height: 16px; color: var(--c-accent); }

@media (max-width: 480px) {
  .captcha-box { flex-direction: column; align-items: stretch; }
  .captcha-box input[type="number"] { width: 100%; flex: 1 1 auto; }
}

/* -------------------- Pricing — banner-style summary -------------------- */
.price-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, #fff 0%, #fbf6ec 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-2);
  position: relative;
}
.price-banner::before {
  content: ""; position: absolute; left: 50%; top: 32px; bottom: 96px;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(184,134,11,.4), transparent);
  pointer-events: none;
}
.price-banner__col { padding: 28px clamp(18px, 3vw, 36px) 22px; }
.price-banner__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(184,134,11,.25);
}
.price-banner__abbr {
  display: inline-grid; place-items: center;
  min-width: 60px; height: 38px; padding: 0 12px;
  border-radius: 10px;
  background: var(--grad-deep);
  color: var(--c-accent-3);
  font-weight: 800; letter-spacing: .04em;
  font-size: .92rem;
  box-shadow: 0 6px 18px rgba(58,8,12,.20);
}
.price-banner__head h2 {
  margin: 0; color: var(--c-ink);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}
.price-banner__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.price-banner__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.price-banner__list li:hover {
  transform: translateX(2px);
  border-color: rgba(184,134,11,.5);
  box-shadow: 0 8px 20px rgba(122,15,23,.08);
}
.price-banner__list li span { color: var(--c-ink); font-weight: 500; }
.price-banner__list li span em { font-style: normal; color: var(--c-ink-soft); font-size: .82rem; margin-left: 4px; }
.price-banner__list li strong {
  color: var(--c-accent); font-weight: 800;
  font-size: 1.08rem; letter-spacing: .02em;
  white-space: nowrap;
}
.price-banner__foot {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 14px;
  padding: 18px clamp(20px, 3vw, 36px);
  background: var(--grad-deep);
  color: rgba(255,255,255,.92);
  font-size: .9rem;
}
.price-banner__foot i { width: 22px; height: 22px; color: var(--c-accent-3); flex: 0 0 auto; }
.price-banner__foot strong { color: #fff; }
.price-banner__foot a { color: var(--c-accent-3); font-weight: 600; text-decoration: none; }
.price-banner__foot a:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .price-banner { grid-template-columns: 1fr; }
  .price-banner::before { display: none; }
  .price-banner__col + .price-banner__col { border-top: 1px solid var(--c-line); }
  .price-banner__foot { flex-direction: column; text-align: center; }
}

/* -------------------- Global responsive polish -------------------- */
@media (max-width: 1024px) {
  .grid-2 { gap: 24px; }
  section { padding: clamp(48px, 8vw, 96px) 0; }
}
@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.55rem, 5.5vw, 2.1rem); }
  .container { width: min(100% - 24px, var(--container)); }
  .form-wrap { padding: 22px 18px; border-radius: var(--r-lg); }
  .form-row { gap: 14px; margin-bottom: 14px; }
  .form-field input, .form-field select, .form-field textarea { padding: 12px 14px; font-size: .98rem; }
  .btn { padding: 12px 20px; font-size: .92rem; }
  .btn--lg { padding: 14px 22px; }
  .map-wrap { aspect-ratio: 4/3; }
  .crumbs { font-size: .82rem; flex-wrap: wrap; }
  .price-card { padding: 22px 20px; }
  .price__amt strong { font-size: 1.7rem; }
  .gallery-grid { grid-auto-rows: 180px; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  section { padding: clamp(40px, 10vw, 72px) 0; }
  .container { width: min(100% - 20px, var(--container)); }
  .form-wrap { padding: 18px 14px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-1, .g-4, .g-7 { grid-row: auto; grid-column: auto; }
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-row { flex-direction: column; gap: 8px; text-align: center; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .back-to-top { right: 16px; bottom: 16px; }
}

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