/* ==========================================================================
   MyChoice Mobile Repair — main stylesheet
   Brand (from the logo): near-black ink, orange #FF6D06, white. Warm "bone"
   paper backgrounds; ink sections for contrast.

   Contrast (WCAG 2.x, computed):
     white   #FFFFFF on orange #FF6D06 ........ 2.82:1  FAIL → never used for text
     ink     #0A0A0B on orange #FF6D06 ........ 7.01:1  AAA → text on orange buttons/bands
     orange  #FF6D06 on ink    #0A0A0B ........ 7.01:1  AAA → accents/text on dark
     orange  #FF6D06 on ink-3  #1D1D21 ........ ~6.0:1  AA
     orange-600 #C2410C on white #FFFFFF ...... 5.18:1  AA  → orange text on white
     orange-600 #C2410C on bone  #F5F2EC ...... 4.63:1  AA  → orange text on bone
     orange-600 #C2410C on orange-soft #FFF1E6  4.68:1  AA
     orange-700 #9A3412 on orange-soft #FFF1E6  6.60:1  AA  → price tags
     white   #FFFFFF on orange-600 #C2410C .... 5.18:1  AA
     orange-300 #FF9A57 on ink #0A0A0B ........ 9.43:1  AAA → small text on dark
     muted   #5B5750 on bone #F5F2EC .......... 6.43:1  AA
     muted   #5B5750 on bone-2 #EBE6DC ........ 5.77:1  AA
     muted-dark #A8A39A on ink #0A0A0B ........ 7.89:1  AAA
     text    #16140F on bone #F5F2EC .......... 16.47:1 AAA
   Orange (#FF6D06) is never used as text on white/bone (2.53:1) — only as fills.
   ========================================================================== */

@font-face {
	font-family: "Space Grotesk";
	src: url("../fonts/space-grotesk-variable.woff2") format("woff2");
	font-weight: 300 700;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-variable.woff2") format("woff2");
	font-weight: 200 800;
	font-display: swap;
}

:root {
	--orange: #ff6d06;
	--orange-600: #c2410c;
	--orange-700: #9a3412;
	--orange-300: #ff9a57;
	--orange-soft: #fff1e6;
	--ink: #0a0a0b;
	--ink-2: #141416;
	--ink-3: #1d1d21;
	--ink-4: #2a2a30;
	--bone: #f5f2ec;
	--bone-2: #ebe6dc;
	--paper: #ffffff;
	--text: #16140f;
	--muted: #5b5750;
	--muted-dark: #a8a39a;
	--line: #e3ddd1;
	--line-dark: rgba(255, 255, 255, 0.1);
	--ok: #15803d;

	--font-display: "Space Grotesk", "Arial Black", system-ui, sans-serif;
	--font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 30px;
	--shadow: 0 1px 2px rgba(22, 20, 15, 0.05), 0 10px 30px -12px rgba(22, 20, 15, 0.14);
	--shadow-lg: 0 34px 70px -28px rgba(22, 20, 15, 0.35);
	--shadow-orange: 0 16px 34px -14px rgba(255, 109, 6, 0.7);

	--container: 1240px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(72px, 10vw, 132px);
	--header-h: 78px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & base ---------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--bone);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }

body.menu-open { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
::selection { background: var(--orange); color: var(--ink); }

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
	border-radius: 8px;
	box-shadow: 0 0 0 6px var(--ink);
}

.icon { width: 1.25em; height: 1.25em; flex: none; }

.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: fixed; top: 12px; left: 12px; z-index: 1000;
	padding: 10px 16px; border-radius: 10px;
	background: var(--ink); color: #fff; font-weight: 700;
	transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }
.container--mid { max-width: 1060px; }

.muted { color: var(--muted); }
.accent { color: var(--orange-600); }
.section--ink .accent,
.site-footer .accent,
.mobile-menu .accent { color: var(--orange); }

/* Highlighter: ink text over an orange marker stroke (7:1). */
.hl {
	position: relative; display: inline-block; z-index: 0; padding-inline: .06em;
}
.hl::before {
	content: ""; position: absolute; z-index: -1; left: -.04em; right: -.04em; bottom: .06em; height: .42em;
	background: var(--orange); border-radius: .08em;
	transform: scaleX(0); transform-origin: left; transition: transform 1s .7s var(--ease);
}
.is-in .hl::before, .hl.is-in::before, html:not(.js) .hl::before { transform: scaleX(1); }

/* ---------- Buttons & small UI ---------- */

.btn {
	--bg: var(--ink); --fg: #fff; --bd: transparent;
	position: relative;
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	min-height: 50px; padding: .8em 1.4em;
	border: 2px solid var(--bd); border-radius: 14px;
	background: var(--bg); color: var(--fg);
	font-family: var(--font-display); font-weight: 700; font-size: 1rem;
	letter-spacing: -.005em; line-height: 1;
	text-decoration: none; white-space: nowrap;
	overflow: hidden; isolation: isolate;
	transition: box-shadow .35s var(--ease), background-color .25s, color .25s, border-color .25s, translate .35s var(--ease), transform .2s var(--ease);
}
.btn::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.3), transparent 60%);
	opacity: 0; transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }
.btn > span { overflow: hidden; text-overflow: ellipsis; }
.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }
.btn:hover .icon-phone { animation: ring .6s; }
.btn:active { transform: scale(.97); }
@keyframes ring { 20%, 60% { rotate: -14deg; } 40%, 80% { rotate: 14deg; } }

/* Orange buttons carry ink text: 7.01:1. */
.btn--primary { --bg: var(--orange); --fg: var(--ink); --bd: var(--orange); box-shadow: var(--shadow-orange); }
.btn--primary:hover { --bg: var(--ink); --fg: var(--orange); --bd: var(--ink); box-shadow: none; }
.btn--primary::before { background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.45), transparent 60%); }
.btn--dark { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--dark:hover { --bg: var(--ink-4); --bd: var(--ink-4); }
.btn--light { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--light:hover { --bg: var(--bone-2); }
.btn--outline-dark { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--outline-dark:hover { --bg: var(--ink); --fg: #fff; }
.btn--outline-dark::before, .btn--light::before { background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255,109,6,.22), transparent 60%); }
.btn--outline-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.3); }
.btn--outline-light:hover { --bd: var(--orange); --fg: var(--orange); }
.btn--lg { min-height: 58px; padding: 1em 1.6em; font-size: 1.06rem; border-radius: 16px; }
.btn--sm { min-height: 42px; padding: .6em 1em; font-size: .92rem; border-radius: 12px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }

.icon-btn {
	display: inline-grid; place-items: center;
	width: 46px; height: 46px; border-radius: 14px;
	border: 2px solid var(--line); background: #fff; color: var(--ink);
	transition: background-color .25s, color .25s, border-color .25s, transform .3s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: var(--orange); border-color: var(--ink); transform: translateY(-2px); }

.chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: .45em 1em; border-radius: 10px;
	border: 2px solid var(--line); background: #fff;
	font-size: .88rem; font-weight: 700; text-decoration: none; color: var(--text);
	transition: background-color .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip--sm { padding: .25em .7em; font-size: .78rem; border-width: 1.5px; }
.chip--orange { background: var(--orange); border-color: var(--orange); color: var(--ink); }

.pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px 7px 10px; border-radius: 999px;
	background: #fff; border: 1.5px solid var(--line);
	color: var(--text); font-size: .86rem; font-weight: 600; text-decoration: none;
	max-width: 100%;
}
.pill span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pill .icon { color: var(--orange-600); width: 1.1em; height: 1.1em; }
.pill:hover { border-color: var(--ink); }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	margin-bottom: 16px;
	font-family: var(--font-display); font-weight: 700;
	font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
	color: var(--orange-600);
}
.eyebrow::before {
	content: ""; width: 14px; height: 14px; flex: none; border-radius: 50%;
	border: 3px solid currentColor; border-right-color: transparent;
	animation: spin 3s linear infinite;
}
.section--ink .eyebrow, .side-card--ink .eyebrow { color: var(--orange); }

.price-tag {
	display: inline-flex; align-items: center;
	padding: .4em .85em; border-radius: 8px;
	background: var(--orange-soft); color: var(--orange-700);
	font-weight: 800; font-size: .84rem; white-space: nowrap;
}
.price-tag--sm { font-size: .76rem; }

.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks .icon {
	width: 22px; height: 22px; padding: 4px; margin-top: 2px;
	border-radius: 7px; background: var(--orange); color: var(--ink); stroke-width: 3.2;
}
.ticks--sm { font-size: .93rem; gap: 8px; }
.ticks--sm .icon { width: 19px; height: 19px; margin-top: 3px; }

.text-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 800; text-decoration: none; color: var(--orange-600);
}
.section--ink .text-link, .duo__card--ink .text-link, .side-card--ink .text-link { color: var(--orange); }
.text-link .icon { transition: transform .3s var(--ease); }
.text-link:hover .icon { transform: translateX(4px); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link--muted { color: var(--muted); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.duo__card--ink .text-link--muted { color: var(--muted-dark); }

.note {
	display: flex; gap: 12px; align-items: flex-start;
	margin-top: 26px; padding: 16px 18px; border-radius: var(--radius-sm);
	background: var(--orange-soft); color: var(--orange-700); font-weight: 600; font-size: .95rem;
}
.note .icon { margin-top: 2px; }
.note--dark { background: rgba(255,109,6,.1); color: #ffd9bf; border: 1px solid rgba(255,109,6,.3); }

/* Live open / closed badge (filled in by app.js) */
.live {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 7px 14px 7px 11px; border-radius: 999px;
	background: #fff; border: 1.5px solid var(--line);
	font-size: .86rem; font-weight: 700; color: var(--text); white-space: nowrap;
}
.live[hidden] { display: none; }
.live__dot { position: relative; width: 10px; height: 10px; border-radius: 50%; background: #9ca3af; }
.live.is-open .live__dot { background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.55); animation: ping 2s infinite; }
.live.is-closed .live__dot { background: var(--orange-600); }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
.live--dark { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: #f3f1ec; }
.live--dark.is-open .live__dot { background: #4ade80; }
.live--dark.is-closed .live__dot { background: var(--orange); }
.live--on-orange { margin-top: 16px; background: var(--ink); border-color: var(--ink); color: #fff; }
.live--on-orange.is-open .live__dot { background: #4ade80; }
.live--header { font-size: .8rem; padding: 6px 12px 6px 9px; }

/* Google rating */
.rating {
	display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
	color: var(--text); text-decoration: none; font-size: .92rem;
}
.rating b { font-family: var(--font-display); font-size: 1.05em; }
.rating:hover .rating__text { text-decoration: underline; text-underline-offset: 3px; }
.rating__sep { opacity: .5; padding-inline: 2px; }
.stars { position: relative; display: inline-flex; line-height: 0; }
.stars > span { display: inline-flex; gap: 1px; }
.stars .icon { width: 17px; height: 17px; color: #d9d2c4; }
.stars__fill { position: absolute; inset: 0 auto 0 0; overflow: hidden; width: var(--pct, 100%); }
.stars__fill .icon { color: var(--orange); }
.rating--dark { color: #f3f1ec; }
.rating--dark .stars .icon { color: #3a3a42; }
.rating--dark .stars__fill .icon { color: var(--orange); }
.rating--stack { flex-direction: column; align-items: flex-start; gap: 4px; }
.rating--mini { font-size: .82rem; gap: 6px; justify-content: center; }
.rating--mini .stars .icon { width: 13px; height: 13px; }

/* Hours */
.hours { display: grid; gap: 0; margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 10px; border-radius: 8px; }
.hours div + div { border-top: 1px dashed var(--line); }
.hours dt { font-weight: 700; }
.hours dd { margin: 0; color: var(--muted); text-align: right; }
.hours .is-today { background: var(--ink); border-color: transparent !important; }
.hours .is-today dt, .hours .is-today dd { color: #fff; }
.hours .is-today + div { border-color: transparent; }
.site-footer .hours div + div, .section--ink .hours div + div { border-color: var(--line-dark); }
.site-footer .hours dd, .section--ink .hours dd { color: var(--muted-dark); }
.site-footer .hours .is-today, .section--ink .hours .is-today { background: var(--orange); }
.site-footer .hours .is-today dt, .site-footer .hours .is-today dd,
.section--ink .hours .is-today dt, .section--ink .hours .is-today dd { color: var(--ink); }
.hours-line { display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline; }
.hours-line b { font-family: var(--font-display); }
.hours-line span { color: var(--muted); font-weight: 600; }
.hours-line--dark span, .site-footer .hours-line span { color: #f3f1ec; }
.hours-line--dark b, .site-footer .hours-line b { color: var(--orange-300); }
.hours-line--hero { font-size: .92rem; padding-left: 16px; border-left: 2px solid var(--line); }
.hours-note a { font-weight: 800; color: inherit; }
.section--ink .hours-note, .site-footer .hours-note { color: #f3f1ec; }

/* ---------- Sections ---------- */

.section { position: relative; padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.section--tight-top { padding-top: clamp(40px, 5vw, 64px); }
.section--flush-top { padding-top: 0; }
.section--paper { background: var(--paper); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: #f3f1ec; overflow: hidden; isolation: isolate; }
.section--ink p { color: var(--muted-dark); }

.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--left { margin-bottom: 28px; }

.section-title {
	font-size: clamp(2rem, 4.8vw, 3.6rem);
	line-height: 1.02;
	text-wrap: balance;
}
.section-title--sm { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.lede { margin-top: 18px; font-size: 1.14rem; color: var(--muted); text-wrap: pretty; }
.section--ink .lede { color: var(--muted-dark); }

.split-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; flex-wrap: wrap; margin-bottom: 36px;
}
.split-head .section-head { margin-bottom: 0; }

/* Decorative backdrops */
.dots {
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(22,20,15,.16) 1.2px, transparent 1.3px);
	background-size: 26px 26px;
	mask-image: radial-gradient(ellipse 75% 70% at 60% 40%, #000 25%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 75% 70% at 60% 40%, #000 25%, transparent 75%);
}
.dots--light { background-image: radial-gradient(rgba(255,255,255,.14) 1.2px, transparent 1.3px); }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.blob--1 { width: 520px; height: 520px; right: -120px; top: -140px; background: radial-gradient(circle, rgba(255,109,6,.42), transparent 66%); animation: drift 16s ease-in-out infinite alternate; }
.blob--2 { width: 380px; height: 380px; left: -160px; bottom: -120px; background: radial-gradient(circle, rgba(255,109,6,.22), transparent 66%); animation: drift 20s ease-in-out infinite alternate-reverse; }
.blob--3 { width: 620px; height: 620px; left: -200px; top: 10%; background: radial-gradient(circle, rgba(255,109,6,.26), transparent 66%); animation: drift 18s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translate3d(-50px, 40px, 0) scale(1.08); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit { to { rotate: 360deg; } }

/* ---------- Scroll progress / announcement ---------- */

.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress span {
	display: block; height: 100%; width: 100%;
	background: var(--orange);
	transform-origin: 0 50%; transform: scaleX(var(--p, 0));
}

.announce {
	position: relative; z-index: 60;
	background: var(--ink); color: #fff;
	text-align: center; font-size: .88rem; font-weight: 700; padding: 8px 0;
}

/* ---------- Header ---------- */

.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	height: var(--header-h);
	transition: background-color .35s, box-shadow .35s, transform .45s var(--ease), height .35s var(--ease);
}
.announce ~ .site-header { top: 37px; }
.site-header.is-scrolled {
	top: 0;
	--header-h: 68px;
	background: rgba(245, 242, 236, 0.84);
	backdrop-filter: saturate(160%) blur(16px);
	-webkit-backdrop-filter: saturate(160%) blur(16px);
	box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translateY(-110%); }
.admin-bar .site-header { margin-top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { margin-top: 46px; } }

.site-header__inner { height: 100%; display: flex; align-items: center; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; text-decoration: none; color: var(--ink); }
.brand__mark { width: 46px; height: 46px; transition: rotate .8s var(--ease); }
.brand:hover .brand__mark { rotate: -30deg; }
.brand__text { display: grid; line-height: 1; }
.brand__text b { font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; letter-spacing: -.03em; }
.brand__text small { margin-top: 3px; font-size: .64rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--orange-600); }
.brand--white { color: #fff; }
.brand--white .brand__text small { color: var(--orange); }

.site-nav { position: relative; margin-inline: auto; isolation: isolate; }
.nav { list-style: none; display: flex; gap: 2px; }
.nav a {
	position: relative; display: block;
	padding: 10px 14px; border-radius: 10px;
	color: var(--text); text-decoration: none; font-weight: 700; font-size: .95rem;
	transition: color .25s;
}
.nav a:hover { color: var(--orange-600); }
.nav a.is-current, .nav .current-menu-item > a { color: var(--ink); }
.nav a.is-current::after, .nav .current-menu-item > a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px; border-radius: 3px; background: var(--orange);
}
.nav__ink {
	position: absolute; left: 0; top: 50%; height: 38px; width: 0; margin-top: -19px; z-index: -1;
	border-radius: 10px; background: #fff; box-shadow: var(--shadow);
	opacity: 0; transition: transform .4s var(--ease), width .4s var(--ease), opacity .25s;
}
.site-nav.is-hovering .nav__ink { opacity: 1; }

.site-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.site-nav + .site-header__actions { margin-left: 0; }

.menu-toggle {
	display: none; width: 48px; height: 48px; border-radius: 14px;
	border: 0; background: var(--ink);
}
.menu-toggle__bars { position: relative; display: block; width: 20px; height: 10px; margin: auto; }
.menu-toggle__bars i {
	position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: #fff;
	transition: transform .4s var(--ease), top .4s var(--ease), width .3s var(--ease);
}
.menu-toggle__bars i:nth-child(1) { top: 0; }
.menu-toggle__bars i:nth-child(2) { top: 8px; width: 60%; }
.menu-toggle[aria-expanded="true"] { background: var(--orange); }
.menu-toggle[aria-expanded="true"] i { background: var(--ink); }
.menu-toggle[aria-expanded="true"] i:nth-child(1) { top: 4px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-child(2) { top: 4px; width: 100%; transform: rotate(-45deg); }

body.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; }
body.menu-open .site-header .brand { color: #fff; }
body.menu-open .site-header .brand__text small { color: var(--orange); }
body.menu-open .site-header .brand__mark { filter: invert(1) hue-rotate(180deg) saturate(1.4); }

.mobile-menu {
	position: fixed; inset: 0; z-index: 90;
	background: var(--ink); color: #fff;
	padding: calc(var(--header-h) + 24px) var(--gutter) calc(24px + env(safe-area-inset-bottom));
	display: flex; overflow: hidden;
	clip-path: inset(0 0 100% 0);
	transition: clip-path .6s var(--ease), visibility 0s .6s;
	visibility: hidden;
}
.mobile-menu[hidden] { display: flex; }
.mobile-menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .6s var(--ease), visibility 0s 0s; }
.mobile-menu__gear { position: absolute; right: -35%; bottom: -12%; width: 90vw; max-width: 520px; opacity: .14; pointer-events: none; }
.mobile-menu__inner { position: relative; display: flex; flex-direction: column; justify-content: space-between; width: 100%; gap: 28px; overflow-y: auto; }
.mobile-nav { list-style: none; counter-reset: mnav; }
.mobile-nav li { overflow: hidden; border-bottom: 1px solid var(--line-dark); counter-increment: mnav; }
.mobile-nav a {
	display: flex; align-items: baseline; gap: 14px;
	padding: 12px 0; color: #fff; text-decoration: none;
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(1.9rem, 9vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.1;
	transform: translateY(105%); transition: transform .6s var(--ease), color .2s;
	transition-delay: calc(var(--i, 0) * 50ms + 120ms);
}
.mobile-nav a::before { content: "0" counter(mnav); font-size: .8rem; letter-spacing: .1em; color: var(--orange); font-weight: 700; }
.mobile-nav a.is-current, .mobile-nav a:hover { color: var(--orange); }
.mobile-menu.is-open .mobile-nav a { transform: none; }
.mobile-menu__foot { display: grid; gap: 10px; justify-items: start; }
.mobile-menu__foot .btn { width: 100%; }
.mobile-menu__addr { display: inline-flex; align-items: center; gap: 8px; color: var(--muted-dark); text-decoration: none; font-weight: 600; font-size: .95rem; }
.mobile-menu__addr .icon { color: var(--orange); }

/* ---------- Brand gear (SVG) ---------- */

.gear { overflow: visible; }
.gear__box { fill: none; stroke: none; }
.gear__body { fill: var(--ink); }
.gear__arc { fill: none; stroke: var(--orange); stroke-width: 19; stroke-linecap: butt; }
.gear__spin { transform-box: fill-box; transform-origin: center; animation: spin 48s linear infinite; }
.gear__track { fill: none; stroke: rgba(22,20,15,.14); stroke-width: 1.5; stroke-dasharray: 3 7; }
.gear__sweep {
	fill: none; stroke: var(--orange); stroke-width: 3.5; stroke-linecap: round;
	stroke-dasharray: 16 84; transform-box: fill-box; transform-origin: center;
	animation: sweep 7s linear infinite;
}
@keyframes sweep { to { stroke-dashoffset: -100; } }

.gear--hero-sm .gear__spin { animation-duration: 30s; }
.gear--cta .gear__body { fill: none; stroke: var(--ink); stroke-width: 3; }
.gear--cta .gear__arc { stroke: var(--ink); stroke-width: 6; }
.gear--cta .gear__track, .gear--cta .gear__sweep { display: none; }
.gear--menu .gear__body { fill: #fff; }
.gear--menu .gear__track { stroke: rgba(255,255,255,.3); }
.gear--404 .gear__spin { animation-duration: 10s; }

/* ---------- Home hero ---------- */

.hero, .page-hero, .article-hero, .error-page { position: relative; overflow: hidden; background: var(--bone); isolation: isolate; }
.hero__bg, .page-hero__bg, .fob__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 36px) 0 72px; }
.hero__outline {
	position: absolute; left: 0; bottom: 18px; width: 100%; overflow: hidden; white-space: nowrap;
}
.hero__outline span {
	display: inline-block; padding-right: .4em;
	font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 11vw, 9rem); line-height: 1;
	letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px rgba(22,20,15,.1);
	animation: slide 60s linear infinite;
}
@keyframes slide { to { transform: translateX(-50%); } }

.hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(28px, 4vw, 64px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero__slogan {
	margin-top: 28px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.2rem);
	color: var(--orange-600); letter-spacing: -.01em;
}
.hero__title {
	margin-top: 10px;
	font-size: clamp(2.8rem, 6.4vw, 5.6rem);
	font-weight: 700;
	line-height: .94;
	letter-spacing: -0.045em;
}
.hero__title .line { display: block; }
.hero__title .dot { color: var(--orange-600); }
.hero__lede { margin-top: 26px; max-width: 560px; font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--muted); }
.hero__lede strong { color: var(--text); }
.hero .btn-row { margin-top: 32px; }
.hero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 30px; }

.hero__stage { position: relative; }
.stage { position: relative; width: min(580px, 100%); aspect-ratio: 1; margin-inline: auto; container-type: inline-size; }
.stage__glow {
	position: absolute; inset: 14%; border-radius: 50%;
	background: radial-gradient(circle, rgba(255,109,6,.34), transparent 64%);
	filter: blur(24px); animation: glow 6s ease-in-out infinite;
}
@keyframes glow { 50% { opacity: .55; transform: scale(1.08); } }
.gear--hero { position: absolute; inset: 12%; width: 76%; height: 76%; filter: drop-shadow(0 30px 40px rgba(22,20,15,.18)); }

.hphone__body { fill: #fff; stroke: var(--ink); stroke-width: 12; }
.hphone__notch, .hphone__home { fill: var(--ink); }
.hphone__track { fill: none; stroke: var(--bone-2); stroke-width: 7; }
.hphone__ring {
	fill: none; stroke: var(--orange); stroke-width: 7; stroke-linecap: round;
	stroke-dasharray: 100; stroke-dashoffset: 100;
	transform-box: fill-box; transform-origin: center; rotate: -90deg;
	animation: fill-ring 3s var(--ease) infinite;
}
@keyframes fill-ring { 0% { stroke-dashoffset: 100; } 70%, 100% { stroke-dashoffset: 0; } }
.hphone__bar { fill: var(--ink); opacity: .85; }
.hphone__bar--dim { fill: var(--bone-2); opacity: 1; }
.scr { fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: 0; animation: scr 12s infinite; }
.scr--2 { animation-delay: 3s; }
.scr--3 { animation-delay: 6s; }
.scr--4 { animation-delay: 9s; }
@keyframes scr {
	0% { opacity: 0; transform: translateY(8px); }
	3%, 22% { opacity: 1; transform: none; }
	25%, 100% { opacity: 0; transform: translateY(-6px); }
}

.orbit { list-style: none; position: absolute; inset: 0; animation: orbit 60s linear infinite; }
.orbit li {
	--r: 250px;
	position: absolute; left: 50%; top: 50%; width: 0; height: 0;
	transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1));
}
@supports (container-type: inline-size) { .orbit li { --r: 44cqw; } }
.orbit__chip {
	position: absolute; left: 0; top: 0;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px 8px 8px; border-radius: 14px;
	background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow);
	font-size: .84rem; white-space: nowrap;
	translate: -50% -50%;
	animation: orbit 60s linear infinite reverse;
}
.orbit__chip .icon { flex: none; width: 30px; height: 30px; min-width: 30px; max-width: none; padding: 6px; border-radius: 9px; background: var(--orange); color: var(--ink); }
.orbit__chip b { font-weight: 800; }
.stage:hover .orbit, .stage:hover .orbit__chip, .is-offscreen .orbit, .is-offscreen .orbit__chip,
.is-offscreen .gear__spin, .is-offscreen .gear__sweep, .is-offscreen .scr, .is-offscreen .hphone__ring { animation-play-state: paused; }

/* ---------- Page hero ---------- */

.page-hero { padding: calc(var(--header-h) + clamp(40px, 6vw, 84px)) 0 clamp(48px, 6vw, 88px); }
.page-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
.page-hero__title {
	max-width: 900px;
	font-size: clamp(2.4rem, 6vw, 4.8rem);
	font-weight: 700; line-height: .98; letter-spacing: -0.04em;
	text-wrap: balance;
}
.page-hero__lede { max-width: 640px; margin-top: 22px; font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--muted); }
.page-hero .btn-row { margin-top: 30px; }
.page-hero__art { position: relative; width: clamp(200px, 22vw, 300px); aspect-ratio: 1; display: grid; place-items: center; }
.page-hero__art .gear { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__icon {
	position: relative; display: grid; place-items: center;
	width: 34%; aspect-ratio: 1; border-radius: 26%;
	background: var(--orange); color: var(--ink);
	box-shadow: var(--shadow-orange);
	animation: bob 6s ease-in-out infinite;
}
.page-hero__icon .icon { width: 46%; height: 46%; stroke-width: 2; }
@keyframes bob { 50% { transform: translateY(-10px); } }

.crumbs { margin-bottom: 22px; font-size: .88rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--text); font-weight: 700; text-decoration: none; }
.crumbs a:hover { color: var(--orange-600); }
.crumbs [aria-current] { display: inline-block; max-width: 40ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: bottom; }

/* ---------- Ticker ---------- */

.ticker { background: var(--orange); color: var(--ink); border-block: 2px solid var(--ink); overflow: hidden; padding: 14px 0; }
.ticker__track { display: flex; width: max-content; animation: slide 45s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track > span { display: flex; align-items: center; gap: 22px; padding-right: 22px; }
.ticker b { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); white-space: nowrap; letter-spacing: -.02em; }
.ticker__gear { width: 22px; height: 22px; animation: spin 6s linear infinite; }

/* ---------- Bento (home repairs) ---------- */

.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(210px, auto); grid-auto-flow: dense; gap: 16px; }
.tile {
	position: relative; overflow: hidden; isolation: isolate;
	display: flex; flex-direction: column; gap: 14px;
	padding: 24px; border-radius: 24px;
	background: var(--bone); border: 1.5px solid var(--line);
	color: var(--text); text-decoration: none;
	transition: border-color .3s, box-shadow .4s var(--ease), transform .4s var(--ease);
}
.tile:hover { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.tile__art { display: block; }
.tile__icon {
	display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px;
	background: var(--orange); color: var(--ink);
	transition: transform .5s var(--ease-spring), background-color .3s, color .3s;
}
.tile__icon .icon { width: 26px; height: 26px; }
.tile:hover .tile__icon { transform: rotate(-12deg) scale(1.06); background: var(--ink); color: var(--orange); }
.tile__body { display: grid; gap: 8px; }
.tile h3 { font-size: 1.28rem; }
.tile p { font-size: .94rem; color: var(--muted); }
.tile__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tile__go {
	display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
	border: 1.5px solid var(--line); background: #fff; color: var(--ink);
	transition: transform .4s var(--ease), background-color .3s, color .3s, border-color .3s;
}
.tile:hover .tile__go { background: var(--ink); color: var(--orange); border-color: var(--ink); transform: rotate(45deg); }

.tile--feature { grid-column: span 2; grid-row: span 2; background: var(--ink); border-color: var(--ink); color: #fff; padding: clamp(26px, 3vw, 40px); }
.tile--feature h3 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); max-width: 12ch; }
.tile--feature p { color: var(--muted-dark); font-size: 1.04rem; max-width: 34ch; }
.tile--feature .ticks { color: #f3f1ec; margin-top: 8px; }
.tile--feature .tile__body { position: relative; z-index: 1; margin-top: auto; }
.tile--feature .tile__foot { margin-top: 18px; }
.tile--feature .tile__art { position: absolute; right: -10px; top: 20px; width: 46%; max-width: 250px; opacity: .95; }
.tile--feature .tile__go { background: var(--orange); border-color: var(--orange); }
.tile--feature:hover .tile__go { background: #fff; color: var(--ink); border-color: #fff; }
.tile--feature .price-tag { background: rgba(255,255,255,.08); color: var(--orange-300); }

.tile--cta { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.tile--cta p { color: var(--ink); opacity: .85; }
.tile--cta h3 { font-size: 1.5rem; }
.tile__cta-label { font-family: var(--font-display); font-weight: 700; }
.tile--cta .tile__go { background: var(--ink); color: var(--orange); border-color: var(--ink); }

.crackfx { width: 100%; height: auto; }
.crackfx__phone { fill: var(--ink-3); stroke: #fff; stroke-width: 5; }
.crackfx__lines path { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 200; stroke-dashoffset: 200; animation: crack 7s var(--ease) infinite; }
.crackfx__lines path:nth-child(n+2) { stroke-width: 2; animation-delay: .15s; }
@keyframes crack { 0%, 6% { stroke-dashoffset: 200; opacity: 1; } 22%, 50% { stroke-dashoffset: 0; opacity: 1; } 66%, 100% { stroke-dashoffset: 0; opacity: 0; } }
.crackfx__wipe { fill: rgba(255,109,6,.18); transform-box: fill-box; transform-origin: top; transform: scaleY(0); animation: wipe 7s var(--ease) infinite; }
@keyframes wipe { 0%, 48% { transform: scaleY(0); opacity: 1; } 64% { transform: scaleY(1); opacity: 1; } 76%, 100% { transform: scaleY(1); opacity: 0; } }

.battfx { position: relative; display: block; width: 74px; height: 38px; border: 3px solid var(--ink); border-radius: 10px; padding: 4px; }
.battfx::after { content: ""; position: absolute; right: -9px; top: 10px; width: 5px; height: 12px; border-radius: 0 3px 3px 0; background: var(--ink); }
.battfx i { display: block; height: 100%; width: 20%; border-radius: 5px; background: var(--orange-600); animation: charge 4s var(--ease) infinite; }
@keyframes charge { 0% { width: 12%; background: var(--orange-600); } 70%, 100% { width: 100%; background: var(--orange); } }

/* Cursor-follow glow (JS sets --mx/--my) */
[data-glow] { position: relative; }
[data-glow]::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1; pointer-events: none;
	background: radial-gradient(380px circle at var(--mx, -100%) var(--my, -100%), rgba(255,109,6,.16), transparent 45%);
	opacity: 0; transition: opacity .4s;
}
[data-glow]:hover::after { opacity: 1; }

/* ---------- Fob copy ---------- */

.fob__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.fob__art { position: relative; padding: clamp(20px, 3vw, 40px); border-radius: var(--radius-lg); background: var(--ink-2); border: 1px solid var(--line-dark); }
.fobfx { width: 100%; height: auto; overflow: visible; }
.fobfx__shape { fill: var(--bone); }
.fobfx__hole { fill: var(--ink-2); }
.fobfx__ring { fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round; }
.fobfx__logo path { fill: none; stroke: var(--ink); stroke-width: 3.5; stroke-linecap: round; }
.fobfx__waves path { fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round; opacity: .15; animation: wave 2.4s ease-in-out infinite; }
.fobfx__waves path:nth-child(2) { animation-delay: .25s; }
.fobfx__waves path:nth-child(3) { animation-delay: .5s; }
@keyframes wave { 30%, 50% { opacity: 1; } }
.fobfx__arrow { fill: none; stroke: var(--muted-dark); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.fobfx__outline { fill: none; stroke: var(--orange); stroke-width: 3; stroke-dasharray: 8 8; animation: march 1.2s linear infinite; }
@keyframes march { to { stroke-dashoffset: -16; } }
.fobfx__fill { fill: var(--orange); transform-box: fill-box; transform-origin: bottom; animation: fill-up 5s var(--ease) infinite; }
@keyframes fill-up { 0%, 15% { transform: scaleY(0); } 60%, 88% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
.fobfx__logo--copy { opacity: 0; animation: appear 5s var(--ease) infinite; }
@keyframes appear { 0%, 55% { opacity: 0; } 65%, 88% { opacity: 1; } 100% { opacity: 0; } }
.fobfx__label { fill: var(--muted-dark); font: 700 17px var(--font-display); }
.fob__tag {
	position: absolute; right: 18px; top: 18px;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: 999px; background: var(--orange); color: var(--ink);
	font-size: .8rem; font-weight: 800;
}
.fob__tag .icon { width: 16px; height: 16px; stroke-width: 3; }
.fob__steps { list-style: none; display: grid; gap: 10px; margin-top: 8px; }
.fob__steps li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); transition: border-color .3s, background-color .3s; }
.fob__steps li:hover { border-color: rgba(255,109,6,.5); background: rgba(255,109,6,.06); }
.fob__steps li > span { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--orange); color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.fob__steps h3 { font-size: 1.1rem; margin-bottom: 2px; color: #fff; }
.fob__steps p { font-size: .95rem; }
.fob .btn-row { margin-top: 28px; }

/* ---------- Unlocking & SIM ---------- */

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo__card {
	position: relative; isolation: isolate; overflow: hidden;
	display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 26px; align-items: start;
	padding: clamp(24px, 3.4vw, 40px); border-radius: var(--radius-lg);
	background: #fff; border: 1.5px solid var(--line);
	transition: border-color .3s, box-shadow .4s var(--ease);
}
.duo__card:hover { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.duo__card--ink { background: var(--ink); border-color: var(--ink); color: #f3f1ec; }
.duo__card--ink p { color: var(--muted-dark); }
.duo__card--ink:hover { border-color: var(--orange); }
.duo__art { display: grid; place-items: center; aspect-ratio: 1; border-radius: 26px; background: var(--bone); }
.duo__card--ink .duo__art { background: var(--ink-3); }
.duo__art svg { width: 72%; height: auto; overflow: visible; }
.duo__body { display: grid; gap: 14px; }
.duo__body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); scroll-margin-top: 140px; }
.duo__links { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 6px; }

.lockfx__shackle { fill: none; stroke: var(--ink); stroke-width: 12; stroke-linecap: round; animation: unlock 4s var(--ease-spring) infinite; }
@keyframes unlock { 0%, 30% { transform: translateY(0); } 45%, 80% { transform: translateY(-16px); } 100% { transform: translateY(0); } }
.lockfx__body { fill: var(--orange); }
.lockfx__hole { fill: var(--ink); }

.simfx__card { fill: var(--bone); }
.simfx__chip { fill: var(--orange); }
.simfx__lines { fill: none; stroke: var(--ink); stroke-width: 2.5; }
.simfx__bars rect { fill: var(--orange-300); opacity: .2; animation: bars 2.4s infinite; }
.simfx__bars rect:nth-child(2) { animation-delay: .3s; }
.simfx__bars rect:nth-child(3) { animation-delay: .6s; }
@keyframes bars { 30%, 70% { opacity: 1; } }

/* ---------- Accessories (home) ---------- */

.acc { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.acc__intro > .btn { margin-top: 24px; }
.acc__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.acc-tile {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
	aspect-ratio: 1; padding: 20px; border-radius: 22px;
	background: var(--bone); border: 1.5px solid var(--line);
	text-decoration: none; color: var(--text);
	transition: background-color .35s, border-color .35s, color .35s, transform .4s var(--ease);
}
.acc-tile h3 { font-size: 1.08rem; }
.acc-tile__icon .icon { width: 42px; height: 42px; stroke-width: 1.5; color: var(--ink); transition: transform .6s var(--ease-spring); }
.acc-tile__go { position: absolute; right: 16px; top: 16px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: #fff; transition: transform .4s var(--ease); }
.acc-tile__go .icon { width: 16px; height: 16px; }
.acc-tile:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px); }
.acc-tile:hover .acc-tile__icon .icon { transform: scale(1.12) rotate(-8deg); }
.acc-tile:hover .acc-tile__go { transform: rotate(45deg); background: var(--ink); color: var(--orange); }

.install-card { display: flex; gap: 18px; align-items: center; margin-top: 8px; padding: 18px; border-radius: var(--radius); background: var(--ink); color: #f3f1ec; }
.install-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: #fff; }
.install-card p { color: var(--muted-dark); font-size: .92rem; }
.install-card__fx { flex: none; display: grid; place-items: center; width: 78px; height: 96px; border-radius: 16px; background: var(--ink-3); }
.install-card__phone { position: relative; display: block; width: 40px; height: 70px; border: 3px solid #fff; border-radius: 9px; overflow: hidden; }
.install-card__phone i { position: absolute; inset: 3px; border-radius: 5px; background: linear-gradient(135deg, rgba(255,154,87,.9), rgba(255,109,6,.35)); animation: protector 3.6s var(--ease) infinite; }
@keyframes protector { 0% { transform: translateY(-110%); } 45%, 85% { transform: none; } 100% { transform: none; opacity: 0; } }

/* ---------- Steps ---------- */

.steps { list-style: none; position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps::before {
	content: ""; position: absolute; left: 16%; right: 16%; top: 44px; height: 0;
	border-top: 2px dashed var(--line);
}
.step { position: relative; text-align: center; padding: 0 10px; }
.step__cog { position: relative; display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 16px; }
.step__gear { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--ink); stroke-width: 1.1; background: var(--bone); border-radius: 50%; animation: spin 14s linear infinite; }
.step:nth-child(2) .step__gear { animation-direction: reverse; }
.step__icon { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; transition: background-color .5s, color .5s; }
.step.is-in .step__icon { background: var(--orange); color: var(--ink); transition-delay: calc(var(--d, 0) * 200ms + 400ms); }
.step__icon .icon { width: 22px; height: 22px; }
.step__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .15em; color: var(--muted); margin-bottom: 6px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; max-width: 32ch; margin-inline: auto; }

/* ---------- Find the kiosk ---------- */

.find__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.find .live { margin-bottom: 24px; }
.info-list { list-style: none; display: grid; gap: 18px; margin-bottom: 28px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--orange); color: var(--ink); }
.info-list small { display: block; color: var(--muted-dark); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; margin-bottom: 2px; }
.info-list a { color: #fff; text-decoration: none; font-weight: 700; font-size: 1.08rem; }
.info-list a:hover { color: var(--orange); }
.find__map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink-3); aspect-ratio: 5 / 4; }
.find__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); transition: filter .6s; }
.find__map:hover iframe { filter: none; }
.find__label {
	position: absolute; left: 16px; bottom: 16px;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px 8px 8px; border-radius: 999px; background: #fff; color: var(--ink);
	font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-lg); pointer-events: none;
}
.score { display: flex; align-items: center; gap: 18px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.score__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.6rem, 7vw, 5.4rem); line-height: .9; letter-spacing: -.05em; color: var(--orange); }
.score__meta { display: grid; gap: 8px; }

/* ---------- Posts ---------- */

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.post-card {
	position: relative; display: flex; flex-direction: column; overflow: hidden;
	border-radius: var(--radius-lg); background: #fff; border: 1.5px solid var(--line);
	transition: box-shadow .45s var(--ease), border-color .3s;
}
.section--paper .post-card { background: var(--bone); }
.post-card:hover { box-shadow: var(--shadow-lg); border-color: var(--ink); }
.post-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__placeholder { display: grid; place-items: center; height: 100%; color: var(--orange); }
.post-card__placeholder .icon { width: 48px; height: 48px; animation: spin 12s linear infinite; }
.post-card__body { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px 26px; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: .84rem; color: var(--muted); font-weight: 600; }
.post-card__title { font-size: 1.26rem; line-height: 1.2; }
.post-card__title a { text-decoration: none; background: linear-gradient(var(--orange), var(--orange)) 0 100% / 0 3px no-repeat; transition: background-size .4s var(--ease); }
.post-card:hover .post-card__title a { background-size: 100% 3px; }
.post-card__title a::after { content: ""; position: absolute; inset: 0; }
.post-card .chip { position: relative; z-index: 2; }
.post-card__excerpt { color: var(--muted); font-size: .95rem; }
.post-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--orange-600); font-weight: 800; font-size: .92rem; }
.post-card__more .icon { transition: transform .3s var(--ease); }
.post-card:hover .post-card__more .icon { transform: translateX(5px); }

.post-grid--blog .post-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; }
.post-card.featured .post-card__media { aspect-ratio: auto; min-height: 340px; }
.post-card.featured .post-card__body { padding: clamp(24px, 4vw, 48px); justify-content: center; }
.post-card.featured .post-card__title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.post-card.featured .post-card__more { margin-top: 8px; }

.blog-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 36px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.search-pill {
	display: flex; align-items: center; gap: 10px; min-width: 280px;
	padding: 4px 18px; border-radius: 14px; border: 2px solid var(--line); background: #fff;
	transition: border-color .25s, box-shadow .25s;
}
.search-pill:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255,109,6,.25); }
.search-pill .icon { color: var(--muted); }
.search-pill input { flex: 1; border: 0; outline: 0; background: none; min-width: 0; padding: 10px 0; }

.pagination { margin-top: 48px; }
.pagination ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.pagination a, .pagination span {
	display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 12px;
	border-radius: 12px; border: 2px solid var(--line); background: #fff;
	text-decoration: none; font-weight: 800;
}
.pagination a:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); border-color: var(--ink); color: #fff; }

.empty { text-align: center; padding: 60px 20px; display: grid; justify-items: center; gap: 12px; }
.empty .icon { width: 48px; height: 48px; color: var(--orange-600); }

/* ---------- CTA band ---------- */

.cta-band { padding-block: 0 var(--section); background: var(--paper); }
.section--bone + .cta-band { background: var(--bone); }
.section--ink + .cta-band, .map-full + .cta-band { padding-top: var(--section); }
.cta-band__card {
	position: relative; overflow: hidden; isolation: isolate;
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
	padding: clamp(32px, 5vw, 64px); border-radius: var(--radius-lg);
	background: var(--orange); color: var(--ink);
	box-shadow: var(--shadow-orange);
}
.cta-band__gear { position: absolute; right: -60px; top: 50%; width: 360px; margin-top: -180px; opacity: .14; z-index: -1; pointer-events: none; }
.cta-band__copy { flex: 1 1 380px; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.02; margin-bottom: 12px; max-width: 18ch; }
.cta-band p { font-size: 1.1rem; max-width: 560px; font-weight: 600; }

/* ---------- Services page ---------- */

.jump {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-block: 1px solid var(--line);
	transition: top .45s var(--ease);
}
.jump.is-pinned { top: 68px; }
.admin-bar .jump.is-pinned { top: 100px; }
.jump ul { list-style: none; display: flex; gap: 6px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.jump ul::-webkit-scrollbar { display: none; }
.jump a {
	display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
	padding: 8px 14px; border-radius: 10px; text-decoration: none;
	font-weight: 700; font-size: .88rem; color: var(--text);
	transition: background-color .25s, color .25s;
}
.jump a .icon { width: 18px; height: 18px; color: var(--orange-600); }
.jump a:hover, .jump a.is-active { background: var(--ink); color: #fff; }
.jump a:hover .icon, .jump a.is-active .icon { color: var(--orange); }

.svc-list { display: grid; gap: 12px; }
.svc {
	position: relative; isolation: isolate; overflow: hidden;
	display: grid; grid-template-columns: 56px 64px minmax(0, 1.3fr) minmax(0, 1fr) auto; gap: 24px; align-items: center;
	padding: 22px 26px; border-radius: var(--radius);
	background: var(--bone); border: 1.5px solid var(--line);
	scroll-margin-top: 150px;
	transition: border-color .3s, box-shadow .4s var(--ease), background-color .3s;
}
.svc:hover, .svc:target { border-color: var(--ink); background: #fff; box-shadow: var(--shadow); }
.svc:target { outline: 3px solid var(--orange); outline-offset: 2px; }
.svc__num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--muted); letter-spacing: -.03em; }
.svc__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--ink); color: var(--orange); transition: transform .5s var(--ease-spring), background-color .3s, color .3s; }
.svc:hover .svc__icon { transform: rotate(-10deg); background: var(--orange); color: var(--ink); }
.svc__icon .icon { width: 28px; height: 28px; }
.svc__main h3 { font-size: 1.35rem; margin-bottom: 6px; }
.svc__main p { color: var(--muted); font-size: .96rem; }
.svc__side { display: grid; justify-items: end; gap: 10px; }

.brands { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.brands .eyebrow { margin-bottom: 8px; }
.brand-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.brand-list li {
	padding: 14px 26px; border-radius: 14px; border: 1.5px solid var(--line-dark);
	font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem);
	transition: background-color .25s, border-color .25s;
}
.brand-list li:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.brand-list__more { background: var(--orange); border-color: var(--orange) !important; font-size: 1rem !important; display: flex; align-items: center; }
.brand-list__more a { color: var(--ink); text-decoration: none; }
.brand-list__more:hover { background: #fff !important; }

.extra-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.extra {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; flex-direction: column; gap: 14px;
	padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg);
	background: #fff; border: 1.5px solid var(--line);
	scroll-margin-top: 150px;
	transition: border-color .3s, box-shadow .4s var(--ease);
}
.extra:hover, .extra:target { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.extra:target { outline: 3px solid var(--orange); outline-offset: 2px; }
.extra--fob { background: var(--ink); border-color: var(--ink); color: #f3f1ec; }
.extra--fob p, .extra--fob .ticks { color: var(--muted-dark); }
.extra--fob .price-tag { background: rgba(255,255,255,.08); color: var(--orange-300); }
.extra__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.extra__icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px; background: var(--orange); color: var(--ink); transition: transform .5s var(--ease-spring); }
.extra:hover .extra__icon { transform: rotate(-10deg) scale(1.05); }
.extra__icon .icon { width: 28px; height: 28px; }
.extra h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.extra p { color: var(--muted); }
.extra__link { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 8px; font-weight: 800; color: var(--orange-600); text-decoration: none; }
.extra--fob .extra__link { color: var(--orange); border-color: var(--line-dark); }
.extra__link .icon { transition: transform .3s var(--ease); }
.extra__link:hover .icon { transform: translateX(5px); }

.tips { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.tips__copy { position: sticky; top: 170px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
	display: flex; gap: 18px; align-items: flex-start;
	padding: 20px 22px; border-radius: var(--radius); background: var(--bone); border: 1.5px solid var(--line);
	transition: background-color .3s, box-shadow .3s, transform .4s var(--ease), border-color .3s;
}
.checklist li:hover { background: #fff; box-shadow: var(--shadow); border-color: var(--ink); }
.checklist__n { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--orange); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.checklist h3 { font-size: 1.15rem; margin-bottom: 4px; }
.checklist p { color: var(--muted); }

.faq { display: grid; gap: 10px; }
.faq__item { border-radius: var(--radius); background: #fff; border: 1.5px solid var(--line); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--ink); }
.faq__item summary {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 18px 22px; cursor: pointer; list-style: none;
	font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--bone); transition: transform .4s var(--ease), background-color .3s, color .3s; }
.faq__item[open] summary i { transform: rotate(45deg); background: var(--orange); color: var(--ink); }
.faq__a { padding: 0 22px 22px; color: var(--muted); }
.faq__item[open] .faq__a { animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } }

/* ---------- Accessories page ---------- */

.filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 36px; }
.filter .chip { font-size: .95rem; padding: .55em 1.2em; }
.shelf { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.shelf__item {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; flex-direction: column;
	border-radius: var(--radius-lg); background: var(--bone); border: 1.5px solid var(--line);
	scroll-margin-top: 120px;
	transition: box-shadow .45s var(--ease), border-color .3s, opacity .4s, scale .4s var(--ease);
}
.shelf__item:hover, .shelf__item:target { box-shadow: var(--shadow-lg); border-color: var(--ink); }
.shelf__item.is-filtered { opacity: .15; scale: .97; pointer-events: none; }
.shelf__art { position: relative; display: grid; place-items: center; height: 210px; overflow: hidden; background: var(--ink); color: #fff; }
.shelf__item--power .shelf__art { background: var(--orange); color: var(--ink); }
.shelf__item--audio .shelf__art { background: var(--ink-3); }
.shelf__art .icon { position: relative; width: 72px; height: 72px; stroke-width: 1.3; transition: transform .6s var(--ease-spring); }
.shelf__item:hover .shelf__art .icon { transform: scale(1.15) rotate(-8deg); }
.shelf__ring { position: absolute; width: 170px; height: 170px; border-radius: 50%; border: 2px dashed currentColor; opacity: .3; animation: spin 24s linear infinite; }
.shelf__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 26px; flex: 1; }
.shelf__group { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-600); }
.shelf__title { font-size: 1.4rem; }
.shelf__body > p:not(.shelf__group) { color: var(--muted); }
.shelf__link { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 8px; color: var(--orange-600); font-weight: 800; font-size: .92rem; text-decoration: none; }
.shelf__link .icon { width: 18px; height: 18px; }
.shelf__link:hover { text-decoration: underline; }

.install { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.install .ticks { margin-bottom: 28px; color: #f3f1ec; }
.install__fx { display: grid; place-items: center; }
.protfx { position: relative; width: min(260px, 60vw); aspect-ratio: 9 / 16; }
.protfx__phone { position: absolute; inset: 0; border-radius: 38px; border: 10px solid #fff; background: var(--ink-3); overflow: hidden; }
.protfx__screen { position: absolute; inset: 12px; border-radius: 22px; background: radial-gradient(circle at 30% 20%, rgba(255,109,6,.5), transparent 60%), var(--ink-2); }
.protfx__glass {
	position: absolute; inset: 10px; border-radius: 30px;
	background: linear-gradient(160deg, rgba(255,255,255,.35), rgba(255,255,255,.06) 40%, rgba(255,154,87,.18));
	border: 2px solid rgba(255,255,255,.6);
	animation: glass-on 5s var(--ease) infinite;
}
@keyframes glass-on { 0% { transform: translate(40%, -30%) rotate(14deg); opacity: 0; } 15% { opacity: 1; } 45%, 90% { transform: none; opacity: 1; } 100% { transform: none; opacity: 0; } }
.protfx__shine { position: absolute; inset: 10px; border-radius: 30px; overflow: hidden; pointer-events: none; }
.protfx__shine::before { content: ""; position: absolute; top: -20%; bottom: -20%; width: 40%; left: -60%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg); animation: shine 5s var(--ease) infinite; }
@keyframes shine { 0%, 50% { left: -60%; } 70%, 100% { left: 130%; } }

.glass-guide { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.compare { display: grid; gap: 12px; }
.compare__row {
	display: grid; grid-template-columns: 1fr 190px; gap: 20px; align-items: center;
	padding: 20px 22px; border-radius: var(--radius); background: #fff; border: 1.5px solid var(--line);
}
.compare__row h3 { font-size: 1.14rem; margin-bottom: 4px; }
.compare__row p { font-size: .94rem; color: var(--muted); }
.meter small { display: block; color: var(--muted); font-size: .76rem; font-weight: 700; margin-bottom: 6px; }
.meter__bar { display: block; height: 10px; border-radius: 10px; background: var(--bone-2); overflow: hidden; }
.meter__bar i { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--orange); transition: width 1.2s var(--ease) .3s; }
.is-in .meter__bar i, html:not(.js) .meter__bar i { width: calc(var(--v) / 3 * 100%); }

.feature-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature {
	position: relative; isolation: isolate; overflow: hidden;
	padding: 28px; border-radius: var(--radius-lg);
	background: #fff; border: 1.5px solid var(--line);
	transition: border-color .3s, box-shadow .4s var(--ease);
}
.section--paper .feature { background: var(--bone); }
.feature:hover { border-color: var(--ink); box-shadow: var(--shadow); }
.feature__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 14px; background: var(--ink); color: var(--orange); }
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- About page ---------- */

.about { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.about__text { display: grid; gap: 16px; font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.about__text strong { color: var(--text); }
.about__links { margin-top: 40px; }
.glance {
	position: sticky; top: 110px;
	padding: 30px; border-radius: var(--radius-lg);
	background: var(--ink); color: #f3f1ec;
	box-shadow: var(--shadow-lg);
}
.glance__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.glance__head img { width: 56px; height: 56px; animation: spin 30s linear infinite; }
.glance__head p { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.glance dl { display: grid; margin: 0 0 20px; }
.glance dl div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-dark); }
.glance dt { color: var(--orange-300); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 2px; }
.glance dd { margin: 0; font-weight: 600; }
.glance a { color: #fff; }
.glance a:hover { color: var(--orange); }

.stats { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 28px; text-align: center; }
.stat { display: grid; justify-items: center; gap: 6px; min-width: 150px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 7vw, 5rem); line-height: 1; letter-spacing: -.05em; color: var(--orange); }
.stat__label { color: #f3f1ec; font-weight: 700; }

/* ---------- Contact page ---------- */

.section--overlap { padding-top: 0; padding-bottom: 56px; background: linear-gradient(var(--bone) 56px, var(--paper) 56px); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; position: relative; z-index: 2; }
.contact-card {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; flex-direction: column; gap: 4px;
	padding: 26px; border-radius: var(--radius-lg);
	background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow);
	text-decoration: none; color: var(--text);
	transition: border-color .3s, box-shadow .4s var(--ease);
}
.contact-card:hover { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.contact-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 14px; border-radius: 16px; background: var(--orange); color: var(--ink); transition: transform .5s var(--ease-spring); }
.contact-card:hover .contact-card__icon { transform: rotate(-10deg); }
.contact-card small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; }
.contact-card strong { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.2; }
.contact-card__email { font-size: 1.05rem !important; overflow-wrap: anywhere; }
.contact-card__sub { color: var(--muted); }
.contact-card__cta { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; color: var(--orange-600); font-weight: 800; font-size: .92rem; }
.contact-card__cta .icon { transition: transform .3s var(--ease); }
.contact-card:hover .contact-card__cta .icon { transform: translateX(5px); }

.contact-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-layout__form {
	padding: clamp(24px, 4vw, 48px); border-radius: var(--radius-lg);
	background: var(--bone); border: 1.5px solid var(--line);
}
.contact-layout__form > .muted { margin-bottom: 28px; }
.contact-layout__side { display: grid; gap: 16px; position: sticky; top: 100px; }
.side-card { padding: 26px; border-radius: var(--radius-lg); background: var(--bone); border: 1.5px solid var(--line); }
.side-card .live { margin-bottom: 14px; }
.side-card--ink { background: var(--ink); color: #f3f1ec; border-color: var(--ink); }
.side-card--ink p { color: var(--muted-dark); margin-bottom: 16px; }
.side-card--ink .rating { margin-bottom: 18px; }
.side-card__title { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 14px; }
.side-card__title .icon { color: var(--orange-600); }
.side-card--ink .side-card__title .icon { color: var(--orange); }

.map-full { position: relative; height: clamp(360px, 50vw, 520px); background: var(--bone-2); }
.map-full iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3); }
.map-full__pin {
	position: absolute; left: var(--gutter); bottom: 28px; max-width: calc(100% - 2 * var(--gutter));
	padding: 16px 20px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg);
}
.map-full__pin p { margin-top: 6px; color: var(--muted); font-size: .92rem; }

/* Form */
.quote-form { display: grid; gap: 22px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
	width: 100%; padding: 26px 16px 10px;
	border: 2px solid var(--line); border-radius: 14px; background: #fff;
	outline: 0; appearance: none; -webkit-appearance: none;
	transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field label {
	position: absolute; left: 18px; top: 18px; pointer-events: none;
	color: var(--muted); font-weight: 600;
	transform-origin: 0 0; transition: transform .25s var(--ease), color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255,109,6,.3); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field--select label { transform: translateY(-10px) scale(.76); color: var(--orange-600); font-weight: 800; }
.field--select::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: translateY(-40%) rotate(45deg); pointer-events: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b91c1c; background: #fef2f2; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.form-note { color: var(--muted); font-size: .86rem; flex: 1; min-width: 200px; }
.form-note a { color: inherit; }
.form-status { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; font-weight: 700; animation: panelIn .5s var(--ease); }
.form-status .icon { flex: none; width: 26px; height: 26px; padding: 5px; border-radius: 8px; color: #fff; stroke-width: 3; }
.form-status--success { background: #dcfce7; color: #14532d; }
.form-status--success .icon { background: var(--ok); }
.form-status--error { background: #fee2e2; color: #7f1d1d; }
.form-status--error .icon { background: #b91c1c; }
.quote-form button[disabled] { opacity: .7; pointer-events: none; }

/* ---------- Article ---------- */

.article-hero { padding: calc(var(--header-h) + clamp(40px, 6vw, 80px)) 0 clamp(90px, 10vw, 140px); }
.article-hero__title { margin-top: 18px; font-size: clamp(2.1rem, 5vw, 3.8rem); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
.article-hero__lede { margin-top: 20px; font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.article-cover { margin-top: clamp(-100px, -8vw, -60px); position: relative; z-index: 2; }
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.article { background: var(--paper); }
.article-layout { display: grid; grid-template-columns: 240px minmax(0, 720px); justify-content: center; gap: clamp(28px, 5vw, 72px); padding-block: clamp(48px, 6vw, 80px); }
.article-aside { position: sticky; top: 100px; align-self: start; display: grid; gap: 28px; }
.toc__title { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { list-style: none; display: grid; gap: 2px; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 14px; margin-left: -2px; border-left: 2px solid transparent; color: var(--muted); text-decoration: none; font-size: .9rem; line-height: 1.4; transition: color .2s, border-color .2s; }
.toc a:hover { color: var(--text); }
.toc a.is-active { color: var(--ink); border-color: var(--orange); font-weight: 800; }
.share__row { display: flex; gap: 8px; }
.share .icon-btn { width: 42px; height: 42px; }
.share .icon-btn.is-copied { background: var(--ok); border-color: var(--ok); color: #fff; }
.article-cta {
	display: flex; gap: 20px; align-items: flex-start;
	margin-top: 48px; padding: 28px; border-radius: var(--radius-lg);
	background: var(--bone); border: 1.5px solid var(--line);
}
.article-cta__icon { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: 16px; background: var(--orange); color: var(--ink); }
.article-cta__icon .icon { animation: spin 10s linear infinite; }
.article-cta h2 { font-size: 1.5rem; margin-bottom: 6px; }
.article-cta p { color: var(--muted); margin-bottom: 16px; }
.article-cta .live { margin-bottom: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

/* ---------- 404 ---------- */

.error-page { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) 0 80px; }
.error-page__inner { display: grid; justify-items: center; gap: 18px; }
.error-page__inner > p { color: var(--muted); max-width: 480px; }
.error-page h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.error-page__code { display: flex; align-items: center; gap: .05em; font-family: var(--font-display); font-weight: 700; font-size: clamp(7rem, 22vw, 14rem); line-height: .9; letter-spacing: -.06em; }
.error-page__gear { display: inline-block; width: .82em; height: .82em; }
.error-page__gear .gear { width: 100%; height: 100%; }

/* ---------- Footer ---------- */

.site-footer { position: relative; background: var(--ink); color: #f3f1ec; overflow: hidden; }
.site-footer__big { overflow: hidden; line-height: .78; padding-top: 28px; text-align: center; pointer-events: none; user-select: none; }
.site-footer__big span {
	display: inline-block;
	font-family: var(--font-display); font-weight: 700; font-size: clamp(4.5rem, 19vw, 17rem); letter-spacing: -.06em;
	color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.14);
	background: linear-gradient(90deg, transparent 0 40%, rgba(255,109,6,.55) 50%, transparent 60% 100%) 0 0 / 250% 100% no-repeat;
	-webkit-background-clip: text; background-clip: text;
	animation: sheen 9s linear infinite;
}
@keyframes sheen { from { background-position: 150% 0; } to { background-position: -150% 0; } }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 56px 44px; }
.site-footer__about > p { margin: 14px 0; color: var(--muted-dark); max-width: 340px; }
.site-footer__slogan { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff !important; margin-top: 20px !important; }
.site-footer .rating { margin-bottom: 18px; }
.footer-title { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: var(--muted-dark); text-decoration: none; transition: color .2s, padding .3s var(--ease); }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.site-footer .live { margin-bottom: 16px; }
.footer-contact { display: grid; gap: 12px; margin-bottom: 16px; }
.footer-contact a { display: flex; gap: 12px; align-items: flex-start; color: #f3f1ec; text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-contact .icon { margin-top: 3px; color: var(--orange); }
.hours--footer { font-size: .92rem; }
.socials { list-style: none; display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-dark); color: #fff; transition: background-color .25s, color .25s, transform .3s var(--ease); }
.socials a:hover { background: var(--orange); color: var(--ink); transform: translateY(-3px); }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding-block: 22px 28px; border-top: 1px solid var(--line-dark); font-size: .85rem; color: var(--muted-dark); }

.dock { display: none; }

.to-top {
	position: fixed; right: 20px; bottom: 20px; z-index: 80;
	display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
	border: 0; background: var(--ink); color: var(--orange);
	opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
	transition: opacity .3s, transform .4s var(--ease-spring), background-color .25s;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--orange); color: var(--ink); }
.to-top .icon { position: relative; }
.to-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; rotate: -90deg; }
.to-top__ring circle { fill: none; stroke: var(--orange); stroke-width: 3; stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--p, 0) * 100); }
.to-top:hover .to-top__ring circle { stroke: var(--ink); }

/* ---------- WooCommerce fallback ---------- */

.woocommerce-wrap { max-width: none; }
.woocommerce-wrap .button, .woocommerce-wrap button.button { border-radius: 12px !important; background: var(--ink) !important; color: #fff !important; }

/* ---------- Reveal & motion ---------- */

.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal].is-done { transition: transform .35s var(--ease), box-shadow .45s var(--ease), border-color .3s, background-color .3s, color .3s, opacity .4s, scale .4s var(--ease); transition-delay: 0s; }
.js .hero__title[data-reveal] .line { overflow: hidden; }
[data-tilt] { transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.js [data-reveal] { opacity: 1; transform: none; }
	.hl::before { transform: scaleX(1); }
	.orbit, .orbit__chip, .gear__spin, .gear__sweep, .ticker__track, .hero__outline span, .site-footer__big span { animation: none !important; }
	.scr { animation: none !important; opacity: 0; }
	.scr--1 { opacity: 1; }
	.hphone__ring { animation: none !important; stroke-dashoffset: 30; }
	.crackfx__lines path { animation: none !important; stroke-dashoffset: 0; }
	.crackfx__wipe, .fobfx__logo--copy { animation: none !important; }
	.fobfx__fill { animation: none !important; transform: none; }
	.fobfx__logo--copy { opacity: 1; }
	.battfx i { animation: none !important; width: 70%; }
	.protfx__glass { animation: none !important; transform: none; opacity: 1; }
	.install-card__phone i { animation: none !important; transform: none; }
	.fobfx__waves path, .simfx__bars rect { animation: none !important; opacity: 1; }
	.meter__bar i { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
	.live--header { display: none; }
	.bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.svc { grid-template-columns: 48px 56px minmax(0, 1fr) auto; }
	.svc__signs { display: none; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.acc { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
	.site-nav, .page-hero__art { display: none; }
	.site-nav + .site-header__actions { margin-left: auto; }
	.menu-toggle { display: grid; place-items: center; }
	.page-hero__inner { grid-template-columns: 1fr; }
	.hero { min-height: 0; }
	.hero__inner { grid-template-columns: 1fr; }
	.hero__stage { max-width: 520px; width: 100%; margin-inline: auto; }
	.fob__inner, .find__inner, .glass-guide, .tips, .install, .about { grid-template-columns: 1fr; }
	.fob__art { max-width: 560px; }
	.tips__copy, .glance { position: static; }
	.duo { grid-template-columns: 1fr; }
	.post-grid, .shelf { grid-template-columns: 1fr 1fr; }
	.feature-row { grid-template-columns: 1fr 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
	.contact-layout__side { position: static; grid-template-columns: 1fr 1fr; }
	.article-layout { grid-template-columns: minmax(0, 720px); }
	.article-aside { position: static; order: 2; }
	.toc { display: none; }
}

@media (max-width: 782px) {
	:root { --header-h: 66px; }
	body { font-size: 1rem; padding-bottom: 84px; }
	.header-call { display: none; }
	.brand__mark { width: 40px; height: 40px; }
	.brand__text b { font-size: 1.25rem; }
	.hero { padding-bottom: 56px; }
	.hero__outline { display: none; }
	.hero__proof { gap: 10px; }
	.hours-line--hero { padding-left: 0; border-left: 0; }
	.bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
	.tile { padding: 18px; border-radius: 20px; }
	.tile h3 { font-size: 1.08rem; }
	.tile--feature { grid-column: 1 / -1; grid-row: auto; min-height: 0; padding: 22px; }
	.tile--feature h3 { font-size: 1.9rem; }
	.tile--feature .tile__art { position: relative; right: auto; top: auto; width: 110px; margin: 0 0 -4px auto; }
	.tile--feature .tile__body { margin-top: -62px; }
	.tile--feature .tile__body h3 { max-width: 7ch; }
	.tile:not(.tile--feature) p { display: none; }
	.tile--cta p { display: block; }
	.tile--cta { grid-column: 1 / -1; }
	.duo__card { grid-template-columns: 1fr; }
	.duo__art { width: 110px; }
	.acc__grid { grid-template-columns: 1fr 1fr; }
	.acc-tile { aspect-ratio: auto; min-height: 140px; }
	.steps { grid-template-columns: 1fr; gap: 20px; }
	.steps::before { display: none; }
	.step { display: grid; grid-template-columns: 72px minmax(0, 1fr); column-gap: 18px; text-align: left; padding: 0; }
	.step__cog { grid-row: 1 / span 3; width: 72px; height: 72px; margin: 0; }
	.step__num { margin: 0; }
	.step p { margin-inline: 0; }
	.svc { grid-template-columns: 52px minmax(0, 1fr); gap: 14px 16px; padding: 18px; }
	.svc__num { display: none; }
	.svc__icon { width: 52px; height: 52px; border-radius: 14px; }
	.svc__side { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
	.extra-grid, .post-grid, .shelf, .feature-row, .contact-layout__side { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
	.compare__row { grid-template-columns: 1fr; }
	.post-grid--blog .post-card.featured { grid-template-columns: 1fr; }
	.post-card.featured .post-card__media { min-height: 0; aspect-ratio: 16 / 9; }
	.blog-toolbar { flex-direction: column; flex-wrap: nowrap; align-items: stretch; }
	.blog-toolbar > * { min-width: 0; max-width: 100%; }
	.chip-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
	.chip-row .chip { white-space: nowrap; }
	.search-pill { min-width: 0; }
	.contact-cards { grid-template-columns: 1fr; gap: 10px; }
	.contact-card { display: grid; grid-template-columns: 50px minmax(0, 1fr); column-gap: 16px; align-items: center; padding: 16px 18px; border-radius: var(--radius); }
	.contact-card__icon { grid-row: 1 / span 4; width: 50px; height: 50px; margin: 0; }
	.contact-card strong { font-size: 1.18rem; }
	.contact-card__cta { margin-top: 2px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 36px; }
	.cta-band__card .btn-row { width: 100%; }
	.cta-band__card .btn { flex: 1 1 220px; }
	.article-cta { flex-direction: column; }
	.jump.is-pinned { top: 66px; }
	.admin-bar .jump.is-pinned { top: 66px; }
	.glance dl div { grid-template-columns: 1fr; gap: 2px; }
	.score { flex-wrap: wrap; }

	.dock {
		position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 85;
		display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 6px; padding: 6px;
		border-radius: 20px; background: rgba(10,10,11,.92);
		backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
		box-shadow: 0 14px 34px rgba(0,0,0,.35);
		transition: transform .45s var(--ease);
	}
	.dock.is-hidden { transform: translateY(150%); }
	.dock__btn {
		display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
		min-height: 54px; border-radius: 14px; color: #fff; text-decoration: none;
		font-size: .72rem; font-weight: 700;
	}
	.dock__btn .icon { color: var(--orange); }
	.dock__btn:active { background: rgba(255,255,255,.08); }
	.dock__btn--primary { background: var(--orange); color: var(--ink); }
	.dock__btn--primary .icon { color: var(--ink); }
	.to-top { bottom: 100px; right: 14px; width: 46px; height: 46px; }
}

@media (max-width: 600px) {
	/* Smaller labelled chips on a tighter orbit so the text stays on screen. */
	.orbit li { --r: 118px; }
	@supports (container-type: inline-size) { .orbit li { --r: 33cqw; } }
	.orbit__chip { gap: 5px; padding: 4px 9px 4px 4px; border-radius: 10px; font-size: .66rem; }
	.orbit__chip .icon { width: 22px; height: 22px; min-width: 22px; padding: 4px; border-radius: 7px; }
	.gear--hero { inset: 14%; width: 72%; height: 72%; }
}

@media (max-width: 480px) {
	.btn-row .btn { flex: 1 1 100%; }
	.bento { grid-template-columns: 1fr; }
	.tile:not(.tile--feature):not(.tile--cta) { flex-direction: row; align-items: center; }
	.tile:not(.tile--feature):not(.tile--cta) .tile__foot { margin-top: 0; margin-left: auto; }
	.tile:not(.tile--feature):not(.tile--cta) .price-tag { display: none; }
	.battfx { width: 54px; height: 30px; }
	.acc__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.acc-tile { padding: 16px; }
	.contact-layout__form { padding: 20px; }
	.map-full__pin { bottom: 16px; padding: 14px 16px; }
	.install-card { flex-direction: column; align-items: flex-start; }
	.hero__badges .pill { font-size: .8rem; }
	.fob__tag { right: 10px; top: 10px; }
	.brand-list li { padding: 10px 18px; }
}
