/* ============================================================
   WHITETAIL THEORY — shared styles
   ============================================================ */

:root {
  --black:      #0a0d0b;   /* timber at last light — green-black */
  --panel:      #10140f;
  --panel-2:    #171c15;
  --line:       #2b322a;
  --bone:       #ece7d9;   /* antler / bone — primary light tone */
  --muted:      #9aa091;
  --rust:       #b5502a;   /* burnt blaze — the accent */
  --rust-soft:  #d67542;
  --moss:       #6d7a52;   /* dead cornstalk / faded field */
  --maxw:       1180px;
  --font-disp:  "Oswald", "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Display type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-disp);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-disp);
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rust-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust));
}
.section-head.center .eyebrow,
.featured .eyebrow { justify-content: center; }

/* antler rule — echoes the tapered line under the logo wordmark */
.antler-rule {
  height: 2px; width: 120px;
  background: linear-gradient(90deg, transparent, var(--rust) 25%, var(--rust) 75%, transparent);
  margin: 22px auto 0;
  position: relative;
}
.antler-rule::before {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rust-soft);
  transform: translate(-50%,-50%);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,12,11,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-header .logo img { height: 30px; width: auto; }

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav a {
  font-family: var(--font-disp);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--bone);
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}
.nav a:hover { opacity: 1; color: var(--rust-soft); }

.nav .yt-pill {
  border: 1px solid var(--rust);
  color: var(--rust-soft);
  padding: 8px 16px;
  border-radius: 2px;
  opacity: 1;
}
.nav .yt-pill:hover {
  background: var(--rust);
  color: var(--black);
}

.menu-btn { display: none; background: none; border: 0; color: var(--bone); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.7) contrast(1.02) saturate(1.1);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,13,11,0.40) 0%, rgba(10,13,11,0.12) 45%, rgba(10,13,11,0.70) 100%),
    linear-gradient(90deg, rgba(10,13,11,0.58) 0%, rgba(10,13,11,0.12) 60%, rgba(10,13,11,0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8);
}
.hero-inner .eyebrow { justify-content: center; }
.hero-inner .btn-row { justify-content: center; }
.hero-inner .eyebrow { text-shadow: none; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  margin: 18px 0 6px;
  line-height: 0.98;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero h1 .thin {
  display:block;
  color: var(--rust-soft);
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  letter-spacing: 0.14em;
  margin-top: 16px;
  font-weight: 600;
  white-space: normal;
}
.hero .sub {
  font-size: 1.12rem;
  line-height: 1.55;
  color: #f0ede4;
  max-width: 560px;
  margin: 22px auto 32px;
}
.hero .sub strong { color: #fff; font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-disp);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--rust); color: var(--black); font-weight: 600; }
.btn-gold:hover { background: var(--rust-soft); }
.btn-ghost { border: 1px solid var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--rust); color: var(--rust-soft); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 26px; right: 32px;
  z-index: 3; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-family: var(--font-disp);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 96px 0; }
.section-head { margin-bottom: 46px; max-width: 640px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 14px 0 18px; }
.section-head h2::after {
  content: "";
  display: block;
  height: 2px; width: 88px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--rust) 0%, var(--rust) 70%, transparent);
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center h2::after { margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--rust) 30%, var(--rust) 70%, transparent); }
.section.alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ============================================================
   LATEST VIDEOS (funnel to YouTube)
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.video-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.video-card:hover { border-color: var(--rust); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000 center/cover;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: background-size 0.6s cubic-bezier(.2,.8,.2,1);
  background-size: 100%;
}

.video-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.video-card:hover .video-thumb::before { background: rgba(0,0,0,0); }
.play-badge {
  position: relative; z-index: 2;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(181,80,42,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(181,80,42,0.18), 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.play-badge svg { width: 22px; height: 22px; fill: #000; margin-left: 3px; }
.video-meta { padding: 16px 18px 20px; }
.video-meta h3 { font-size: 1.15rem; letter-spacing: 0.01em; }
.video-meta .tag { font-family: var(--font-disp); letter-spacing: 0.2em; font-size: 0.68rem; color: var(--rust-soft); text-transform: uppercase; }

/* ============================================================
   GEAR
   ============================================================ */
.gear-band-note {
  font-size: 0.85rem; color: var(--muted); margin-top: 10px;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.gear-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.gear-card:hover { border-color: var(--rust); }
.gear-img {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  background: #171c15;
  border-bottom: 1px solid rgba(236,231,217,0.08);
  overflow: hidden;
}
.gear-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.gear-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gear-body .cat { font-family: var(--font-disp); letter-spacing: 0.2em; font-size: 0.64rem; color: var(--rust-soft); text-transform: uppercase; }
.gear-body h3 { font-size: 1.02rem; text-transform: none; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.gear-body p { font-size: 0.85rem; color: var(--muted); flex: 1; }
.gear-buy {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--rust);
  color: var(--rust-soft);
  font-family: var(--font-disp); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.8rem; padding: 11px 14px; border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.gear-buy:hover { background: var(--rust); color: var(--black); }

/* ============================================================
   BRAND STORY
   ============================================================ */
.story {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.story::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(11,12,11,0.9) 0%, rgba(11,12,11,0.55) 60%, rgba(11,12,11,0.3) 100%); }
.story-inner { position: relative; z-index: 2; max-width: 620px; padding: 80px 0; }
.story-inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 14px 0 18px; }
.story-inner p { color: #d9d6cd; font-size: 1.08rem; margin-bottom: 16px; }

/* faith band */
.faith {
  text-align: center;
  padding: 70px 0;
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.faith p {
  font-family: var(--font-disp);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #08090800;
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-top .logo img { height: 34px; margin-bottom: 14px; }
.footer-top p { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  font-family: var(--font-disp); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.85rem; color: var(--bone); opacity: 0.8;
}
.footer-social a:hover { color: var(--rust-soft); opacity: 1; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.disclosure { max-width: 640px; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 150px 0 60px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero p { color: var(--muted); margin-top: 12px; max-width: 620px; font-size: 1.05rem; }

/* video embed */
.embed {
  position: relative; aspect-ratio: 16/9;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: #000;
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* featured film block on home */
.featured { background: var(--black); }
.featured .embed { box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.featured .section-head { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   GLASS + INTERACTION LAYER (Apple-glossy feel)
   ============================================================ */

/* Cards: frosted glass surface + lift/grow on hover */
.video-card, .gear-card {
  background: linear-gradient(160deg, rgba(30,34,28,0.55), rgba(16,20,15,0.75));
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(236,231,217,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s, border-color 0.35s;
}
.video-card:hover, .gear-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(214,117,66,0.55);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(214,117,66,0.3), inset 0 1px 0 rgba(255,255,255,0.10);
}

/* Buttons: clean, solid, simple press */
.btn, .gear-buy, .nav .yt-pill {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-gold { box-shadow: 0 8px 22px rgba(0,0,0,0.35); }
.btn:hover, .gear-buy:hover, .nav .yt-pill:hover {
  transform: translateY(-2px);
}
.btn-gold:hover { background: var(--rust-soft); box-shadow: 0 12px 28px rgba(0,0,0,0.42); }
.btn:active, .gear-buy:active, .nav .yt-pill:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Nav links: subtle grow */
.nav a { transition: opacity 0.2s, color 0.2s, transform 0.2s; display: inline-block; }
.nav a:hover { transform: translateY(-1px) scale(1.06); }

/* Logo: gentle grow */
.site-header .logo img { transition: transform 0.3s; }
.site-header .logo:hover img { transform: scale(1.06); }

/* Header: stronger glass */
.site-header {
  background: rgba(10,13,11,0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}

/* Gear image: subtle zoom of the product on hover */
@media (prefers-reduced-motion: reduce) {
  .video-card, .gear-card, .btn, .gear-buy, .nav a, .nav .yt-pill { transition: none !important; }
  .video-card:hover, .gear-card:hover, .btn:hover, .gear-buy:hover { transform: none !important; }
  .btn::after, .gear-buy::after, .nav .yt-pill::after { display: none; }
}
/* ============================================================
   TOPO LINE TEXTURE (map contours as ambient accent)
   ============================================================ */
.topo {
  position: absolute;
  pointer-events: none;
  background: url('img/topo.svg') no-repeat;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
  mix-blend-mode: screen;
}
.topo-tr { top: -8%; right: -12%; width: 55%; height: 70%; transform: rotate(4deg); }
.topo-bl { bottom: -10%; left: -14%; width: 60%; height: 75%; transform: rotate(-6deg); opacity: 0.045; }
.topo-full { inset: 0; width: 100%; height: 100%; opacity: 0.04; background-position: center; }

.section .wrap, .story-inner, .page-hero .wrap, .faith .wrap { position: relative; z-index: 1; }
.section, .page-hero, .story, .faith, .featured { position: relative; overflow: hidden; }
.faith .topo-full { opacity: 0.07; }

@media (prefers-reduced-motion: reduce) { .topo { mix-blend-mode: normal; } }

/* CONNECT / SOCIAL */
.social-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 40px 24px;
  background: linear-gradient(160deg, rgba(30,34,28,0.55), rgba(16,20,15,0.75));
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(236,231,217,0.10);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s, box-shadow 0.35s;
}
.social-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(214,117,66,0.55);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(214,117,66,0.3);
}
.social-card .ico {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}

.social-card .ico svg { width: 100%; height: 100%; }

.social-card h3 { font-size: 1.15rem; }
.social-card .handle { color: var(--muted); font-size: 0.9rem; }

/* COLLAB FORM */
.collab { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.collab-intro h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 14px 0 16px; }
.collab-intro h2::after { content:""; display:block; height:2px; width:88px; margin-top:18px;
  background: linear-gradient(90deg, var(--rust) 0%, var(--rust) 70%, transparent); }
.collab-intro p { color: var(--muted); font-size: 1.05rem; margin-bottom: 14px; }
.collab-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-disp); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.72rem; color: var(--rust-soft);
}
.field input, .field textarea, .field select {
  background: rgba(10,13,11,0.6);
  border: 1px solid rgba(236,231,217,0.14);
  border-radius: 4px; padding: 13px 15px;
  color: var(--bone); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: #6f766a; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(181,80,42,0.18);
  background: rgba(10,13,11,0.85);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collab-form .btn-gold { align-self: flex-start; margin-top: 4px; border: 0; cursor: pointer; }
.form-note { color: var(--muted); font-size: 0.82rem; }

/* LIGHT SECTIONS (bone background for contrast) */
.section.light { background: #f1eee5; }
.section.light .section-head h2 { color: #14170f; }
.section.light .section-head p { color: #565b4d; }
.section.light .eyebrow { color: var(--rust); }
.section.light .video-card,
.section.light .social-card {
  background: #ffffff;
  border: 1px solid rgba(20,23,15,0.08);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 12px 30px rgba(20,23,15,0.10);
}
.section.light .video-card:hover,
.section.light .social-card:hover {
  border-color: rgba(181,80,42,0.5);
  box-shadow: 0 26px 60px rgba(20,23,15,0.18), 0 0 0 1px rgba(181,80,42,0.25);
}
.section.light .video-meta h3,
.section.light .social-card h3 { color: #14170f; }
.section.light .social-card .handle { color: #6b7060; }
.section.light .video-meta .tag { color: var(--rust); }
.section.light .topo { mix-blend-mode: multiply; opacity: 0.07; }
.section.light .btn-ghost { border-color: rgba(20,23,15,0.25); color: #14170f; }
.section.light .btn-ghost:hover { border-color: var(--rust); color: var(--rust); }

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--black); border-bottom: 1px solid var(--line);
    padding: 24px; gap: 6px;
  }
  .nav.open a { padding: 12px 4px; font-size: 1rem; width: 100%; }
  .nav.open .yt-pill { margin-top: 10px; text-align: center; justify-content: center; display: flex; }

  /* HERO: fix headline overflow + phone browser bars */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-inner { padding: 110px 0 90px; }
  .hero h1 { white-space: normal; font-size: clamp(2.5rem, 13vw, 3.4rem); line-height: 1.02; }
  .hero h1 .thin { font-size: 1.05rem; letter-spacing: 0.12em; }
  .hero .sub { font-size: 1.02rem; }
  .btn-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; }
  .btn { justify-content: center; padding: 16px 24px; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 34px; }
  .page-hero { padding: 120px 0 48px; }
  .featured .embed { border-radius: 4px; }
  .footer-top { flex-direction: column; }
  .scroll-cue { display: none; }
  .social-row { grid-template-columns: 1fr; }
  .social-card { padding: 30px 20px; }
  .collab { grid-template-columns: 1fr; gap: 34px; }
  .field-row { grid-template-columns: 1fr; }
  .collab-form .btn-gold { align-self: stretch; text-align: center; justify-content: center; }
  .topo { opacity: 0.035; }
}

/* scroll reveal */
.reveal { opacity: 0; translate: 0 24px; transition: opacity 0.7s ease, translate 0.7s ease; }
.reveal.in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; translate: none; transform: none; }
  html { scroll-behavior: auto; }
}
