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

:root {
  --bg:           #0D0D0D;
  --bg-warm:      #100F0C;
  --bg-raised:    #131210;
  --bg-banner:    #151310;
  --bg-close:     #171512;
  --border:       rgba(255, 255, 255, 0.07);
  --text:         #F2F3F5;
  --text-2:       #B8BCC6;
  --text-3:       #6A7080;
  --accent:       #F5A300;
  --accent-hover: #FFAF1A;
  --accent-muted: rgba(245, 163, 0, 0.10);
  --accent-line:  rgba(245, 163, 0, 0.28);
  --cta-text:     #0D0D0D;
  --input-bg:     #0F0E0B;
  --font-display: 'IBM Plex Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font:         var(--font-body);
  --section-y:    clamp(4rem, 8vw, 6.25rem);
  --section-x:    clamp(1.5rem, 5vw, 4rem);
  --radius:       0;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (min-width: 1280px) {
  body { font-size: 16px; }
}

/* DIAGONAL TEXTURE */
.texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='0' y1='60' x2='60' y2='0' stroke='%23ffffff' stroke-width='0.5' opacity='0.035'/%3E%3C/svg%3E");
}

/* CALIBRATION MARK — short gold rule before section headings */
.sec-mark::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0.78;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }

/* TOP ACCENT */
.top-accent {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 400;
  background: var(--accent);
}

/* NAV */
.nav {
  position: fixed; top: 2px; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 var(--section-x);
  background: rgba(13, 13, 13, 0.97);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none; padding: 0 16px; height: 44px;
  display: flex; align-items: center;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cta-text);
  background: var(--accent); padding: 10px 22px;
  text-decoration: none; display: flex; align-items: center; gap: 7px;
  transition: background .15s, opacity .3s ease;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-cta:active { transform: scale(0.97); }
.nav--on-hero .nav-cta { opacity: 0; pointer-events: none; }

/* HERO */
.hero {
  min-height: 100dvh;
  background-color: var(--bg);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  display: block; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.42) 50%,
    rgba(13, 13, 13, 0.88) 100%
  );
  z-index: 1; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: calc(80px + 64px) var(--section-x) 96px;
  display: flex; align-items: flex-end;
  min-height: 100dvh;
}
.hero-left { display: flex; flex-direction: column; max-width: 720px; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.82;
  margin-bottom: 20px;
}
.hero-hed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 8px;
  display: flex; flex-direction: column;
}
.hero-hed .accent { color: var(--accent); font-weight: 700; }
.hero-since {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cta-text); background: var(--accent);
  padding: 14px 28px;
  text-decoration: none; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text); background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 13px 26px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.5); color: var(--text); }
.btn-ghost:active { transform: scale(0.97); }

/* STATS BAR */
.stats-bar {
  background: var(--bg-raised);
  border-top: 1px solid var(--accent-line);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1280px; margin: 0 auto;
}
.stat {
  padding: 28px 36px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text); line-height: 1; letter-spacing: -0.025em;
}
.stat-val .suf { font-size: 22px; color: var(--accent); font-weight: 700; }
.stat-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3); margin-top: 10px;
}

/* SECTION BASE */
.section { padding: var(--section-y) var(--section-x); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.sec-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--text); margin: 0;
}
.sec-h2 strong { font-weight: 700; }
.sec-h2 em { font-style: normal; color: var(--text-2); font-weight: 400; }

/* BRANDS */
.brands-section {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E"),
    linear-gradient(145deg, #0D0B07 0%, #221A07 50%, #0F0D08 100%);
  padding: var(--section-y) 0;
}
.brands-hd {
  display: block;
  margin-bottom: 52px;
  padding: 0 var(--section-x);
}
.brands-hd .sec-h2 {
  max-width: 1280px;
  margin: 0 auto;
}
.brands-ticker {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: end;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.brands-ticker:hover .brands-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-ticker-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 3.5rem;
}
.brand-ticker-logo {
  height: 56px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: opacity(0.85);
  transition: filter 0.5s ease;
}
.brand-ticker-item:hover .brand-ticker-logo {
  filter: opacity(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}
.brand-ticker-logo[src*="varroc.svg"] {
  filter: brightness(0) invert(1) opacity(0.72);
}.brand-ticker-item:hover .brand-ticker-logo[src*="varroc.svg"] {
  filter: brightness(0) invert(1) opacity(0.95);
}

/* COVERAGE */
.coverage-section {
  background-color: var(--bg-warm);
}
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: stretch;
}
.coverage-left { display: flex; flex-direction: column; }
.coverage-body {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  color: var(--text-2); line-height: 1.8;
  margin-top: 24px; max-width: 420px;
  margin-bottom: 0;
}
.cov-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cov-stat-col {
  padding: 28px 0 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.cov-stat-col:first-child { padding-left: 0; }
.cov-stat-col:last-child { border-right: none; }
.cov-stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 0.5rem;
}
.cov-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1;
  color: var(--text);
  display: block;
  letter-spacing: -0.025em;
}
.cov-stat-num .isuf {
  font-size: 0.42em;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 3px;
}
.coverage-right {
  display: flex; flex-direction: column;
  min-height: 520px;
}
.coverage-right > img {
  flex: 1; width: 100%; height: 100%;
  object-fit: contain;
}
.coverage-frame {
  position: relative;
  flex: 1;
  min-height: 360px;
  overflow: hidden;
  background: var(--bg-raised);
}
.coverage-frame img {
  display: block; width: 100%; height: 100%;
  object-fit: contain; padding: 12px;
}
.coverage-frame-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(13, 13, 13, 0.55) 100%);
  pointer-events: none;
}
.coverage-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--accent); color: var(--cta-text);
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 16px 22px;
}

/* ABOUT */
.about-section {
  background: var(--bg);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
/* Filmstrip — award photos with connecting vertical rail */
.about-filmstrip {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: stretch;
}
.filmstrip-frame {
  flex: 1;
  min-width: 0;
}
.filmstrip-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-content { display: flex; flex-direction: column; }
.about-body {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  color: var(--text-2); line-height: 1.8;
  margin-top: 24px; margin-bottom: 36px;
}
.about-body p + p { margin-top: 16px; }
.about-content .vm-heading {
  margin-bottom: 16px;
}
/* Values — clean stacked list, no cards, no borders-per-item boxes */
.about-vals {
  display: flex;
  flex-direction: column;
}
.about-val {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--text-2);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.about-val:last-child { border-bottom: none; }

/* VISION / MISSION STRIP */
.vm-strip {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #0D0B09 0%, #0A1E35 50%, #091829 100%);
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid var(--border);
}
.vm-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.vm-col {
  padding: 0;
}
.vm-heading {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent); opacity: 0.72; margin-bottom: 16px;
}
.vm-body {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  color: var(--text-2); line-height: 1.85;
  max-width: 480px;
}

/* VISION 2030 STRIP */
.v2030-strip {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #091829 0%, #0F0D0B 55%, #130F07 100%);
  padding: var(--section-y) var(--section-x);
  position: relative;
  overflow: hidden;
}
/* "2030" as giant faint typographic background anchor */
.v2030-bg-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(9rem, 22vw, 20rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.038;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
.v2030-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  position: relative; z-index: 1;
}
.v2030-label {
  display: flex; flex-direction: column; justify-content: center;
}
.v2030-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.04;
}
.v2030-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.v2030-list li {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  color: var(--text); line-height: 1.75;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.v2030-list li:first-child { border-top: 1px solid var(--border); }

/* WHY PARTNER — ordinal editorial 2-column layout */
.why-section {
  background: var(--bg);
}
.why-section .sec-h2 {
  margin-bottom: 52px;
}
.why-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.why-item {
  display: grid;
  grid-template-columns: clamp(140px, 18vw, 260px) 1fr;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-item:last-child { border-bottom: none; }
.why-ordinal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.28;
  flex-shrink: 0;
  min-width: 3ch;
  letter-spacing: -0.02em;
}
.why-body { display: flex; flex-direction: column; }
.why-item-hd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.why-item-txt {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 640px;
}

/* CONTACT */
.contact-section {
  background: var(--bg-raised);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.contact-hed {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px); font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text); line-height: 1.04; margin-bottom: 36px;
}
.contact-blocks { display: flex; flex-direction: column; gap: 24px; }
.contact-block {
  padding: 0;
}
.contact-label {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent); margin-bottom: 7px;
  display: block;
}
.contact-val {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400;
  color: var(--text-2); line-height: 1.65;
}
.contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit; text-decoration: none;
  transition: color .15s;
}
.contact-link:hover { color: var(--accent-hover); }
.contact-link svg { opacity: 0.3; flex-shrink: 0; transition: opacity .15s; }
.contact-link:hover svg { opacity: 0.7; }
.contact-sub-val {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--text-3); margin-top: 3px;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; }
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.form-row-2 .form-group { margin-bottom: 0; }
.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  padding: 12px 14px;
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236A7080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta-text); background: var(--accent);
  border: none; padding: 14px 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
  width: 100%; margin-top: 6px;
}
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:active { transform: scale(0.97); }

/* FOOTER */
.footer {
  background: var(--bg);
  padding: 22px var(--section-x);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  color: var(--text-3); letter-spacing: 0.04em;
}
.footer-insta {
  color: var(--text-3); text-decoration: none;
  display: flex; align-items: center;
  transition: color .15s;
}
.footer-insta:hover { color: var(--accent-hover); }

/* FOCUS */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: calc(72px + 64px) var(--section-x) 60px;
    min-height: auto;
  }
  .hero-hed { font-size: clamp(40px, 10vw, 68px); line-height: 1.06; }

  .stat { padding: 18px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-val { font-size: 38px; }
  .stat-val .suf { font-size: 22px; }

  .brands-section { padding: var(--section-y) 0; }
  .brands-hd { margin-bottom: 36px; }
  .brand-ticker-item { padding: 1.5rem 2.25rem; }
  .brand-ticker-logo { height: 40px; max-width: 120px; }

  .coverage-grid { grid-template-columns: 1fr; gap: 32px; }
  .coverage-right { min-height: 320px; }
  .cov-stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
  .cov-stat-col { padding: 20px 0 20px 20px; }
  .cov-stat-col:nth-child(2) { border-right: none; }
  .cov-stat-col:nth-child(3) { padding-left: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-filmstrip { padding-left: 1.5rem; }

  .vm-inner { grid-template-columns: 1fr; gap: 36px; }

  .v2030-inner { grid-template-columns: 1fr; gap: 28px; }
  .v2030-bg-num { font-size: clamp(6rem, 28vw, 10rem); }

  .why-item { grid-template-columns: 80px 1fr; padding: 2rem 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer-insta { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
