/* 869 Trail Grit design system v1.0.1 */

@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }

:root {
	--bg: #FFFFFF;
	--surface: #F5EFE3;
	--ink: #000000;
	--primary: #004530;
	--accent: #F4D711;
	--dark: #00301F;
	--earth: #6B4A2F;
	--mid: #0A5A40;
	--font-display: 'Montserrat', Arial, sans-serif;
	--font-head: 'Montserrat', Arial, sans-serif;
	--font-body: 'Montserrat', Arial, sans-serif;
	--sp-xs: 8px; --sp-sm: 16px; --sp-md: 28px; --sp-lg: 56px; --sp-xl: 96px;
	--r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-pill: 999px;
	--wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--prose { max-width: 760px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--ink); padding: 10px 16px; z-index: 200; font-family: var(--font-head); font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }

/* Type */
:where(h1,h2,h3,h4) { font-family: var(--font-head); font-weight: 800; color: var(--primary); line-height: 1.12; margin: 0 0 .5em; }
.display { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.05; }
.volt { color: var(--accent); }
.kicker { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--earth); }
.band--green .kicker, .band--dark .kicker { color: var(--accent); }
.rule-volt { height: 6px; width: 84px; background: var(--accent); margin: 14px 0 0; }
.center .rule-volt { margin-left: auto; margin-right: auto; }

/* Topbar */
.topbar { background: var(--dark); font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .5px; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 36px; flex-wrap: wrap; }
.topbar__group { display: flex; gap: 18px; }
.topbar__item { color: #fff; text-decoration: none; }
.topbar__item:hover { color: var(--accent); }
.topbar__ico { color: var(--accent); margin-right: 6px; font-size: 9px; vertical-align: 1px; }

/* Header */
.site-head { position: -webkit-sticky; position: sticky; top: 0; z-index: 990; background: var(--bg); border-bottom: 3px solid var(--accent); transition: box-shadow .2s ease; }
.site-head.is-stuck { box-shadow: 0 4px 16px rgba(0, 48, 31, .18); }
body.admin-bar .site-head { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-head { top: 46px; } }
.site-head__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 74px; }
.site-head__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-head__brand img { width: 54px; height: 54px; }
.site-head__name { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--primary); letter-spacing: -0.5px; text-transform: uppercase; }
.site-head__name em { font-style: normal; color: var(--ink); }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav__list { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.site-nav__list li { position: relative; }
.site-nav__list a { display: block; padding: 10px 10px; font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; color: var(--primary); text-decoration: none; border-bottom: 3px solid transparent; }
.site-nav__list a:hover { border-bottom-color: var(--accent); }
.site-nav__list .current-menu-item > a, .site-nav__list .current_page_item > a { border-bottom-color: var(--accent); }
.site-nav__list .sub-menu { display: none; position: absolute; left: 0; top: 100%; background: var(--primary); min-width: 220px; list-style: none; margin: 0; padding: 6px 0; border-radius: 0 0 var(--r-md) var(--r-md); border-top: 3px solid var(--accent); }
.site-nav__list li:hover > .sub-menu, .site-nav__list li:focus-within > .sub-menu { display: block; }
.site-nav__list .sub-menu a { color: #fff; border-bottom: 0; font-size: 15px; }
.site-nav__list .sub-menu a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 2px solid var(--primary); border-radius: var(--r-md); padding: 9px 10px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 3px; background: var(--primary); margin: 4px 0; transition: transform .2s; }

/* Buttons */
.btn { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; padding: 14px 28px; border-radius: var(--r-md); border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease; }
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { border-color: var(--accent); color: var(--primary); background: transparent; }
.band--green .btn--ghost, .band--dark .btn--ghost { color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--ink); }
.btn .arr { display: inline-block; transition: transform .15s ease; margin-left: 6px; }
.btn:hover .arr { transform: translateX(4px); }
.site-nav__cta { padding: 11px 18px; font-size: 14px; }

/* Bands (sections) */
.band { padding: var(--sp-xl) 0; position: relative; overflow: hidden; }
.band--tight { padding: var(--sp-lg) 0; }
.band--white { background: var(--bg); }
.band--cream { background: var(--surface); }
.band--green { background: var(--primary); }
.band--dark { background: var(--dark); }
.band--green, .band--dark { color: #fff; }
.band--green :where(h1,h2,h3,h4), .band--dark :where(h1,h2,h3,h4) { color: #fff; }
.center { text-align: center; }

/* Topo texture */
.band--topo::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 240'%3E%3Cpath d='M-20 40 C 60 10, 140 60, 220 35 S 340 0, 390 25' fill='none' stroke='%23F4D711' stroke-width='1.4'/%3E%3Cpath d='M-20 90 C 60 60, 150 110, 230 85 S 340 50, 390 75' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3Cpath d='M-20 140 C 70 110, 150 160, 240 135 S 350 100, 390 125' fill='none' stroke='%23F4D711' stroke-width='1'/%3E%3Cpath d='M-20 190 C 70 160, 160 210, 250 185 S 350 150, 390 175' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E"); background-size: 720px 480px; }

/* Oversized 869 texture */
.band--num::after { content: ""; position: absolute; right: -50px; top: -30px; width: 400px; height: 400px; background: url("https://869atventures.com/wp-content/uploads/2021/11/cropped-869ATVentures-Logo.png") no-repeat center / contain; opacity: .08; pointer-events: none; }
.band--green.band--num::after, .band--dark.band--num::after { filter: brightness(0) invert(1); opacity: .07; }

/* Tread divider */
.tread { height: 16px; background-color: var(--dark); background-image: repeating-linear-gradient(115deg, var(--accent) 0 9px, transparent 9px 28px, var(--accent) 28px 37px, transparent 37px 56px); background-size: 56px 100%; animation: treadmove 2.8s linear infinite; }
.tread--cream { background-color: var(--surface); }
@keyframes treadmove { to { background-position-x: -56px; } }

/* Ridgeline */
.ridge { position: relative; height: 64px; overflow: hidden; background: transparent; }
.ridge svg { position: absolute; bottom: 0; left: 0; height: 64px; }
.ridge__a { width: 140%; fill: var(--mid); animation: drift1 16s linear infinite alternate; }
.ridge__b { width: 160%; fill: var(--dark); animation: drift2 16s linear infinite alternate; }
@keyframes drift1 { to { transform: translateX(-48px); } }
@keyframes drift2 { to { transform: translateX(-100px); } }
.site-foot .ridge { background: var(--bg); margin-bottom: -1px; }

/* Hero */
.hero { position: relative; background: var(--primary); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,48,31,.92) 0%, rgba(0,69,48,.78) 45%, rgba(0,48,31,.35) 100%); }
.hero__in { position: relative; z-index: 2; padding: 110px 20px 130px; }
.hero__title { font-size: clamp(36px, 6vw, 68px); color: #fff; margin: 0; }
.hero__title .volt { color: var(--accent); }
.hero__sub { font-size: 18px; max-width: 460px; margin: 18px 0 0; line-height: 1.55; }
.hero__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .kicker { color: var(--accent); }
.hero .btn--ghost { color: #fff; border-color: var(--accent); }
.hero .btn--ghost:hover { background: var(--accent); color: var(--ink); }
.hero .ridge { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.hero--short .hero__in { padding: 80px 20px 110px; }

/* Page hero (interior) */
.pagehero { padding: var(--sp-lg) 0 var(--sp-lg); }
.pagehero--tall { padding: var(--sp-xl) 0; }
.pagehero__kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: 3px; font-size: 13px; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
.pagehero__title { font-size: clamp(30px, 5vw, 52px); color: #fff; margin: 0; }
.pagehero__sub { max-width: 560px; margin-top: 16px; font-size: 17px; }

/* Chips */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { border: 1.5px solid var(--accent); color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 13px; border-radius: var(--r-pill); }
.band--white .chip, .band--cream .chip { color: var(--primary); border-color: var(--primary); }

/* Grid */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* Tour cards */
.tourcard { position: relative; display: flex; flex-direction: column; background: var(--bg); border: 2px solid var(--primary); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .18s ease; cursor: pointer; }
.tourcard__link { position: absolute; inset: 0; z-index: 2; }
.tourcard:hover { transform: translateY(-4px) rotate(-.4deg); }
.tourcard__media { aspect-ratio: 4 / 3; overflow: hidden; }
.tourcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tourcard:hover .tourcard__media img { transform: scale(1.05); }
.tourcard__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tourcard__title { font-family: var(--font-head); font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: .5px; color: var(--primary); margin: 0; }
.tourcard__meta { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 1px; color: var(--earth); text-transform: uppercase; }
.tourcard__desc { font-size: 15px; margin: 0; flex: 1; }
.tourcard__go { font-family: var(--font-head); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: 14px; color: var(--primary); }
.tourcard__go .arr { color: var(--accent); }

/* Keyline cards (guides) */
.keycard { border: 2px solid var(--accent); border-radius: var(--r-lg); background: var(--primary); overflow: hidden; transition: transform .18s ease; }
.keycard:hover { transform: translateY(-4px); }
.keycard__media { aspect-ratio: 1 / 1; overflow: hidden; }
.keycard__media img { width: 100%; height: 100%; object-fit: cover; }
.keycard__body { padding: 14px 16px 18px; }
.keycard__name { font-family: var(--font-head); font-weight: 800; font-size: 17px; letter-spacing: .5px; text-transform: uppercase; color: #fff; margin: 0 0 6px; }
.keycard__quote { color: var(--accent); font-size: 14px; line-height: 1.5; margin: 0; }

/* Stats */
.stats { display: flex; gap: 26px; flex-wrap: wrap; }
.stat { min-width: 120px; }
.stat--tilt-l { transform: rotate(-1.2deg); }
.stat--tilt-r { transform: rotate(1.2deg); }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 5vw, 54px); line-height: 1; color: var(--primary); }
.band--green .stat__num, .band--dark .stat__num { color: var(--accent); }
.stat__num small { font-size: .45em; }
.stat__label { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--earth); margin-top: 4px; }
.band--green .stat__label, .band--dark .stat__label { color: #fff; }

/* Facts table (tour pages) */
.facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.fact { border: 2px solid var(--primary); border-radius: var(--r-md); padding: 14px 16px; background: var(--bg); }
.fact__k { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--earth); margin-bottom: 4px; }
.fact__v { font-weight: 500; font-size: 15px; line-height: 1.45; }

/* Price panel */
.pricebar { background: var(--primary); border-radius: var(--r-lg); padding: 26px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: #fff; }
.pricebar__prices { display: flex; gap: 30px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-weight: 900; color: var(--accent); font-size: clamp(30px, 4.5vw, 44px); line-height: 1; }
.price small { font-size: .4em; letter-spacing: 1px; }
.price__label { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-top: 4px; }

/* Split layout */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.split__media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); border: 3px solid var(--accent); transform: rotate(-1deg); }
.split p { font-size: 19px; line-height: 1.7; }
.split--flip .split__media { order: 2; }
.split--flip .split__media img { transform: rotate(1deg); }

/* Trail line */
.trailline { display: block; width: 100%; height: auto; }
.trailline path.tl { stroke-dasharray: 400; stroke-dashoffset: 400; }
.trailline.in path.tl { animation: drawline 2.4s ease-out forwards; }
.trailline circle { opacity: 0; }
.trailline.in circle { animation: popdot .4s ease-out forwards; }
.trailline.in circle:nth-of-type(1) { animation-delay: .2s; }
.trailline.in circle:nth-of-type(2) { animation-delay: 1.1s; }
.trailline.in circle:nth-of-type(3) { animation-delay: 2.2s; }
@keyframes drawline { to { stroke-dashoffset: 0; } }
@keyframes popdot { to { opacity: 1; } }

/* Mud splat */
.splat { position: relative; }
.splat::before, .splat::after { content: ""; position: absolute; background: var(--earth); border-radius: 55% 45% 60% 50%; opacity: 0; }
.splat::before { width: 16px; height: 16px; right: -26px; top: -6px; }
.splat::after { width: 9px; height: 9px; right: -40px; top: 14px; border-radius: 50%; }
.tg-reveal.in .splat::before { animation: splatin .45s .7s ease-out forwards; }
.tg-reveal.in .splat::after { animation: splatin .45s .9s ease-out forwards; }
@keyframes splatin { 0% { opacity: 0; transform: scale(0); } 70% { opacity: 1; transform: scale(1.25); } 100% { opacity: 1; transform: scale(1); } }

/* Reveal motion */
html.js .tg-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .tg-reveal.in { opacity: 1; transform: none; }
html.js .tg-reveal.d1 { transition-delay: .12s; }
html.js .tg-reveal.d2 { transition-delay: .24s; }
html.js .tg-reveal.d3 { transition-delay: .36s; }

/* Blog cards */
.postcard { border: 2px solid var(--primary); border-radius: var(--r-lg); overflow: hidden; background: var(--bg); display: flex; flex-direction: column; }
.postcard__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.postcard__media img { width: 100%; height: 100%; object-fit: cover; }
.postcard__body { padding: 16px 18px 20px; }
.postcard__date { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--earth); }
.postcard__title { font-size: 20px; margin: 6px 0 8px; }
.postcard__title a { text-decoration: none; color: var(--primary); }
.morelink { font-family: var(--font-head); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.entry__thumb img { border-radius: var(--r-lg); margin-bottom: 26px; }
.entry__back { margin-top: 36px; }
.pager { margin-top: 36px; font-family: var(--font-head); font-weight: 700; }

/* FAQ accordion */
.faqset details { border: 2px solid var(--primary); border-radius: var(--r-md); margin-bottom: 14px; background: var(--bg); overflow: hidden; }
.faqset summary { cursor: pointer; padding: 16px 48px 16px 20px; font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--primary); list-style: none; position: relative; }
.faqset summary::-webkit-details-marker { display: none; }
.faqset summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--primary); background: var(--accent); width: 26px; height: 26px; border-radius: 50%; text-align: center; line-height: 26px; font-weight: 700; }
.faqset details[open] summary::after { content: "\2212"; }
.faqset details[open] summary { border-bottom: 3px solid var(--accent); }
.faqset .faq-a { padding: 16px 20px; }

/* Forms (Forminator harmonizing) */
.formshell { background: var(--bg); border: 2px solid var(--primary); border-radius: var(--r-lg); padding: 28px; }
.formshell .forminator-button, .formshell button[type=submit] { background: var(--accent) !important; color: var(--ink) !important; font-family: var(--font-head) !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 1.5px; border-radius: var(--r-md) !important; border: 0 !important; }

/* Contact blocks */
.contactgrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contactlist { list-style: none; margin: 0; padding: 0; }
.contactlist li { padding: 14px 0; border-bottom: 1.5px solid rgba(0,69,48,.18); font-size: 17px; }
.contactlist a { text-decoration: none; font-weight: 500; }
.contactlist .k { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--earth); display: block; }

/* Footer */
.site-foot { background: var(--dark); color: #fff; }
.site-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: var(--sp-lg) 20px; }
.site-foot__brand { font-family: var(--font-display); font-weight: 900; font-size: 24px; text-transform: uppercase; letter-spacing: -0.5px; color: #fff; }
.site-foot__brand em { font-style: normal; color: var(--accent); }
.site-foot__tag { color: #fff; opacity: .85; max-width: 320px; }
.site-foot__social { display: flex; gap: 14px; margin-top: 10px; }
.site-foot__social a { color: var(--accent); font-family: var(--font-head); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; text-decoration: none; }
.site-foot__h { font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 14px; color: var(--accent); margin-bottom: 12px; }
.site-foot__links { list-style: none; margin: 0; padding: 0; }
.site-foot__links li { margin-bottom: 9px; }
.site-foot__links a { color: #fff; text-decoration: none; font-size: 15px; }
.site-foot__links a:hover { color: var(--accent); }
.site-foot__legal { padding: 16px 20px; font-size: 13px; opacity: .7; text-align: center; }

/* Prose (privacy etc.) */
.entry :where(h2) { margin-top: 1.6em; }
.entry :where(ul) { padding-left: 1.2em; }

/* Responsive */
@media (max-width: 900px) {
	.grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.split, .contactgrid { grid-template-columns: 1fr; }
	.split--flip .split__media { order: 0; }
	.facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.site-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
	.grid--3, .grid--2 { grid-template-columns: 1fr; }
	.topbar__item--mail { display: none; }
	.nav-toggle { display: block; }
	.site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--primary); flex-direction: column; align-items: stretch; padding: 12px 20px 20px; gap: 6px; border-bottom: 3px solid var(--accent); }
	.site-nav.open { display: flex; }
	.site-nav__list { flex-direction: column; }
	.site-nav__list a { color: #fff; border-bottom: 0; padding: 12px 4px; }
	.site-nav__list .sub-menu { display: block; position: static; background: transparent; border-top: 0; padding-left: 14px; }
	.site-nav__cta { text-align: center; margin-top: 8px; }
	.hero__in { padding: 70px 20px 100px; }
	.facts { grid-template-columns: 1fr; }
	.site-foot__grid { grid-template-columns: 1fr; }
	.band { padding: var(--sp-lg) 0; }
	.band--num::after { width: 220px; height: 220px; right: -40px; top: -20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.tread, .ridge__a, .ridge__b { animation: none !important; }
	html.js .tg-reveal { opacity: 1; transform: none; transition: none; }
	.trailline path.tl { stroke-dashoffset: 0; animation: none !important; }
	.trailline circle { opacity: 1; animation: none !important; }
	.tg-reveal.in .splat::before, .tg-reveal.in .splat::after { opacity: 1; animation: none !important; transform: none; }
	.tourcard, .keycard, .btn { transition: none; }
	.hero__video { display: none; }
}
