/* ==========================================================================
   Omason Investment — site stylesheet
   Dependency-free. Mobile-first. Tokens → base → layout → components → pages
   ========================================================================== */

:root {
	--navy-950: #051526;
	--navy-900: #0a2440;
	--navy-800: #0f3459;
	--blue-700: #154e85;
	--blue-600: #1a5c9a;
	--blue-500: #2474bd;
	--sky-400: #3fb8dc;
	--orange-500: #ff6701;
	--orange-600: #e65a00;
	--orange-100: #fff0e5;
	--cream: #faf7f1;
	--paper: #fffdf9;
	--ink: #0d1b2a;
	--ink-2: #22354a;
	--muted: #5b6b7c;
	--line: #e9e3d8;
	--line-2: #dcd5c8;
	--board: #183a31;
	--board-2: #0f2a23;
	--wa: #25d366;
	--wa-600: #1ebe5a;

	--c-white: #f1f1ec;
	--c-blue: #4f9fe0;
	--c-green: #22bfae;
	--c-red: #ef476f;
	--c-yellow: #ffc233;
	--c-violet: #8b7fe8;

	--font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
	--font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-chalk: "Caveat", "Segoe Print", cursive;

	--r-sm: 12px;
	--r-md: 18px;
	--r-lg: 26px;
	--r-xl: 36px;
	--shadow-sm: 0 1px 2px rgba(10, 36, 64, .06), 0 2px 8px rgba(10, 36, 64, .05);
	--shadow-md: 0 6px 24px -6px rgba(10, 36, 64, .16), 0 2px 6px rgba(10, 36, 64, .06);
	--shadow-lg: 0 30px 60px -20px rgba(10, 36, 64, .35), 0 10px 20px -10px rgba(10, 36, 64, .15);
	--ease: cubic-bezier(.22, .61, .36, 1);
	--ease-spring: cubic-bezier(.34, 1.56, .64, 1);
	--header-h: 76px;
	--gutter: clamp(16px, 4vw, 40px);
	--max: 1240px;
}

@view-transition { navigation: auto; }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 .5em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6.4vw, 5.25rem); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 750; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); letter-spacing: -.015em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--orange-500); color: #fff; }
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 6px; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.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; left: 16px; top: -60px; z-index: 1000; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(68px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--navy-950); color: #c9d6e4; }
.section--dark h2, .section--dark h3 { color: #fff; }
.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.split { display: grid; gap: clamp(36px, 6vw, 88px); align-items: center; }
@media (min-width: 960px) {
	.split { grid-template-columns: 1.05fr .95fr; }
	.split--flip > :first-child { order: 2; }
}

/* ---------- Type helpers ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font: 600 .78rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
	color: var(--orange-600); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
.section--dark .eyebrow, .on-dark .eyebrow { color: #ffb27d; }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: #a9bccf; }
.chalk-note { font-family: var(--font-chalk); font-size: 1.6rem; line-height: 1.1; color: var(--orange-600); }
.hl { position: relative; white-space: nowrap; color: inherit; }
.hl svg { position: absolute; left: -2%; bottom: -.18em; width: 104%; height: .42em; overflow: visible; }
.hl path { fill: none; stroke: var(--orange-500); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.2s .5s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; max-width: none; }
.section-head--row > div { max-width: 700px; }

/* ---------- Buttons ---------- */
.btn {
	--bg: var(--ink); --fg: #fff;
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 0 26px; border: 0; border-radius: 999px;
	background: var(--bg); color: var(--fg);
	font: 600 1rem/1 var(--font-body); letter-spacing: -.005em; white-space: nowrap;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
	isolation: isolate; overflow: hidden;
}
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn .icon { transition: transform .25s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn--primary { --bg: var(--orange-500); box-shadow: 0 10px 24px -10px rgba(255, 103, 1, .7); }
.btn--primary:hover { --bg: var(--orange-600); box-shadow: 0 16px 30px -12px rgba(255, 103, 1, .75); }
.btn--dark { --bg: var(--navy-900); }
.btn--wa { --bg: var(--wa); --fg: #06301a; box-shadow: 0 10px 24px -12px rgba(37, 211, 102, .8); }
.btn--wa:hover { --bg: var(--wa-600); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost-light { --bg: rgba(255,255,255,.06); --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { box-shadow: inset 0 0 0 1.5px #fff; }
.btn--light { --bg: #fff; --fg: var(--navy-900); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--blue-600); }
.link-arrow .icon { transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
	transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .4s var(--ease);
}
.site-header.is-scrolled, .site-header.is-solid {
	background: rgba(255, 253, 249, .82);
	backdrop-filter: saturate(1.6) blur(16px); -webkit-backdrop-filter: saturate(1.6) blur(16px);
	box-shadow: 0 1px 0 rgba(10, 36, 64, .08);
}
.site-header.is-hidden { transform: translateY(-100%); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { height: 50px; width: auto; }
.brand .logo-light { display: none; }
.site-header.on-dark:not(.is-scrolled) .brand .logo-dark { display: none; }
.site-header.on-dark:not(.is-scrolled) .brand .logo-light { display: block; }
.nav-links { display: none; align-items: center; gap: 4px; padding: 6px; border-radius: 999px; }
.nav-links a {
	position: relative; padding: 10px 16px; border-radius: 999px;
	font-weight: 550; font-size: .96rem; color: var(--ink-2); transition: color .2s, background .2s;
}
.nav-links a:hover { background: rgba(10, 36, 64, .06); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); background: rgba(10, 36, 64, .07); }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange-500); transform: translateX(-50%); }
.site-header.on-dark:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.site-header.on-dark:not(.is-scrolled) .nav-links a:hover,
.site-header.on-dark:not(.is-scrolled) .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta { display: none; }
.nav-toggle {
	display: inline-grid; place-items: center; width: 48px; height: 48px; border: 0; border-radius: 14px;
	background: rgba(10, 36, 64, .06); color: var(--ink);
}
.site-header.on-dark:not(.is-scrolled) .nav-toggle { background: rgba(255,255,255,.12); color: #fff; }
.nav-toggle .icon { width: 24px; height: 24px; }
@media (min-width: 1024px) {
	.nav-links { display: flex; }
	.nav-cta { display: inline-flex; }
	.nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
	position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
	padding: 18px var(--gutter) max(24px, env(safe-area-inset-bottom));
	background: var(--navy-950); color: #fff;
	clip-path: circle(0 at calc(100% - 44px) 38px); visibility: hidden;
	transition: clip-path .6s var(--ease), visibility 0s .6s;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 38px); visibility: visible; transition: clip-path .7s var(--ease); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; height: calc(var(--header-h) - 18px); }
.mobile-menu__top img { height: 40px; width: auto; }
.mobile-menu__close { width: 48px; height: 48px; display: grid; place-items: center; border: 0; border-radius: 14px; background: rgba(255,255,255,.1); color: #fff; }
.mobile-menu nav { margin-top: 5vh; display: grid; gap: 2px; }
.mobile-menu nav a {
	display: flex; align-items: center; justify-content: space-between;
	padding: 12px 0; font: 700 clamp(2rem, 9vw, 2.8rem)/1.1 var(--font-display); letter-spacing: -.03em;
	border-bottom: 1px solid rgba(255,255,255,.08);
	opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
}
.mobile-menu nav a span { font: 500 .8rem var(--font-body); color: rgba(255,255,255,.4); letter-spacing: .1em; }
.mobile-menu nav a[aria-current="page"] { color: var(--orange-500); }
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-menu.is-open nav a:nth-child(1) { transition-delay: .12s; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: .17s; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: .27s; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open nav a:nth-child(6) { transition-delay: .37s; }
.mobile-menu__foot { margin-top: auto; display: grid; gap: 10px; padding-top: 24px; }
.mobile-menu__foot small { color: rgba(255,255,255,.5); text-align: center; margin-top: 6px; }
body.menu-open { overflow: hidden; }

/* ---------- Hero (home) ---------- */
.hero {
	position: relative; overflow: hidden; color: #cfdbe8;
	background:
		radial-gradient(900px 500px at 85% 10%, rgba(63, 184, 220, .22), transparent 60%),
		radial-gradient(700px 500px at 10% 100%, rgba(255, 103, 1, .16), transparent 60%),
		linear-gradient(180deg, var(--navy-950), var(--navy-900));
	padding: calc(var(--header-h) + clamp(36px, 7vw, 90px)) 0 clamp(64px, 8vw, 110px);
}
.hero::before { /* chalk grain */
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero__grid { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.02fr .98fr; } }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #ffd0ad, var(--orange-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: #a9bccf; margin-bottom: 34px; }
.hero__badge {
	display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; margin-bottom: 26px;
	border-radius: 999px; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
	font-size: .88rem; color: #dfe8f1;
}
.hero__badge b { padding: 4px 10px; border-radius: 999px; background: var(--orange-500); color: #fff; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; font-size: .92rem; color: #a9bccf; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .icon { color: var(--c-green); }

.hero__visual { position: relative; min-height: 420px; }
.bento { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr 1fr; gap: 14px; height: clamp(420px, 52vw, 580px); }
.bento figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg); background: #11304f; box-shadow: var(--shadow-lg); }
.bento figure:first-child { grid-row: span 2; }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bento figure:hover img { transform: scale(1.06); }
.bento figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(5, 21, 38, .6); backdrop-filter: blur(8px); color: #fff; font-size: .8rem; font-weight: 600; }
.float-card {
	position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px;
	padding: 12px 16px 12px 12px; border-radius: 18px; background: rgba(255,255,255,.96); color: var(--ink);
	box-shadow: var(--shadow-lg); font-size: .88rem; line-height: 1.25;
	animation: bob 6s ease-in-out infinite;
}
.float-card b { display: block; font: 700 1.05rem/1.1 var(--font-display); }
.float-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-100); color: var(--orange-600); }
.float-card--a { left: -18px; top: 18%; }
.float-card--b { right: -10px; bottom: 9%; animation-delay: -3s; }
.float-card--b .ic { background: #e3f7f4; color: #0d8f81; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 560px) {
	.bento { height: 400px; gap: 10px; }
	.float-card { font-size: .8rem; padding: 10px 12px 10px 10px; }
	.float-card--a { left: 8px; top: auto; bottom: -22px; }
	.float-card--b { right: 8px; bottom: auto; top: -18px; }
}
.chalk-dust { position: absolute; inset: 0; pointer-events: none; }

/* Marquee */
.marquee { position: relative; overflow: hidden; background: var(--orange-500); color: #fff; padding: 16px 0; transform: rotate(-1.2deg) scale(1.02); margin: -14px 0 0; z-index: 3; }
.marquee__track { display: flex; width: max-content; gap: 44px; animation: marquee 34s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 44px; font: 700 clamp(1.05rem, 2vw, 1.35rem)/1 var(--font-display); letter-spacing: -.01em; white-space: nowrap; }
.marquee span::after { content: "✦"; font-size: .8em; opacity: .7; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; padding: clamp(22px, 3vw, 34px); }
.stat b { display: block; font: 800 clamp(2rem, 4vw, 3rem)/1 var(--font-display); letter-spacing: -.04em; color: var(--navy-900); }
.stat b small { font-size: .5em; color: var(--orange-500); margin-left: 2px; }
.stat > span { display: block; margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* ---------- Cards ---------- */
.card {
	position: relative; padding: clamp(24px, 3vw, 34px); border-radius: var(--r-lg);
	background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card p { color: var(--muted); margin: 0; }
.card__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 22px; background: var(--orange-100); color: var(--orange-600); transition: transform .4s var(--ease-spring); }
.card__icon .icon { width: 26px; height: 26px; }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card--blue .card__icon { background: #e6f1fb; color: var(--blue-600); }
.card--green .card__icon { background: #e3f7f4; color: #0d8f81; }
.card--violet .card__icon { background: #efedfd; color: #5b4fd1; }
.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.card--dark p { color: #a9bccf; }
.card--dark .card__icon { background: rgba(255, 103, 1, .14); color: #ffa468; }
.card__num { position: absolute; top: 22px; right: 26px; font: 800 3rem/1 var(--font-display); color: rgba(10, 36, 64, .06); }

/* Product tiles */
.tile {
	position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-xl);
	background: #fff; border: 1px solid var(--line); min-height: 100%;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tile__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.07); }
.tile__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile__body p { color: var(--muted); margin: 0; }
.tile__body .link-arrow { margin-top: auto; padding-top: 8px; }
.tag { display: inline-flex; align-self: flex-start; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--orange-100); color: var(--orange-600); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.tag--blue { background: #e6f1fb; color: var(--blue-600); }
.tag--green { background: #e3f7f4; color: #0d8f81; }

/* ---------- Colour explorer ---------- */
.explorer { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) { .explorer { grid-template-columns: .9fr 1.1fr; } }
.explorer__stage { position: relative; aspect-ratio: 4 / 4.2; border-radius: var(--r-xl); overflow: hidden; background: var(--board); box-shadow: var(--shadow-lg); }
.explorer__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity .7s var(--ease), transform 1.2s var(--ease); }
.explorer__stage img.is-active { opacity: 1; transform: scale(1); }
.explorer__label { position: absolute; left: 18px; bottom: 18px; z-index: 2; padding: 10px 16px; border-radius: 14px; background: rgba(5, 21, 38, .66); backdrop-filter: blur(10px); color: #fff; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.explorer__label i { width: 14px; height: 14px; border-radius: 50%; background: var(--sw, #fff); box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.swatches { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.swatch {
	--sw: #fff; position: relative; display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 16px 8px 8px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff;
	font-weight: 600; font-size: .95rem; transition: border-color .2s, transform .25s var(--ease), box-shadow .25s;
}
.swatch::before { content: ""; width: 30px; height: 30px; border-radius: 50%; background: var(--sw); box-shadow: inset 0 -4px 0 rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.08); transition: transform .3s var(--ease-spring); }
.swatch:hover { transform: translateY(-2px); }
.swatch:hover::before { transform: scale(1.12) rotate(-12deg); }
.swatch[aria-selected="true"] { border-color: var(--ink); box-shadow: 0 8px 18px -10px rgba(10,36,64,.5); }
.explorer__desc { min-height: 3.4em; color: var(--muted); }

/* ---------- Chalkboard band ---------- */
.board {
	position: relative; overflow: hidden; color: #eaf1ec; text-align: center;
	background: radial-gradient(1200px 400px at 50% -10%, rgba(255,255,255,.08), transparent 70%), linear-gradient(180deg, var(--board), var(--board-2));
	border-top: 14px solid #6b4a2b; border-bottom: 14px solid #6b4a2b;
}
.board::before { content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none; mix-blend-mode: screen;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.board blockquote { position: relative; margin: 0 auto; max-width: 980px; font: 700 clamp(2rem, 5vw, 3.8rem)/1.12 var(--font-chalk); letter-spacing: .005em; }
.board blockquote span { color: var(--c-yellow); }
.board cite { display: block; margin-top: 22px; font: 500 .95rem var(--font-body); font-style: normal; color: rgba(234, 241, 236, .65); }
.board .chalk-stick { position: absolute; right: 8%; bottom: 18px; width: 110px; height: 16px; border-radius: 3px; background: linear-gradient(180deg, #fff, #dcdcd4); transform: rotate(-8deg); box-shadow: 0 6px 10px rgba(0,0,0,.3); }
.board .chalk-stick--b { right: 15%; bottom: 22px; width: 70px; background: linear-gradient(180deg, var(--c-yellow), #d99c00); transform: rotate(4deg); }

/* ---------- Process ---------- */
.process { counter-reset: step; display: grid; gap: 18px; }
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.step__media { aspect-ratio: 5 / 4; overflow: hidden; }
.step__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.step:hover .step__media img { transform: scale(1.06); }
.step__body { padding: 22px 22px 26px; }
.step__body p { color: var(--muted); margin: 0; font-size: .98rem; }
.step__body::before { counter-increment: step; content: "0" counter(step); display: inline-block; margin-bottom: 10px; font: 800 .82rem/1 var(--font-body); letter-spacing: .12em; color: var(--orange-600); }

/* ---------- Feature list / checks ---------- */
.checks { display: grid; gap: 14px; margin: 26px 0 32px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; }
.checks .ic { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #e3f7f4; color: #0d8f81; margin-top: 1px; }
.checks .ic .icon { width: 16px; height: 16px; stroke-width: 3; }
.checks b { display: block; color: var(--ink); }
.checks span { color: var(--muted); font-size: .97rem; }

/* Media frames */
.frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 11; }
.media-stack { position: relative; padding: 0 0 12% 12%; }
.media-stack .frame--sm { position: absolute; left: 0; bottom: 0; width: 46%; aspect-ratio: 1; border: 6px solid var(--paper); border-radius: var(--r-lg); }
.section--cream .media-stack .frame--sm { border-color: var(--cream); }
.sticker {
	position: absolute; right: -8px; top: 24px; z-index: 2; width: 128px; height: 128px; border-radius: 50%;
	display: grid; place-items: center; text-align: center; background: var(--orange-500); color: #fff;
	font: 800 1rem/1.05 var(--font-display); box-shadow: var(--shadow-lg); transform: rotate(10deg);
}
.sticker small { display: block; font: 600 .7rem var(--font-body); letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.sticker::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.6); animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Spec table ---------- */
.specs { width: 100%; border-collapse: collapse; margin: 22px 0 30px; font-size: .98rem; }
.specs th, .specs td { padding: 14px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.specs th { width: 42%; font-weight: 600; color: var(--muted); }
.specs td { font-weight: 600; color: var(--ink); }
.dots { display: inline-flex; gap: 6px; vertical-align: middle; margin-left: 6px; }
.dots i { width: 14px; height: 14px; border-radius: 50%; background: var(--d); box-shadow: 0 0 0 1px rgba(0,0,0,.12); }

/* Packaging diagram */
.pack { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 10px; }
.pack__item { text-align: center; padding: 22px 12px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); position: relative; }
.pack__item b { display: block; font: 800 clamp(1.5rem, 3vw, 2.2rem)/1 var(--font-display); color: var(--navy-900); letter-spacing: -.03em; }
.pack__item span { display: block; margin-top: 6px; font-size: .85rem; color: var(--muted); }
.pack__item:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); z-index: 1; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-500); color: #fff; font-size: .75rem; font-weight: 700; }

/* ---------- Order builder ---------- */
.builder { display: grid; gap: 24px; align-items: start; }
@media (min-width: 960px) { .builder { grid-template-columns: 1.25fr .75fr; } }
.builder__rows { display: grid; gap: 10px; }
.brow { display: flex; align-items: center; gap: 14px; padding: 12px 12px 12px 16px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); transition: border-color .2s, box-shadow .2s; }
.brow.has-qty { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.brow__sw { width: 34px; height: 34px; border-radius: 10px; background: var(--sw); box-shadow: inset 0 -5px 0 rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.08); flex: none; }
.brow__name { flex: 1; min-width: 0; }
.brow__name b { display: block; line-height: 1.2; }
.brow__name small { color: var(--muted); }
.stepper { display: inline-flex; align-items: center; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); }
.stepper button { width: 40px; height: 40px; border: 0; border-radius: 50%; background: transparent; display: grid; place-items: center; transition: background .2s; }
.stepper button:hover { background: #fff; }
.stepper input { width: 52px; border: 0; background: transparent; text-align: center; font-weight: 700; -moz-appearance: textfield; appearance: textfield; }
.stepper input::-webkit-inner-spin-button, .stepper input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.unit-toggle { display: inline-flex; padding: 4px; border-radius: 999px; background: #fff; border: 1px solid var(--line); margin-bottom: 14px; }
.unit-toggle button { border: 0; background: transparent; padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--muted); transition: background .2s, color .2s; }
.unit-toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.summary { position: sticky; top: calc(var(--header-h) + 20px); padding: 28px; border-radius: var(--r-lg); background: var(--navy-950); color: #c9d6e4; box-shadow: var(--shadow-lg); }
.summary h3 { color: #fff; }
.summary dl { display: grid; grid-template-columns: 1fr auto; gap: 12px 16px; margin: 18px 0 22px; }
.summary dt { color: #93a8bd; }
.summary dd { margin: 0; text-align: right; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.summary .total { padding-top: 14px; border-top: 1px dashed rgba(255,255,255,.18); }
.summary .total dd { font: 800 1.6rem/1 var(--font-display); color: var(--orange-500); }
.summary .note { font-size: .85rem; color: #93a8bd; margin: 12px 0 0; }
.summary .btn { width: 100%; }
.summary .btn + .btn { margin-top: 10px; }
.summary .empty { font-size: .92rem; color: #93a8bd; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filters button { border: 1.5px solid var(--line-2); background: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .94rem; transition: all .25s var(--ease); }
.filters button:hover { border-color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters button sup { font-size: .7em; opacity: .6; margin-left: 3px; }
.masonry { columns: 2 180px; column-gap: 14px; }
@media (min-width: 900px) { .masonry { columns: 3; column-gap: 18px; } }
@media (min-width: 1200px) { .masonry { columns: 4; } }
.g-item { break-inside: avoid; margin: 0 0 14px; position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--cream); cursor: zoom-in; transition: opacity .4s var(--ease), transform .4s var(--ease); }
@media (min-width: 900px) { .g-item { margin-bottom: 18px; } }
.g-item.is-hidden { display: none; }
.g-item button { all: unset; display: block; width: 100%; cursor: zoom-in; }
.g-item button:focus-visible { outline: 3px solid var(--orange-500); outline-offset: -3px; }
.g-item img { width: 100%; transition: transform .9s var(--ease), filter .4s; }
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption { position: absolute; inset: auto 0 0; padding: 30px 14px 12px; color: #fff; font-size: .88rem; font-weight: 600; background: linear-gradient(transparent, rgba(5,21,38,.75)); opacity: 0; transform: translateY(8px); transition: all .35s var(--ease); pointer-events: none; }
.g-item:hover figcaption, .g-item:focus-within figcaption { opacity: 1; transform: none; }
@media (hover: none) { .g-item figcaption { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; background: rgba(3, 12, 22, .92); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility 0s .35s; }
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .35s; }
.lightbox figure { margin: 0; max-width: min(92vw, 1100px); max-height: 86vh; display: grid; gap: 12px; justify-items: center; }
.lightbox img { max-width: 100%; max-height: 78vh; width: auto; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: scale(.96); transition: transform .4s var(--ease); }
.lightbox.is-open img { transform: none; }
.lightbox figcaption { color: #dbe5ef; font-size: .95rem; text-align: center; }
.lightbox figcaption small { display: block; color: #7f93a8; margin-top: 2px; }
.lb-btn { position: absolute; width: 52px; height: 52px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: background .2s, transform .2s; }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-btn .icon { width: 24px; height: 24px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 18px; transform: none; } .lb-prev { left: calc(50% - 64px); } .lb-next { right: calc(50% - 64px); } }

/* ---------- Page hero ---------- */
.page-hero {
	position: relative; overflow: hidden; color: #cfdbe8;
	padding: calc(var(--header-h) + clamp(48px, 8vw, 100px)) 0 clamp(56px, 8vw, 100px);
	background:
		radial-gradient(800px 400px at 90% 0%, rgba(63, 184, 220, .2), transparent 60%),
		radial-gradient(600px 400px at 0% 100%, rgba(255, 103, 1, .14), transparent 60%),
		linear-gradient(180deg, var(--navy-950), var(--navy-900));
}
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--c-white), var(--c-blue), var(--c-green), var(--c-yellow), var(--orange-500), var(--c-red)); }
.page-hero__grid { position: relative; display: grid; gap: 36px; align-items: end; }
@media (min-width: 960px) { .page-hero__grid { grid-template-columns: 1.3fr .7fr; } }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.6rem); margin-bottom: 20px; }
.page-hero .lead { color: #a9bccf; margin: 0; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: #7f93a8; margin-bottom: 22px; }
.crumbs a:hover { color: #fff; }
.page-hero__aside { display: grid; gap: 10px; }
.page-hero__aside a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #e2eaf2; font-weight: 600; transition: background .2s, transform .25s var(--ease); }
.page-hero__aside a:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.page-hero__aside .icon { color: var(--orange-500); }
.page-hero__aside a span { margin-left: auto; opacity: .5; }

/* ---------- Timeline / values ---------- */
.mv { display: grid; gap: 18px; }
@media (min-width: 760px) { .mv { grid-template-columns: 1fr 1fr; } }
.mv__card { padding: clamp(28px, 4vw, 44px); border-radius: var(--r-xl); position: relative; overflow: hidden; }
.mv__card h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.mv__card p { font-size: 1.15rem; margin: 0; }
.mv__card--mission { background: var(--navy-900); color: #c9d6e4; }
.mv__card--mission h3 { color: #fff; }
.mv__card--vision { background: var(--orange-500); color: #fff3ea; }
.mv__card--vision h3 { color: #fff; }
.mv__card .chalk-note { position: absolute; right: 24px; top: 20px; color: rgba(255,255,255,.35); font-size: 1.4rem; transform: rotate(-4deg); }

.timeline { position: relative; display: grid; gap: 28px; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--orange-500), var(--sky-400)); border-radius: 2px; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -34px; top: 5px; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); border: 4px solid var(--orange-500); }
.timeline time { font: 700 .82rem var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--orange-600); }
.timeline h3 { margin: 4px 0 6px; }
.timeline p { color: var(--muted); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 24px; align-items: start; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.ccards { display: grid; gap: 12px; }
.ccard { display: flex; gap: 16px; align-items: center; padding: 18px 20px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
a.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.ccard .ic { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--orange-100); color: var(--orange-600); }
.ccard .ic--wa { background: #dcf8e7; color: #10924a; }
.ccard .ic--blue { background: #e6f1fb; color: var(--blue-600); }
.ccard small { display: block; color: var(--muted); font-size: .85rem; }
.ccard b { display: block; font-size: 1.05rem; line-height: 1.3; word-break: break-word; }
.ccard .go { margin-left: auto; color: var(--muted); }

.form { padding: clamp(24px, 4vw, 44px); border-radius: var(--r-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.form__grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } .form__grid .full { grid-column: 1 / -1; } }
.field { position: relative; }
.field input, .field select, .field textarea {
	width: 100%; padding: 26px 16px 10px; border: 1.5px solid var(--line-2); border-radius: 14px; background: var(--paper);
	font-size: 1rem; transition: border-color .2s, box-shadow .2s, background .2s; appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%235b6b7c' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.field label { position: absolute; left: 17px; top: 18px; color: var(--muted); pointer-events: none; transition: all .2s var(--ease); transform-origin: left top; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(36, 116, 189, .14); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select + label { top: 8px; transform: scale(.78); font-weight: 600; color: var(--blue-600); }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: var(--c-red); }
.field .err { display: none; margin-top: 6px; font-size: .85rem; color: #c81e4a; }
.field.is-invalid .err { display: block; }
.hp { position: absolute; left: -9999px; }
.form__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 22px; }
.form__foot p { margin: 0; font-size: .88rem; color: var(--muted); flex-basis: 100%; }
.map { margin-top: clamp(40px, 6vw, 72px); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); aspect-ratio: 16 / 7; min-height: 320px; background: var(--cream); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details { border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); transition: box-shadow .3s, border-color .3s; }
.faq details[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; cursor: pointer; font: 650 1.08rem/1.35 var(--font-display); letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); transition: transform .35s var(--ease), background .3s, color .3s; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--orange-500); color: #fff; }
.faq .ans { padding: 0 22px 22px; color: var(--muted); }
.faq .ans p:last-child { margin: 0; }

/* ---------- CTA ---------- */
.cta {
	position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 80px);
	background: radial-gradient(600px 300px at 100% 0%, rgba(255,255,255,.18), transparent 60%), linear-gradient(135deg, var(--orange-500), #ff8a3d 60%, #ffb067);
	color: #fff; display: grid; gap: 28px; align-items: center;
}
@media (min-width: 960px) { .cta { grid-template-columns: 1.4fr auto; } }
.cta h2 { color: #fff; margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta p { margin: 0; color: #fff4ec; font-size: 1.1rem; max-width: 56ch; }
.cta .btn-row { justify-content: flex-start; }
.cta__deco { position: absolute; right: -60px; bottom: -80px; width: 320px; opacity: .14; transform: rotate(-18deg); pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #93a8bd; padding: clamp(64px, 8vw, 100px) 0 28px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--orange-500), var(--sky-400), var(--blue-600)); }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 36ch; }
.site-footer h4 { color: #fff; font: 700 .82rem var(--font-body); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: #fff; }
.f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.f-contact .icon { margin-top: 4px; color: var(--orange-500); width: 1.05em; height: 1.05em; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #fff; transition: background .25s, transform .25s var(--ease); }
.socials a:hover { background: var(--orange-500); transform: translateY(-3px); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .88rem; }
.footer-word { font: 800 clamp(4rem, 17vw, 14rem)/.8 var(--font-display); letter-spacing: -.06em; color: rgba(255,255,255,.035); margin: 40px 0 -10px; user-select: none; white-space: nowrap; }

/* ---------- Floating actions ---------- */
.fab-wa {
	position: fixed; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 90;
	display: flex; align-items: center; gap: 10px; height: 58px; padding: 0 20px 0 16px; border-radius: 999px;
	background: var(--wa); color: #06301a; font-weight: 700; box-shadow: 0 14px 30px -10px rgba(18, 140, 70, .7);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.fab-wa .icon { width: 28px; height: 28px; }
.fab-wa:hover { transform: translateY(-3px) scale(1.02); }
.fab-wa::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: ping 2.4s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (max-width: 640px) { .fab-wa span { display: none; } .fab-wa { width: 58px; padding: 0; justify-content: center; } }
.to-top { position: fixed; right: 22px; bottom: 92px; z-index: 89; width: 50px; height: 50px; border: 0; border-radius: 50%; background: #fff; color: var(--ink); box-shadow: var(--shadow-md); display: grid; place-items: center; opacity: 0; transform: translateY(12px); pointer-events: none; transition: all .35s var(--ease); }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top .ring circle { fill: none; stroke: var(--orange-500); stroke-width: 3; stroke-dasharray: 145; stroke-dashoffset: var(--p, 145); }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 150; transform-origin: 0 50%; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, var(--orange-500), var(--sky-400)); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-img { clip-path: inset(12% 12% 12% 12% round 26px); transition: clip-path 1.2s var(--ease); }
.js .reveal-img.is-in { clip-path: inset(0 0 0 0 round 0); }

/* ---------- Misc pages ---------- */
.center-page { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) var(--gutter) 60px; background: radial-gradient(700px 400px at 50% 0%, rgba(63, 184, 220, .15), transparent 60%), var(--paper); }
.center-page .big { font: 800 clamp(6rem, 22vw, 14rem)/.9 var(--font-display); letter-spacing: -.06em; background: linear-gradient(90deg, var(--c-blue), var(--c-green), var(--c-yellow), var(--orange-500), var(--c-red)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.center-page .lead { margin: 0 auto 32px; }
.center-page .btn-row { justify-content: center; }
.success-mark { width: 96px; height: 96px; margin: 0 auto 28px; border-radius: 50%; display: grid; place-items: center; background: #dcf8e7; color: #10924a; animation: pop .6s var(--ease-spring); }
.success-mark .icon { width: 48px; height: 48px; stroke-width: 3; }
@keyframes pop { from { transform: scale(.3); opacity: 0; } }

.dealer-perks { display: grid; gap: 14px; }
@media (min-width: 700px) { .dealer-perks { grid-template-columns: 1fr 1fr; } }
.logo-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .94rem; }
.pill .icon { color: var(--orange-500); }
.section--dark .pill { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #e2eaf2; }

@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 .reveal, .js .reveal-img { opacity: 1; transform: none; clip-path: none; }
	.marquee__track { animation: none; }
}
@media print {
	.site-header, .fab-wa, .to-top, .progress, .marquee, .mobile-menu { display: none !important; }
	.hero, .page-hero, .section--dark, .site-footer { background: #fff !important; color: #000 !important; }
}
.btn.is-disabled { opacity: .72; }
.summary .btn--ghost-light { margin-top: 10px; }
main { overflow-x: clip; }

.bento figure.contain { background: #fff; }
.bento figure.contain img { object-fit: contain; padding: 8%; }

/* Mobile swipe rows */
@media (max-width: 719px) {
	.snap-mobile { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 18px; scrollbar-width: none; }
	.snap-mobile::-webkit-scrollbar { display: none; }
	.snap-mobile > * { flex: 0 0 82%; scroll-snap-align: center; }
	.snap-hint { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); margin: -4px 0 0; }
}
@media (min-width: 720px) { .snap-hint { display: none; } }
