/* Sheriff EV — dark premium theme */
:root {
	--sev-red: #d6222a;
	--sev-gold: #c9a24b;
	--sev-bg: #0b0b0f;
	--sev-bg-2: #12121a;
	--sev-panel: #17171f;
	--sev-line: rgba(255, 255, 255, 0.08);
	--sev-text: #f2f2f5;
	--sev-muted: #9a9aa8;
	--sev-radius: 16px;
	--sev-font: "Montserrat", system-ui, sans-serif;
	--sev-nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--sev-nav-h) + 8px); }
body {
	margin: 0;
	background: var(--sev-bg);
	color: var(--sev-text);
	font-family: var(--sev-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.sev-container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }

/* ---------- Buttons ---------- */
.sev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.sev-btn:hover { transform: translateY(-2px); }
.sev-btn--primary {
	background: linear-gradient(135deg, var(--sev-red), #a2121a);
	color: #fff;
	box-shadow: 0 8px 24px rgba(214, 34, 42, 0.35);
}
.sev-btn--primary:hover { box-shadow: 0 12px 32px rgba(214, 34, 42, 0.5); }
.sev-btn--ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(6px); }
.sev-btn--ghost:hover { border-color: #fff; }
.sev-btn--outline { border-color: var(--sev-gold); color: var(--sev-gold); background: transparent; }
.sev-btn--outline:hover { background: var(--sev-gold); color: #14100a; }

.sev-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sev-gold);
	border: 1px solid var(--sev-gold);
}
.sev-badge--lg { font-size: 0.85rem; padding: 8px 20px; margin-bottom: 16px; }

/* ---------- Nav ---------- */
.sev-nav {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}
.sev-nav.is-scrolled {
	background: rgba(11, 11, 15, 0.85);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--sev-line);
}
.sev-nav__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 32px);
	height: var(--sev-nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.sev-nav__brand img { height: 58px; width: auto; filter: brightness(1.35) drop-shadow(0 0 10px rgba(255, 255, 255, 0.12)); }
.sev-nav__brand-text { font-weight: 800; letter-spacing: 0.04em; }
.sev-nav__links { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); }
.sev-nav__link {
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	padding: 0;
	transition: color 0.15s;
}
.sev-nav__link:hover { color: #fff; }
.sev-nav__phone { color: var(--sev-gold); }
.sev-nav__cta { padding: 10px 22px; }
.sev-nav__drop { position: relative; }
.sev-nav__drop-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: -12px;
	min-width: 300px;
	background: rgba(18, 18, 26, 0.97);
	border: 1px solid var(--sev-line);
	border-radius: var(--sev-radius);
	padding: 10px;
	display: none;
	flex-direction: column;
	gap: 4px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.sev-nav__drop.is-open .sev-nav__drop-menu { display: flex; }
.sev-nav__drop-menu a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 10px;
}
.sev-nav__drop-menu a:hover { background: rgba(255, 255, 255, 0.06); }
.sev-nav__drop-menu img { width: 84px; border-radius: 8px; }
.sev-nav__drop-menu strong { display: block; font-size: 0.92rem; }
.sev-nav__drop-menu em { font-style: normal; font-size: 0.78rem; color: var(--sev-muted); }
.sev-nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.sev-nav__burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: transform 0.2s, opacity 0.2s; }

@media (max-width: 960px) {
	.sev-nav__burger { display: block; }
	.sev-nav__links {
		position: fixed;
		top: var(--sev-nav-h);
		right: 0;
		bottom: 0;
		width: min(340px, 88vw);
		background: rgba(13, 13, 18, 0.98);
		backdrop-filter: blur(16px);
		flex-direction: column;
		align-items: flex-start;
		padding: 28px;
		gap: 20px;
		transform: translateX(100%);
		transition: transform 0.28s ease;
		border-left: 1px solid var(--sev-line);
		overflow-y: auto;
	}
	.sev-nav__links.is-open { transform: none; }
	.sev-nav.is-menu-open { background: rgba(11, 11, 15, 0.95); }
	.sev-nav__drop-menu { position: static; display: none; min-width: 0; width: 100%; }
	.sev-nav__cta { width: 100%; }
}

/* ---------- WhatsApp float ---------- */
.sev-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
	transition: transform 0.18s ease;
}
.sev-whatsapp:hover { transform: scale(1.08); }

/* ---------- Hero ---------- */
.sev-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.sev-hero__bg, .sev-hero__bg img, .sev-soon__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sev-hero__bg img { animation: sev-hero-zoom 12s ease-out forwards; }
@keyframes sev-hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.sev-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 11, 15, 0.35) 0%, rgba(11, 11, 15, 0.05) 40%, rgba(11, 11, 15, 0.88) 100%);
}
.sev-hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(72px, 12vh, 140px); }
.sev-hero__kicker {
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--sev-gold);
	margin-bottom: 12px;
}
.sev-hero__title { font-size: clamp(3rem, 9vw, 6.5rem); font-weight: 900; margin: 0 0 8px; }
.sev-hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: rgba(255, 255, 255, 0.85); max-width: 560px; }
.sev-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.sev-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 2;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 14px;
}
.sev-hero__scroll span {
	position: absolute;
	left: 50%;
	top: 8px;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	border-radius: 2px;
	background: #fff;
	animation: sev-scroll 1.6s infinite;
}
@keyframes sev-scroll { 0% { opacity: 1; transform: none; } 70% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ---------- Sections ---------- */
section { padding: clamp(56px, 9vw, 110px) 0; }
.sev-section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(32px, 5vw, 56px); }
.sev-section-head p { color: var(--sev-muted); font-size: 1.05rem; }
.sev-section-head h2 { background: linear-gradient(120deg, #fff 60%, var(--sev-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Stats ---------- */
.sev-stats { padding: 0; background: var(--sev-bg-2); border-block: 1px solid var(--sev-line); }
.sev-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.sev-stat { text-align: center; padding: 34px 12px; border-inline-start: 1px solid var(--sev-line); }
.sev-stat:first-child { border-inline-start: 0; }
.sev-stat__value { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900; color: #fff; }
.sev-stat__value small { font-size: 0.5em; color: var(--sev-gold); font-weight: 700; margin-left: 4px; }
.sev-stat__label { color: var(--sev-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }
@media (max-width: 640px) { .sev-stat { border-inline-start: 0; border-top: 1px solid var(--sev-line); } .sev-stat:first-child { border-top: 0; } }

/* ---------- Gallery ---------- */
.sev-gallery__track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0 max(calc((100vw - 1240px) / 2 + 32px), 16px) 8px;
	scrollbar-width: none;
}
.sev-gallery__track::-webkit-scrollbar { display: none; }
.sev-gallery__slide {
	flex: 0 0 min(82vw, 900px);
	margin: 0;
	scroll-snap-align: center;
	border-radius: var(--sev-radius);
	overflow: hidden;
	border: 1px solid var(--sev-line);
}
.sev-gallery__slide img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.4s ease; }
.sev-gallery__slide:hover img { transform: scale(1.03); }
.sev-gallery__nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.sev-gallery__btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	color: #fff;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}
.sev-gallery__btn:hover { background: var(--sev-red); border-color: var(--sev-red); }

/* ---------- Features ---------- */
.sev-features { background: var(--sev-bg-2); }
.sev-features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.sev-feature {
	position: relative;
	border-radius: var(--sev-radius);
	overflow: hidden;
	border: 1px solid var(--sev-line);
	background: var(--sev-panel);
	min-height: 340px;
	display: flex;
	align-items: flex-end;
}
.sev-feature--wide { grid-column: 1 / -1; min-height: 420px; }
.sev-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sev-feature:hover img { transform: scale(1.05); }
.sev-feature__text {
	position: relative;
	z-index: 1;
	padding: 24px;
	width: 100%;
	background: linear-gradient(180deg, transparent, rgba(8, 8, 12, 0.92) 55%);
	padding-top: 90px;
}
.sev-feature__text p { color: rgba(255, 255, 255, 0.8); font-size: 0.94rem; margin: 0; }

/* ---------- Trims ---------- */
.sev-trims__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; max-width: 1000px; margin-inline: auto; }
.sev-trim {
	background: linear-gradient(180deg, var(--sev-panel), #101018);
	border: 1px solid var(--sev-line);
	border-radius: var(--sev-radius);
	padding: 30px;
	text-align: center;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.sev-trim:hover { border-color: var(--sev-gold); transform: translateY(-4px); }
.sev-trim img { margin: 0 auto 14px; }
.sev-trim__tag { color: var(--sev-muted); font-size: 0.92rem; }
.sev-trim__price { font-size: 1.5rem; font-weight: 900; color: var(--sev-gold); margin: 6px 0 2px; }
.sev-trim__features { list-style: none; padding: 0; margin: 18px 0 24px; text-align: left; }
.sev-trim__features li { padding: 9px 0 9px 28px; border-top: 1px solid var(--sev-line); position: relative; font-size: 0.93rem; }
.sev-trim__features li::before { content: "✓"; position: absolute; left: 4px; color: var(--sev-gold); font-weight: 700; }
.sev-trims__note { text-align: center; color: var(--sev-muted); font-size: 0.85rem; margin-top: 22px; }

/* ---------- Colors ---------- */
.sev-colors { background: radial-gradient(80% 60% at 50% 100%, rgba(214, 34, 42, 0.12), transparent 70%), var(--sev-bg-2); }
.sev-colors__stage { text-align: center; }
#sev-color-img { margin: 0 auto; max-height: 420px; width: auto; transition: opacity 0.25s ease; }
#sev-color-img.is-fading { opacity: 0; }
.sev-colors__name { font-size: 1.1rem; font-weight: 700; color: var(--sev-gold); margin: 14px 0 18px; }
.sev-colors__swatches { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sev-swatch {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.sev-swatch:hover { transform: scale(1.12); }
.sev-swatch.is-active { border-color: var(--sev-gold); box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.25); }
.sev-colors__note { color: var(--sev-muted); font-size: 0.82rem; margin-top: 16px; }
.sev-colors__interior { margin-top: 64px; text-align: center; }
.sev-colors__interior-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 900px; margin: 24px auto 0; }
.sev-colors__interior-grid figure { margin: 0; border-radius: var(--sev-radius); overflow: hidden; border: 1px solid var(--sev-line); }
.sev-colors__interior-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.sev-colors__interior-grid figcaption { padding: 12px; font-weight: 600; background: var(--sev-panel); }

/* ---------- Safety ---------- */
.sev-safety__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.sev-safety__card { background: var(--sev-panel); border: 1px solid var(--sev-line); border-radius: var(--sev-radius); overflow: hidden; }
.sev-safety__card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.sev-safety__card h3 { padding: 18px 20px 0; font-size: 1.05rem; }
.sev-safety__card p { padding: 0 20px 20px; color: var(--sev-muted); font-size: 0.9rem; margin: 6px 0 0; }

/* ---------- Specs ---------- */
.sev-specs { background: var(--sev-bg-2); }
.sev-specs__dims { max-width: 900px; margin: 0 auto 40px; }
.sev-specs__dims img { margin: 0 auto; background: #fff; border-radius: var(--sev-radius); padding: 16px; }
.sev-specs__groups { max-width: 860px; margin: 0 auto; }
.sev-specs__group { border: 1px solid var(--sev-line); border-radius: 12px; margin-bottom: 12px; background: var(--sev-panel); overflow: hidden; }
.sev-specs__group summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 700;
	list-style: none;
	position: relative;
}
.sev-specs__group summary::-webkit-details-marker { display: none; }
.sev-specs__group summary::after { content: "+"; position: absolute; right: 22px; color: var(--sev-gold); font-size: 1.3rem; line-height: 1; transition: transform 0.2s; }
.sev-specs__group[open] summary::after { transform: rotate(45deg); }
.sev-specs__group table { width: 100%; border-collapse: collapse; }
.sev-specs__group th, .sev-specs__group td { padding: 12px 22px; border-top: 1px solid var(--sev-line); font-size: 0.93rem; text-align: left; }
.sev-specs__group th { color: var(--sev-muted); font-weight: 500; width: 50%; }
.sev-specs__download { text-align: center; margin-top: 34px; }

/* ---------- FAQ ---------- */
.sev-faq__list { max-width: 820px; margin: 0 auto; }
.sev-faq__item { border-bottom: 1px solid var(--sev-line); }
.sev-faq__item summary {
	cursor: pointer;
	padding: 20px 40px 20px 0;
	font-weight: 600;
	font-size: 1.04rem;
	list-style: none;
	position: relative;
}
.sev-faq__item summary::-webkit-details-marker { display: none; }
.sev-faq__item summary::after { content: "+"; position: absolute; right: 6px; top: 18px; color: var(--sev-gold); font-size: 1.4rem; transition: transform 0.2s; }
.sev-faq__item[open] summary::after { transform: rotate(45deg); }
.sev-faq__item div { padding: 0 0 20px; color: var(--sev-muted); }
.sev-faq__item a { color: var(--sev-gold); text-decoration: underline; }

/* ---------- Lineup ---------- */
.sev-lineup { background: var(--sev-bg-2); }
.sev-lineup__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: 900px; margin-inline: auto; }
.sev-lineup__card {
	background: var(--sev-panel);
	border: 1px solid var(--sev-line);
	border-radius: var(--sev-radius);
	padding: 22px;
	text-align: center;
	transition: border-color 0.2s, transform 0.2s;
}
.sev-lineup__card:hover { border-color: var(--sev-gold); transform: translateY(-4px); }
.sev-lineup__card img { margin: 0 auto 14px; border-radius: 10px; }
.sev-lineup__sub { color: var(--sev-muted); font-size: 0.88rem; }

/* ---------- Contact / form ---------- */
.sev-contact { background: radial-gradient(70% 50% at 80% 0%, rgba(201, 162, 75, 0.08), transparent 60%), var(--sev-bg); }
.sev-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .sev-contact__grid { grid-template-columns: 1fr; } }
.sev-contact__info ul { list-style: none; padding: 0; margin: 22px 0; }
.sev-contact__info li { padding: 10px 0; border-bottom: 1px solid var(--sev-line); display: flex; gap: 14px; flex-wrap: wrap; }
.sev-contact__info strong { color: var(--sev-gold); min-width: 130px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; padding-top: 2px; }
.sev-contact__info a:hover { color: var(--sev-gold); }
.sev-contact__map { margin-top: 22px; border-radius: var(--sev-radius); overflow: hidden; border: 1px solid var(--sev-line); }
.sev-contact__map iframe { display: block; width: 100%; height: 260px; border: 0; }

.sev-form { background: var(--sev-panel); border: 1px solid var(--sev-line); border-radius: var(--sev-radius); padding: clamp(22px, 4vw, 36px); }
.sev-form h3 { margin-bottom: 18px; }
.sev-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--sev-muted); margin-bottom: 14px; }
.sev-form input, .sev-form select, .sev-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	background: #0e0e14;
	border: 1px solid var(--sev-line);
	border-radius: 10px;
	color: var(--sev-text);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.15s;
}
.sev-form input:focus, .sev-form select:focus, .sev-form textarea:focus { outline: none; border-color: var(--sev-gold); }
.sev-form input[type="date"] { color-scheme: dark; }
.sev-form__submit { width: 100%; margin-top: 6px; }
.sev-form__status { min-height: 1.4em; margin: 12px 0 0; font-size: 0.9rem; text-align: center; }
.sev-form__status.is-ok { color: #4cd97b; }
.sev-form__status.is-err { color: #ff7b81; }
.sev-hp { position: absolute !important; left: -9999px !important; height: 0; opacity: 0; }

/* ---------- Footer ---------- */
.sev-footer { background: #08080c; border-top: 1px solid var(--sev-line); padding-top: clamp(40px, 6vw, 70px); }
.sev-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 32px; padding-bottom: 44px; }
@media (max-width: 880px) { .sev-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sev-footer__grid { grid-template-columns: 1fr; } }
.sev-footer__brand img { height: 64px; width: auto; margin-bottom: 14px; }
.sev-footer__brand p { color: var(--sev-muted); font-size: 0.9rem; max-width: 300px; }
.sev-footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sev-gold); margin-bottom: 14px; }
.sev-footer ul { list-style: none; padding: 0; margin: 0; }
.sev-footer li { padding: 5px 0; color: var(--sev-muted); font-size: 0.92rem; }
.sev-footer a:hover { color: #fff; }
.sev-footer__legal { border-top: 1px solid var(--sev-line); padding: 18px 0; }
.sev-footer__legal .sev-container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--sev-muted); font-size: 0.8rem; }

/* ---------- Coming soon / pages ---------- */
.sev-soon__hero { position: relative; min-height: 100svh; display: flex; align-items: center; }
.sev-soon__bg { object-fit: contain; opacity: 0.28; filter: saturate(0.85); }
.sev-soon__hero .sev-hero__scrim { background: radial-gradient(70% 60% at 50% 50%, rgba(11, 11, 15, 0.55), rgba(11, 11, 15, 0.92)); }
.sev-soon__content { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.sev-soon__content h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.sev-soon__note { color: var(--sev-muted); }
.sev-soon__content .sev-hero__ctas { justify-content: center; }
.sev-page { padding: calc(var(--sev-nav-h) + 40px) 0 80px; min-height: 60vh; }
.sev-404 { text-align: center; }
.sev-404 h1 { font-size: 6rem; color: var(--sev-gold); }

/* ---------- Reveal animation ---------- */
.sev-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sev-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.sev-reveal { opacity: 1; transform: none; transition: none; }
	.sev-hero__bg img { animation: none; }
	html { scroll-behavior: auto; }
}
