/* ============================================================
   ZENITHIA MED PVT. LTD. — Site stylesheet
   Dark royal purple + gold theme (default) with light mode.
   Toggle sets  data-theme="light"  on <html>.
   ============================================================ */

:root {
  /* Dark theme (default) */
  --bg: #150724;
  --bg-2: #1e0b36;
  --bg-3: #2a1245;
  --hero-grad: radial-gradient(1200px 600px at 75% 20%, #4a1d7a55 0%, transparent 60%),
               linear-gradient(160deg, #2c1150 0%, #1a0830 55%, #120520 100%);
  --card: rgba(255, 255, 255, 0.045);
  --card-solid: #241040;
  --card-border: rgba(245, 179, 1, 0.28);
  --card-border-soft: rgba(255, 255, 255, 0.12);
  --text: #f2ecfa;
  --text-muted: #c3b2dd;
  --heading: #ffffff;
  --gold: #f5b301;
  --gold-2: #ffd75e;
  --gold-deep: #c98f00;
  --gold-text: linear-gradient(100deg, #ffe9a0 0%, #f5b301 45%, #ffdf7e 100%);
  --nav-bg: rgba(18, 6, 32, 0.85);
  --footer-bg: #10051d;
  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --glow: 0 0 32px rgba(245, 179, 1, 0.18);
  --ring: rgba(245, 179, 1, 0.45);
  --img-bg: #ffffff;
}

[data-theme="light"] {
  --bg: #faf7ff;
  --bg-2: #f3edfb;
  --bg-3: #ece2f8;
  --hero-grad: radial-gradient(1200px 600px at 75% 20%, #e8d9ff88 0%, transparent 60%),
               linear-gradient(160deg, #f6efff 0%, #efe6fb 55%, #e9ddf8 100%);
  --card: #ffffff;
  --card-solid: #ffffff;
  --card-border: rgba(169, 123, 0, 0.35);
  --card-border-soft: rgba(42, 18, 69, 0.12);
  --text: #33204f;
  --text-muted: #6b5788;
  --heading: #2a1245;
  --gold: #b58400;
  --gold-2: #8f6a00;
  --gold-deep: #8a6500;
  --gold-text: linear-gradient(100deg, #a87c00 0%, #8a6500 50%, #b58400 100%);
  --nav-bg: rgba(255, 253, 250, 0.88);
  --footer-bg: #241040;
  --input-bg: #ffffff;
  --input-border: rgba(42, 18, 69, 0.22);
  --shadow: 0 14px 38px rgba(60, 30, 100, 0.14);
  --glow: 0 0 32px rgba(181, 132, 0, 0.12);
  --ring: rgba(181, 132, 0, 0.45);
  --img-bg: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--heading);
  line-height: 1.22;
}

a { color: var(--gold); text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Gold text helpers ---------- */
.gold-grad {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.9rem; border-radius: 999px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(120deg, #ffd75e, #f5b301 55%, #e5a400);
  color: #2a1245; box-shadow: 0 8px 24px rgba(245, 179, 1, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(245, 179, 1, 0.45); }
.btn-outline {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: rgba(245, 179, 1, 0.12); transform: translateY(-3px); }

/* shimmer sweep on gold buttons */
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 60% { left: -80%; }
  100% { left: 130%; }
}

/* ============================================================
   TOP NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--card-border);
}
/* The tinted blur lives on a pseudo-element, NOT on .site-header itself.
   backdrop-filter on the header would make it a containing block for its
   position:fixed descendants — which would trap the mobile nav drawer inside
   the header box (header-height tall, and its off-canvas transform adding
   ~300px of horizontal page overflow that lets the whole page be swiped
   sideways to reveal the menu). Keeping the filter on ::before preserves the
   look while letting .main-nav position against the viewport. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.gold-bar { height: 3px; background: linear-gradient(90deg, #c98f00, #ffd75e, #c98f00); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }
.brand-name {
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.02rem;
  color: var(--heading); letter-spacing: 0.04em; line-height: 1.2;
}
.brand-name small { display: block; font-size: 0.66rem; font-weight: 500; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a.nav-link {
  color: var(--text); font-weight: 500; font-size: 0.97rem;
  padding: 0.4rem 0.1rem; position: relative;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 0.28s ease;
}
.main-nav a.nav-link:hover::after, .main-nav a.nav-link.active::after { width: 100%; }
.main-nav a.nav-link.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

/* theme toggle */
.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--card-border);
  background: var(--card); color: var(--gold);
  font-size: 1.15rem; cursor: pointer; display: grid; place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.theme-toggle:hover { transform: rotate(18deg) scale(1.06); }

/* burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 26px; height: 3px; border-radius: 3px; background: var(--gold); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  background: var(--hero-grad);
  position: relative; overflow: hidden;
  padding: 5.5rem 0 5rem;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem; align-items: center; position: relative; z-index: 2;
}
.hero-copy { align-self: start; }
.hero-brand {
  font-family: "Cinzel", "Poppins", serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.hero-brand .hb-cap { font-size: 1.24em; }
/* enlarged word-initials (Copperplate-style) while keeping the element's own font */
.icap { font-size: 1.18em; }
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 700; margin-bottom: 1.2rem;
}
.hero p.lead {
  color: var(--text-muted); font-size: 1.06rem; max-width: 34rem; margin-bottom: 2.1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.3rem; }

.cert-row { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.cert-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.88rem; font-weight: 600;
}
.cert-item .ico { color: var(--gold); font-size: 1.05rem; }

/* hero visual: glowing orb + logo + floating capsules */
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.orb {
  width: min(330px, 70vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(245,179,1,0.35), rgba(123,27,240,0.22) 55%, transparent 75%);
  display: grid; place-items: center; position: relative;
  box-shadow: var(--glow);
}
.orb::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1.5px dashed var(--ring);
  animation: rotateBorder 26s linear infinite;
}
@keyframes rotateBorder { to { transform: rotate(360deg); } }
.orb img { width: 72%; filter: drop-shadow(0 16px 34px rgba(0,0,0,0.4)); animation: floatCapsule 5.5s ease-in-out infinite; }

.capsule {
  position: absolute; border-radius: 999px;
  width: 74px; height: 30px;
  background: linear-gradient(90deg, #7b1bf0 50%, #efe6fb 50%);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  animation: floatCapsule 6s ease-in-out infinite;
}
.capsule.gold { background: linear-gradient(90deg, #f5b301 50%, #fff3cf 50%); }
.capsule.small { width: 52px; height: 22px; }
.capsule.c1 { top: 8%; left: 6%; transform: rotate(-24deg); animation-delay: 0.4s; }
.capsule.c2 { bottom: 12%; left: 2%; transform: rotate(18deg); animation-delay: 1.3s; }
.capsule.c3 { top: 16%; right: 4%; transform: rotate(28deg); animation-delay: 0.9s; }
.capsule.c4 { bottom: 6%; right: 10%; transform: rotate(-14deg); animation-delay: 1.8s; }
@keyframes floatCapsule {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

/* ---------- Hero bottle render ---------- */
.hero-bottle-img {
  width: min(730px, 128%);
  margin-top: 1.5rem;
  animation: floatCapsule 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  user-select: none; pointer-events: none;
}

/* ---------- CSS medicine bottle (legacy, kept for reuse) ---------- */
.bottle {
  position: relative; width: 138px;
  animation: floatCapsule 6.5s ease-in-out infinite;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.45));
  z-index: 3;
}
.bottle .cap {
  height: 46px; margin: 0 26px; position: relative;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(180deg, #ffe9a0 0%, #f5b301 40%, #b07d00 100%);
}
.bottle .cap::after {              /* cap ridges */
  content: ""; position: absolute; inset: 6px 0;
  background: repeating-linear-gradient(90deg, transparent 0 6px, rgba(90, 60, 0, 0.25) 6px 8px);
  border-radius: 6px;
}
.bottle .neck {
  height: 12px; margin: 0 34px;
  background: linear-gradient(180deg, #2c1150, #47207a);
}
.bottle .body {
  height: 235px; border-radius: 24px; position: relative; overflow: hidden;
  background: linear-gradient(100deg, #6b34a8 0%, #47207a 38%, #2c1150 78%, #24103f 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.bottle .body::before {            /* glossy vertical highlight */
  content: ""; position: absolute; top: 6%; bottom: 6%; left: 10%; width: 16%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
  filter: blur(3px);
}
.bottle .body::after {             /* rim light on the right */
  content: ""; position: absolute; top: 8%; bottom: 8%; right: 5%; width: 5px;
  border-radius: 999px; background: rgba(255, 215, 94, 0.35); filter: blur(2px);
}
.bottle .label {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  padding: 0.7rem 0.4rem; text-align: center;
  background: linear-gradient(180deg, #f7e6bd, #eccf8f);
  border-top: 3px solid #b07d00; border-bottom: 3px solid #b07d00;
}
.bottle .label img { width: 44px; height: 44px; margin: 0 auto 4px; }
.bottle .label b {
  display: block; font-family: "Poppins", sans-serif; font-size: 0.62rem;
  letter-spacing: 0.14em; color: #3d1d66;
}
.bottle .label small { font-size: 0.5rem; color: #7a5a13; letter-spacing: 0.08em; }

/* floating logo badge beside the bottle */
.logo-float {
  position: absolute; top: -8%; right: -4%; z-index: 4;
  width: 220px; height: 220px; border-radius: 50%; padding: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 214, 0.01));
  border: 2px solid var(--gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), var(--glow);
  display: grid; place-items: center;
  animation: floatCapsule 6s ease-in-out infinite;
}
.logo-float img { width: 100%; height: 100%; object-fit: contain; }

/* twinkling sparkles */
.sparkle {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2); opacity: 0.7;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 0.9; transform: scale(1.25); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section.block { padding: 4.6rem 0; }
section.block.alt { background: var(--bg-2); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700;
}
.section-title h2.serif { font-family: "Playfair Display", Georgia, serif; }
.section-title .flourish {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin-top: 0.9rem; color: var(--gold);
}
.section-title .flourish::before,
.section-title .flourish::after {
  content: ""; height: 1.5px; width: 90px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-title .flourish::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-title p.sub { color: var(--text-muted); max-width: 42rem; margin: 0.9rem auto 0; }

/* ---------- Why choose us (glassmorphism on decorated bg) ---------- */
.glass-section {
  position: relative; overflow: hidden;
  background: var(--hero-grad);
}
.glass-section::before,
.glass-section::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; opacity: 0.55;
}
.glass-section::before {
  width: 460px; height: 460px; top: -140px; left: -120px;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.35), transparent 70%);
}
.glass-section::after {
  width: 520px; height: 520px; bottom: -180px; right: -140px;
  background: radial-gradient(circle, rgba(123, 27, 240, 0.45), transparent 70%);
}
.glass-section .container { position: relative; z-index: 2; }
.dots {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255, 215, 94, 0.22) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}
[data-theme="light"] .dots {
  background-image: radial-gradient(rgba(138, 101, 0, 0.25) 1.5px, transparent 1.5px);
}

/* subtle decorated background for regular sections */
.deco { position: relative; overflow: hidden; }
.deco::before, .deco::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(85px); opacity: 0.32; pointer-events: none;
}
.deco::before {
  width: 430px; height: 430px; top: -130px; right: -110px;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.34), transparent 70%);
}
.deco::after {
  width: 500px; height: 500px; bottom: -170px; left: -130px;
  background: radial-gradient(circle, rgba(123, 27, 240, 0.42), transparent 70%);
}
[data-theme="light"] .deco::before { opacity: 0.35; }
[data-theme="light"] .deco::after { opacity: 0.22; }
.deco > .container { position: relative; z-index: 2; }
.deco .dots { opacity: 0.3; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.why-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-left-color: rgba(255, 255, 255, 0.4);
  border-radius: 18px; padding: 1.7rem 1.8rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
}
[data-theme="light"] .why-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45));
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 45px rgba(70, 35, 120, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
/* glossy sheen sweeping across the glass */
.why-card::before {
  content: ""; position: absolute; top: -20%; left: -70%;
  width: 55%; height: 140%; transform: skewX(-22deg);
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.why-card:hover::before { left: 130%; }
/* static top-glass highlight */
.why-card::after {
  content: ""; position: absolute; inset: 0 0 55% 0; border-radius: 18px 18px 60% 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent);
  pointer-events: none;
}
.why-card:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: 0 30px 55px rgba(0,0,0,0.35), var(--glow); }
.why-ico {
  flex: 0 0 58px; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd75e, #f5b301);
  color: #2a1245; font-size: 1.5rem;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(245, 179, 1, 0.35);
}
.why-card h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.why-card p { color: var(--text-muted); font-size: 0.94rem; }

/* ---- Provided PNG icons (self-contained yellow circles) ---- */
.why-ico.ic, .stat-pill .ico.ic, .stat-item .ico.ic {
  background: none; box-shadow: none; padding: 0;
}
.why-ico.ic img, .stat-pill .ico.ic img, .stat-item .ico.ic img {
  width: 100%; height: 100%; object-fit: contain;
}

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-left-color: rgba(255, 255, 255, 0.4);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  display: flex; flex-direction: column;
  position: relative;
}
[data-theme="light"] .product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 45px rgba(70, 35, 120, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
/* glossy sheen sweeping across the glass on hover */
.product-card::before {
  content: ""; position: absolute; top: -20%; left: -70%;
  width: 55%; height: 140%; transform: skewX(-22deg);
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  transition: left 0.7s ease;
  pointer-events: none; z-index: 2;
}
.product-card:hover::before { left: 130%; }
.product-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35), var(--glow); }
.product-img {
  background: var(--img-bg); height: 215px;
  display: grid; place-items: center; padding: 1rem;
  border-bottom: 2px solid var(--gold);
  position: relative; overflow: hidden;
}
.product-img img { max-height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(120deg, #ffd75e, #f5b301);
  color: #2a1245; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.product-tag.soon { background: linear-gradient(120deg, #b78ef7, #7b1bf0); color: #fff; }
.product-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.18rem; color: var(--gold); margin-bottom: 0.35rem; }
.product-body .compo { font-size: 0.92rem; color: var(--text); font-weight: 500; margin-bottom: 0.45rem; }
.product-body .pack { font-size: 0.84rem; color: var(--text-muted); margin-top: auto; display: flex; align-items: center; gap: 0.45rem; }

/* filter chips (products page) */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 2.6rem; }
.chip {
  padding: 0.5rem 1.25rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--card-border); background: var(--card);
  color: var(--text); font-family: "Poppins", sans-serif; font-size: 0.88rem; font-weight: 500;
  transition: 0.25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.active { background: linear-gradient(120deg, #ffd75e, #f5b301); color: #2a1245; border-color: transparent; font-weight: 700; }

/* ---------- Director + stats ---------- */
.director-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.6rem; align-items: stretch; }
/* grid tracks default to min-width:auto, so a wide item can push the whole
   track past the container. Let the columns shrink instead. */
.director-grid > * { min-width: 0; }
.director-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 2.2rem; text-align: center;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.director-card h3 { font-family: "Playfair Display", serif; font-size: 1.45rem; color: var(--gold); margin-bottom: 1.4rem; }
.director-card .photo {
  width: 300px; height: 300px; margin: 0.4rem auto 1.8rem;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 214, 0.05));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), var(--glow);
}
.director-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.85); transform-origin: center 24%;
  background: none;
}
.director-card blockquote {
  font-style: italic; color: var(--text); font-size: 1.02rem;
  max-width: 34rem; margin: 0 auto 1.2rem;
}
.director-card blockquote .qm,
.team-msg .qm { font-family: Georgia, serif; font-size: 1.5em; font-weight: 700; color: var(--gold); vertical-align: -0.3em; line-height: 1; }
.director-card blockquote .qm:first-child,
.team-msg .qm:first-child { margin-right: 0.1em; }
.director-card blockquote .qm:last-child,
.team-msg .qm:last-child { margin-left: 0.1em; }
.director-card .sign { font-weight: 700; color: var(--gold); font-family: "Poppins", sans-serif; }
.director-card .role { color: var(--gold); font-size: 0.9rem; }

/* ---------- Shared photo frame ----------
   Generalised form of the .director-card .photo treatment above: gold rim,
   light plate behind transparent PNGs, glow, and a cover-fit image whose crop
   is tuned per photo with --zoom / --focus (the director's hardcoded
   scale(1.85) / origin center 24% is the same idea, exposed as variables).
   Set them inline on the frame, e.g. style="--zoom:1.4; --focus:center 30%". */
.photo-frame {
  --zoom: 1;
  --focus: center center;
  position: relative; overflow: hidden;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 214, 0.05));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), var(--glow);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* --fit is the escape hatch for when the cover-crop anchor has to differ from
     the zoom origin. It is deliberately NOT declared on .photo-frame as
     `--fit: var(--focus)`: that substitutes --focus at the FRAME, so a --focus
     set further down the tree (the carousel sets it per .car-slide, inside the
     frame) would be ignored and the crop would silently stay centred. Resolving
     the fallback here, on the image itself, picks up whichever --focus is
     actually in scope. */
  object-position: var(--fit, var(--focus));
  transform: scale(var(--zoom)); transform-origin: var(--focus);
  background: none;
}

.stats-col { display: flex; flex-direction: column; gap: 1.1rem; }
.stat-pill {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 999px; padding: 1rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-pill:hover { transform: translateX(8px); border-color: var(--gold); }
.stat-pill .ico {
  width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd75e, #f5b301);
  display: grid; place-items: center; font-size: 1.35rem; color: #2a1245;
}
.stat-pill b { font-size: 1.35rem; font-family: "Poppins", sans-serif; color: var(--gold); display: block; line-height: 1.1; }
.stat-pill span { color: var(--text-muted); font-size: 0.92rem; }

/* four stats grouped into one box (2×2) */
.stats-box {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 1.7rem; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.3rem;
}
.stat-item { display: flex; align-items: center; gap: 0.95rem; }
.stat-item .ico {
  width: 54px; height: 54px; flex: 0 0 54px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd75e, #f5b301);
  display: grid; place-items: center; font-size: 1.35rem; color: #2a1245;
}
.stat-item b { font-size: 1.4rem; font-family: "Poppins", sans-serif; color: var(--gold); display: block; line-height: 1.1; }
.stat-item span { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 460px) { .stats-box { grid-template-columns: 1fr; } }

.coverage-card {
  flex: 1; background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 1.8rem; text-align: center;
  box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  position: relative; overflow: hidden;
}
.coverage-card h4 { color: var(--gold); font-size: 1.05rem; }
.pin-row { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.pin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--input-bg); border: 1px solid var(--card-border);
  padding: 0.45rem 1.1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; color: var(--text);
}
.pin .dot { color: var(--gold); }

/* ---------- Image carousel (coverage card) ----------
   The carousel lives in .stats-col, whose .coverage-card is flex:1 so the right
   column stays flush with the director card. Everything here is height-elastic:
   .car-viewport grows into whatever height is left instead of dictating it, and
   slides are absolutely positioned so a crossfade never shifts layout. */
.coverage-card { min-height: 0; }

.carousel { display: flex; flex-direction: column; gap: 0.9rem; flex: 1; min-height: 0; }
.carousel:focus { outline: none; }
.carousel:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; border-radius: 18px; }

.car-viewport {
  position: relative; flex: 1; min-height: 200px;
  border-radius: 16px;
}
.car-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}
.car-slide.is-active { opacity: 1; visibility: visible; transition: opacity 0.8s ease, visibility 0s; }
.car-slide img { width: 100%; height: 100%; }
.car-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(21, 7, 36, 0.82));
  color: #fff; font-family: "Poppins", sans-serif;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* prev / next controls */
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, #ffd75e, #f5b301);
  color: #2a1245; font-size: 1.05rem; line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  opacity: 0.55; transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
}
.car-viewport:hover .car-btn { opacity: 1; }
.car-btn:hover { opacity: 1; transform: translateY(-50%) scale(1.1); }
.car-btn:focus-visible { opacity: 1; outline: 2px solid var(--gold); outline-offset: 3px; }
.car-prev { left: 10px; }
.car-next { right: 10px; }

/* dots */
.car-dots { display: flex; justify-content: center; gap: 0.5rem; }
.car-dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--card-border); background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.car-dots button:hover { border-color: var(--gold); }
.car-dots button[aria-current="true"] {
  background: var(--gold); border-color: var(--gold); transform: scale(1.25);
}
.car-dots button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--hero-grad);
  padding: 4.2rem 0 3.6rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.7rem; }
.page-hero p { color: var(--text-muted); max-width: 44rem; margin: 0 auto; }
.crumbs { margin-top: 1.1rem; font-size: 0.88rem; color: var(--text-muted); }
.crumbs a { color: var(--gold); }

/* ---------- About / research content ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.two-col .img-frame {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pillar {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 1.9rem 1.6rem; text-align: center;
  box-shadow: var(--shadow); transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--gold); }
.pillar .why-ico { margin: 0 auto 1.1rem; }
.pillar h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- Meet our team (about page) ----------
   Card chrome mirrors .pillar above so the two adjacent sections read as one
   family; the photo reuses .photo-frame, i.e. the director's treatment. */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.team-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 2rem 1.6rem 1.9rem; text-align: center;
  box-shadow: var(--shadow); transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.team-photo {
  width: 200px; height: 200px; margin: 0 auto 1.3rem;
  border-radius: 50%;
}
/* the message takes the slack so the signature, name and designation line up
   across cards even when the messages differ in length. Left-aligned: these run
   to several paragraphs, and centred body copy of that length is hard to read —
   the rest of the card stays centred. */
.team-msg {
  color: var(--text-muted); font-size: 0.92rem;
  margin: 0 0 1.3rem; flex: 1; text-align: left;
}
.team-msg p + p { margin-top: 0.7rem; }
/* ---- Signature ----
   The signature file is a transparent PNG or SVG (opaque strokes, nothing else)
   used as a MASK rather than an <img>, so the ink is painted with var(--gold)
   and follows the theme — one file works in both light and dark mode, whatever
   colour the original was drawn in.

   mask-image is set inline per card, NOT via a custom property: a relative
   url() inside a custom property resolves against this stylesheet's folder
   (assets/css/) instead of the page, which silently breaks the path. */
.team-sign {
  /* box is sized for a roughly 1.6:1 signature (the aspect the supplied scans
     come in at); mask-size: contain letterboxes anything narrower or wider. */
  width: min(200px, 80%); height: 90px; margin: 0 auto 0.9rem;
  background-color: var(--gold);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
  /* explicit: the ink is defined by the file's TRANSPARENCY, not its brightness.
     A signature on an opaque white background would come out a solid gold block. */
  -webkit-mask-source-type: alpha; mask-mode: alpha;
}
/* gold, matching .director-card h3 on the homepage */
.team-card h3 { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.2rem; }
.team-card .team-role {
  color: var(--gold); font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: 0.87rem; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: 0;
}

.check-list { list-style: none; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 1.6rem; color: var(--text-muted); }
.check-list li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 2.3rem; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--heading); }
.field label .req { color: #e5484d; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--input-border); background: var(--input-bg);
  color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field select option { background: var(--card-solid); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }

.file-drop {
  border: 2px dashed var(--input-border); border-radius: 14px;
  padding: 1.6rem; text-align: center; cursor: pointer;
  color: var(--text-muted); transition: 0.25s ease; background: var(--input-bg);
}
.file-drop:hover, .file-drop.drag { border-color: var(--gold); color: var(--gold); }
.file-drop .ico { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; color: var(--gold); }
.file-drop input { display: none; }

.form-status { margin-top: 1.1rem; padding: 0.9rem 1.2rem; border-radius: 12px; font-weight: 600; display: none; }
.form-status.ok { display: block; background: rgba(46, 160, 67, 0.15); color: #4ade80; border: 1px solid rgba(46,160,67,0.4); }
.form-status.err { display: block; background: rgba(229, 72, 77, 0.12); color: #f87171; border: 1px solid rgba(229,72,77,0.4); }
[data-theme="light"] .form-status.ok { color: #15803d; }
[data-theme="light"] .form-status.err { color: #b91c1c; }

/* ---------- Contact info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.info-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 1.5rem 1.6rem; box-shadow: var(--shadow);
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-card .why-ico { flex: 0 0 48px; width: 48px; height: 48px; font-size: 1.15rem; }
.info-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.info-card p, .info-card a { color: var(--text-muted); font-size: 0.92rem; word-break: break-word; }
.info-card a:hover { color: var(--gold); }

.map-frame {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border);
  box-shadow: var(--shadow); height: 100%; min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #f5b301, #ffd75e 50%, #f5b301);
  padding: 3.2rem 0; text-align: center;
}
.cta-band h2 { color: #2a1245; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.6rem; }
.cta-band p { color: #4a2a72; margin-bottom: 1.6rem; font-weight: 500; }
.cta-band .btn { background: #2a1245; color: #ffd75e; }
.cta-band .btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(42, 18, 69, 0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
/* Footer replicates the client's existing site: background image + glass panel,
   3 centered columns (CONTACT | brand | REGISTERED OFFICE) with gold dividers. */
.site-footer {
  position: relative; color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(900px 420px at 82% 0%, rgba(123, 27, 240, 0.30), transparent 62%),
    radial-gradient(760px 400px at 8% 100%, rgba(245, 179, 1, 0.14), transparent 62%),
    linear-gradient(160deg, #2c1150 0%, #1a0830 55%, #120520 100%);
  border-top: 5px solid #ffae00;
  overflow: hidden;
}
.site-footer .dots { opacity: 0.35; }
.footer-glass {
  position: relative; z-index: 2;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2.4rem;
}
.footer-grid3 {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2.2rem; text-align: center; align-items: start;
}
.site-footer h3 {
  color: rgba(255, 255, 255, 0.95); font-size: 1.02rem;
  letter-spacing: 0.12em; margin-bottom: 1.1rem; font-family: "Poppins", sans-serif;
}
.site-footer p { font-size: 0.93rem; color: rgba(255, 255, 255, 0.9); }
.site-footer a { color: #daa520; }
.site-footer a:hover { color: #ffd75e; }
.site-footer .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd75e, #f5b301);
  color: #2a1245; font-size: 0.9rem; line-height: 1;
  vertical-align: middle; margin-right: 0.55rem;
  box-shadow: 0 4px 10px rgba(245, 179, 1, 0.3);
}
/* Left/right footer columns: left-align items in a centered block so all
   contact icons line up vertically and wrapped text stays in sync. */
.footer-grid3 > div:not(.f-brand) { text-align: left; }
.footer-grid3 > div:not(.f-brand) h3 { text-align: center; }
.footer-grid3 > div:not(.f-brand) > p {
  display: flex; align-items: center;
  max-width: 300px; margin-left: auto; margin-right: auto;
}
.f-div {
  border: none; border-top: 1.5px solid #daa520; opacity: 0.75;
  width: 88%; margin: 1rem auto;
}
.footer-grid3 > div:not(.f-brand) > .f-div { max-width: 300px; }
.f-brand { display: flex; flex-direction: column; align-items: center; }
.f-logo {
  height: 106px; width: 106px; border-radius: 50%;
  border: 2px solid rgba(218, 168, 32, 0.7); background: #fff; padding: 4px;
  margin-bottom: 0.8rem;
}
.f-links { line-height: 2; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; justify-content: center; }
.social-row a {
  width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center;
  color: #daa520; font-size: 1rem; font-weight: 700;
  background: rgba(244, 244, 244, 0.18);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.25s ease; overflow: hidden;
}
.social-row a:hover { transform: translateY(-5px); background: #ffd75e; color: #2a1245; }
.footer-bottom {
  position: relative; border-top: 5px solid #ffae00;
  background: rgba(38, 2, 95, 0.963);
  padding: 1rem 0; text-align: center; font-size: 0.88rem; color: #fff;
}
.footer-bottom strong { color: #ffd75e; }
.footer-credit { display:block; margin-top:0.35rem; font-size:0.78rem; color:rgba(255,255,255,0.6); }
.footer-credit a { color:#ffd75e; text-decoration:none; }
.footer-credit a:hover { text-decoration:underline; }

/* back to top */
#backtotop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd75e, #f5b301); color: #2a1245;
  display: grid; place-items: center; font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: 0.3s ease;
}
#backtotop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner, .director-grid, .two-col { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; order: -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid3 { grid-template-columns: 1fr; }
  .logo-float { width: 130px; height: 130px; top: -6%; right: 0; }
  /* director-grid is single-column here, so the viewport loses its stretch
     parent — give it an intrinsic ratio so it cannot collapse.
     Deliberately NO min-height: combined with aspect-ratio it would give the
     element a min-content width (min-height x ratio) that blows the 1fr track
     — and every item in it, including the director card — past the container. */
  .car-viewport { aspect-ratio: 4 / 3; min-height: 0; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--bg-2); flex-direction: column; align-items: flex-start;
    padding: 5.5rem 2rem 2rem; gap: 1.3rem;
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateX(100%);
    /* hidden until the burger is tapped: visibility (not just the transform)
       keeps the closed drawer out of the tab order and un-revealable. */
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    box-shadow: -18px 0 40px rgba(0,0,0,0.4); z-index: 99;
  }
  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s ease, visibility 0s linear 0s;
  }
  .main-nav a.nav-link { font-size: 1.1rem; }
  /* dim the page behind the open drawer — the header and drawer both sit in
     the header's stacking context (z-index 100) and stay above it. */
  body.nav-open::before {
    content: ""; position: fixed; inset: 0; z-index: 98;
    background: rgba(0, 0, 0, 0.5);
  }
  .burger { display: flex; z-index: 101; }
  .nav-cta-desktop { display: none; }
  .why-grid, .info-grid, .form-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .pillar-grid, .team-grid { grid-template-columns: 1fr; }
  .site-footer { background-attachment: scroll; }
  .brand-name { font-size: 0.9rem; }
  section.block { padding: 3.2rem 0; }
  .team-photo { width: 170px; height: 170px; }
  .car-btn { opacity: 1; }
  /* the 300px photo is wider than the card's content box on a phone — let it
     shrink to fit while staying a circle. */
  .director-card { padding: 1.8rem 1.3rem; }
  .director-card .photo { width: min(300px, 100%); height: auto; aspect-ratio: 1; }
  .coverage-card { padding: 1.5rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .car-slide { transition: none; }
  .car-btn, .car-dots button { transition: none; }
}
