/* =========================================================================
   BrandBowl — main stylesheet
   Dark canvas, electric yellow (#faf018), motion-first.
   No frameworks, no JS libraries.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS
   ---------------------------------------------------------------------- */

:root {
	/* Brand */
	--yellow: #faf018;
	--yellow-deep: #e0d612;
	--yellow-soft: rgba(250, 240, 24, 0.14);

	/* Canvas */
	--ink: #0a0a0b;
	--ink-2: #0e0e10;
	--ink-3: #141417;
	--ink-4: #1b1b1f;
	--black: #050506;

	/* Type */
	--white: #ffffff;
	--fg: rgba(255, 255, 255, 0.92);
	--muted: rgba(255, 255, 255, 0.58);
	--faint: rgba(255, 255, 255, 0.38);

	/* Lines */
	--line: rgba(255, 255, 255, 0.10);
	--line-2: rgba(255, 255, 255, 0.16);

	/* Fonts */
	--f-display: "Space Grotesk", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Layout */
	--wrap: 1320px;
	--gutter: clamp(1.25rem, 4vw, 3.5rem);
	--nav-h: 76px;

	/* Motion */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-io: cubic-bezier(0.65, 0, 0.35, 1);
	--dur: 0.6s;

	/* Radius */
	--r-sm: 10px;
	--r: 16px;
	--r-lg: 24px;
	--r-full: 999px;
}

/* -------------------------------------------------------------------------
   2. RESET
   ---------------------------------------------------------------------- */

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

* { margin: 0; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: calc(var(--nav-h) + 16px);
	scrollbar-color: var(--yellow) var(--ink-3);
}

body {
	background: var(--ink);
	color: var(--fg);
	font-family: var(--f-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

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

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
	font-family: var(--f-display);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

::selection { background: var(--yellow); color: #000; }

:focus-visible {
	outline: 2px solid var(--yellow);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Native scrollbar (WebKit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-3); }
::-webkit-scrollbar-thumb { background: #33333a; border-radius: 99px; border: 2px solid var(--ink-3); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

.skip-link {
	position: fixed;
	top: 10px; left: 10px;
	z-index: 999;
	padding: 10px 18px;
	background: var(--yellow);
	color: #000;
	font-weight: 600;
	border-radius: var(--r-sm);
	transform: translateY(-200%);
	transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* -------------------------------------------------------------------------
   3. UTILITIES
   ---------------------------------------------------------------------- */

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

.section {
	position: relative;
	padding-block: clamp(5rem, 11vw, 9.5rem);
}
.section--work,
.section--why { background: var(--ink-2); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--f-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 1.4rem;
}
.eyebrow .dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--yellow);
	box-shadow: 0 0 0 0 var(--yellow-soft);
	animation: dotPulse 2.4s var(--ease-io) infinite;
	flex: none;
}
@keyframes dotPulse {
	0%   { box-shadow: 0 0 0 0 rgba(250, 240, 24, 0.45); }
	70%  { box-shadow: 0 0 0 11px rgba(250, 240, 24, 0); }
	100% { box-shadow: 0 0 0 0 rgba(250, 240, 24, 0); }
}

.hl {
	color: var(--yellow);
	position: relative;
	display: inline-block;
}

/* --- Buttons ----------------------------------------------------------- */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.6rem;
	font-family: var(--f-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: var(--r-full);
	border: 1px solid transparent;
	overflow: hidden;
	isolation: isolate;
	white-space: nowrap;
	transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
	transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
	will-change: transform;
}
.btn > span { position: relative; z-index: 2; }
.btn .ico { position: relative; z-index: 2; width: 19px; height: 19px; flex: none; }

.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--yellow);
	transform: translateY(101%);
	transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }

.btn--yellow {
	background: var(--yellow);
	color: #000;
	box-shadow: 0 6px 30px -10px rgba(250, 240, 24, 0.55);
}
.btn--yellow::before { background: var(--white); }
.btn--yellow:hover { box-shadow: 0 14px 44px -12px rgba(250, 240, 24, 0.75); }

.btn--ghost {
	color: var(--white);
	border-color: var(--line-2);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(6px);
}
.btn--ghost:hover { color: #000; border-color: var(--yellow); }

.btn--lg { padding: 1.15rem 2rem; font-size: 1.03rem; }
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.86rem; }
.btn--block { width: 100%; }

.ico { width: 20px; height: 20px; flex: none; }
.ico--arrow { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
a:hover > .ico--arrow { transform: translate(3px, -3px); }

/* --- Split ring (the "O" from the wordmark) ---------------------------- */

.bb-ring {
	width: 100%;
	height: 100%;
	overflow: visible;
	color: inherit;
}
.bb-ring circle { transform-origin: 50% 50%; }

/* Large decorative rings: keep the stroke a constant pixel weight instead of
   scaling with the shape, so a 900px ring is still a hairline. */
.bb-ring--px circle { vector-effect: non-scaling-stroke; }

/* --- Scroll reveal ----------------------------------------------------- */

[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 26px, 0);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
	transition-delay: var(--rd, 0ms);
}
[data-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* Line-mask reveal (headlines).
   The padding/negative-margin pair adds clip room below the baseline so
   descenders (g, y, p) are not sliced off; the negative margin cancels it so
   layout is unchanged. The slide distance must exceed the padded box height,
   hence 135% rather than 100%. */
.line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.26em;
	margin-bottom: -0.26em;
}
.line__in {
	display: block;
	transform: translate3d(0, 135%, 0);
	transition: transform 1s var(--ease);
	transition-delay: var(--rd, 0ms);
}
.line.is-in .line__in,
.is-in > .line .line__in { transform: none; }

/* A masked line handles its own reveal — skip the generic fade/slide so the
   mask does not drift. */
.line[data-reveal] { opacity: 1; transform: none; }

/* No-JS safety: if the observer never runs, show everything. */
.no-js [data-reveal] { opacity: 1; transform: none; }
.no-js .line__in { transform: none; }
.no-js .preloader { display: none; }
.no-js .dock, .no-js .fab { transform: none; }

/* -------------------------------------------------------------------------
   4. PRELOADER
   ---------------------------------------------------------------------- */

.preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: var(--black);
	transition: transform 0.9s var(--ease), opacity 0.5s ease 0.4s;
}
.preloader.is-done {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}
.preloader__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.preloader__ring {
	width: 46px; height: 46px;
	color: var(--yellow);
	animation: ringSpin 1.4s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.preloader__word {
	font-family: var(--f-display);
	font-size: clamp(1.3rem, 5vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--white);
	overflow: hidden;
	animation: preWord 1.1s var(--ease) both;
}
@keyframes preWord {
	from { opacity: 0; letter-spacing: 0.34em; }
	to   { opacity: 1; letter-spacing: 0.1em; }
}

.preloader__bar {
	position: absolute;
	left: 50%; bottom: 16%;
	transform: translateX(-50%);
	width: min(240px, 55vw);
	height: 2px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
	border-radius: 2px;
}
.preloader__bar i {
	display: block;
	height: 100%;
	width: 0;
	background: var(--yellow);
	transition: width 0.4s var(--ease-io);
}

/* -------------------------------------------------------------------------
   5. CUSTOM CURSOR
   ---------------------------------------------------------------------- */

.cursor { display: none; }

@media (hover: hover) and (pointer: fine) {
	.cursor {
		display: block;
		position: fixed;
		top: 0; left: 0;
		z-index: 9998;
		pointer-events: none;
		mix-blend-mode: difference;
	}
	.cursor__dot,
	.cursor__ring {
		position: absolute;
		top: 0; left: 0;
		border-radius: 50%;
		transform: translate(-50%, -50%);
	}
	.cursor__dot {
		width: 6px; height: 6px;
		background: var(--yellow);
	}
	.cursor__ring {
		width: 34px; height: 34px;
		border: 1px solid rgba(255, 255, 255, 0.55);
		transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
	}
	.cursor.is-hot .cursor__ring {
		width: 62px; height: 62px;
		background: rgba(250, 240, 24, 0.16);
		border-color: var(--yellow);
	}
	.cursor.is-hot .cursor__dot { opacity: 0; }
	.cursor { transition: opacity 0.25s ease; }
	.cursor.is-hidden { opacity: 0; }
}

/* -------------------------------------------------------------------------
   6. GRAIN + SCROLL PROGRESS
   ---------------------------------------------------------------------- */

.grain {
	position: fixed;
	inset: -50%;
	z-index: 9990;
	pointer-events: none;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: grainShift 0.8s steps(4) infinite;
}
@keyframes grainShift {
	0%   { transform: translate(0, 0); }
	25%  { transform: translate(-3%, 2%); }
	50%  { transform: translate(2%, -3%); }
	75%  { transform: translate(-2%, -2%); }
	100% { transform: translate(0, 0); }
}

.scrollbar {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 2px;
	z-index: 900;
	pointer-events: none;
}
.scrollbar i {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--yellow);
	box-shadow: 0 0 14px rgba(250, 240, 24, 0.7);
}

/* -------------------------------------------------------------------------
   7. NAV
   ---------------------------------------------------------------------- */

.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 800;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	transition: transform 0.45s var(--ease), background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
	border-bottom: 1px solid transparent;
}
.nav.is-stuck {
	background: rgba(10, 10, 11, 0.72);
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-102%); }

.nav__inner {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.nav__logo img {
	height: 22px;
	width: auto;
	filter: brightness(0) invert(1);
	transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav__logo:hover img {
	filter: brightness(0) saturate(100%) invert(88%) sepia(72%) saturate(2000%) hue-rotate(2deg) brightness(105%) contrast(97%);
	transform: scale(1.03);
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-left: auto;
}
.nav__links a {
	position: relative;
	padding: 0.5rem 0.95rem;
	font-family: var(--f-display);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--muted);
	border-radius: var(--r-full);
	transition: color 0.3s var(--ease);
}
.nav__links a::after {
	content: "";
	position: absolute;
	left: 0.95rem; right: 0.95rem;
	bottom: 0.34rem;
	height: 1px;
	background: var(--yellow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-current { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.is-current::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.burger {
	display: none;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	position: relative;
	flex: none;
}
.burger span {
	position: absolute;
	left: 13px;
	width: 18px; height: 1.6px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.4s var(--ease), opacity 0.25s ease;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 24px; }
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* --- Mobile menu ------------------------------------------------------- */

.mmenu {
	position: fixed;
	inset: 0;
	z-index: 790;
	background: var(--black);
	padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	clip-path: inset(0 0 100% 0);
	transition: clip-path 0.7s var(--ease);
	pointer-events: none;
	overflow-y: auto;
}
.mmenu.is-open {
	clip-path: inset(0 0 0 0);
	pointer-events: auto;
}

.mmenu__links { display: flex; flex-direction: column; }
.mmenu__links a {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	padding: 0.55rem 0;
	font-family: var(--f-display);
	font-size: clamp(2rem, 11vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s ease;
	transition-delay: calc(var(--i) * 55ms);
}
.mmenu.is-open .mmenu__links a { opacity: 1; transform: none; }
.mmenu__links a:active { color: var(--yellow); }
.mmenu__links em {
	font-size: 0.7rem;
	font-style: normal;
	letter-spacing: 0.15em;
	color: var(--yellow);
}

.mmenu__foot { padding-top: 2rem; }
.mmenu__meta {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	margin-top: 1.1rem;
	font-size: 0.92rem;
	color: var(--muted);
	text-align: center;
}

/* -------------------------------------------------------------------------
   8. HERO
   ---------------------------------------------------------------------- */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--nav-h) + 2.5rem);
	padding-bottom: 6rem;
	overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__glow {
	position: absolute;
	top: -22%; left: 50%;
	width: min(1100px, 130vw);
	aspect-ratio: 1;
	transform: translate3d(calc(-50% + var(--px, 0px)), var(--py, 0px), 0);
	background: radial-gradient(circle, rgba(250, 240, 24, 0.17) 0%, rgba(250, 240, 24, 0.05) 38%, transparent 66%);
	filter: blur(30px);
	animation: glowBreathe 9s var(--ease-io) infinite;
}
@keyframes glowBreathe {
	0%, 100% { opacity: 0.75; }
	50%      { opacity: 1; }
}

.hero__ringwrap {
	position: absolute;
	top: 50%; left: 50%;
	width: min(760px, 96vw);
	aspect-ratio: 1;
	transform: translate3d(calc(-50% + var(--px, 0px)), calc(-50% + var(--py, 0px)), 0);
}
.hero__ring { position: absolute; inset: 0; }
.hero__ring--1 {
	color: rgba(250, 240, 24, 0.55);
	animation: ringSpin 46s linear infinite;
}
.hero__ring--2 {
	inset: 13%;
	color: rgba(255, 255, 255, 0.22);
	animation: ringSpin 32s linear infinite reverse;
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px);
	-webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 12%, transparent 76%);
	mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 12%, transparent 76%);
}

.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.5rem 1.05rem 0.5rem 0.85rem;
	border: 1px solid var(--line-2);
	border-radius: var(--r-full);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(8px);
	font-family: var(--f-display);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--fg);
	margin-bottom: clamp(1.4rem, 3vw, 2rem);
}
.hero__eyebrow .dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--yellow);
	animation: dotPulse 2.4s var(--ease-io) infinite;
}
.hero__eyebrow .sep { color: var(--faint); }

.hero__title {
	font-size: clamp(2.5rem, 6.4vw, 5.6rem);
	line-height: 0.97;
	letter-spacing: -0.045em;
	max-width: 15ch;
	margin-bottom: clamp(1.3rem, 2.4vw, 1.7rem);
}

/* Rotating word. Same descender trick as .line — without the padding the
   clip box cuts the tail off "get". */
.rot {
	display: inline-grid;
	overflow: hidden;
	vertical-align: bottom;
	padding-bottom: 0.22em;
	margin-bottom: -0.22em;
	color: var(--yellow);
	text-align: left;
}
.rot__w {
	grid-area: 1 / 1;
	transform: translate3d(0, 135%, 0);
	opacity: 0;
	transition: transform 0.72s var(--ease), opacity 0.4s ease;
	white-space: nowrap;
}
.rot__w.is-active { transform: none; opacity: 1; }
.rot__w.is-out { transform: translate3d(0, -135%, 0); opacity: 0; }

.hero__lede {
	max-width: 60ch;
	font-size: clamp(1rem, 1.35vw, 1.14rem);
	color: var(--muted);
	margin-bottom: clamp(1.6rem, 2.8vw, 2.1rem);
}
.hero__lede strong { color: var(--white); font-weight: 600; }

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.hero__chips li {
	padding: 0.42rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: var(--r-full);
	font-size: 0.8rem;
	color: var(--faint);
	transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__chips li:hover {
	color: var(--yellow);
	border-color: rgba(250, 240, 24, 0.4);
	transform: translateY(-2px);
}

.hero__scroll {
	position: absolute;
	left: 50%; bottom: 1.8rem;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--f-display);
	font-size: 0.7rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--faint);
	transition: color 0.3s ease;
}
.hero__scroll:hover { color: var(--yellow); }
.hero__scroll-line {
	position: relative;
	width: 1px; height: 46px;
	background: var(--line-2);
	overflow: hidden;
}
.hero__scroll-line i {
	position: absolute;
	inset: 0;
	background: var(--yellow);
	animation: scrollTrace 2.1s var(--ease-io) infinite;
}
@keyframes scrollTrace {
	0%   { transform: translateY(-100%); }
	60%  { transform: translateY(100%); }
	100% { transform: translateY(100%); }
}

/* -------------------------------------------------------------------------
   9. MARQUEE
   ---------------------------------------------------------------------- */

.marquee {
	position: relative;
	z-index: 3;
	border-block: 1px solid var(--line);
	overflow: hidden;
}
.marquee__row { overflow: hidden; }
.marquee__row--solid { background: var(--yellow); color: #000; }
.marquee__row--outline { background: var(--black); color: transparent; border-top: 1px solid var(--line); }

.marquee__track {
	display: flex;
	width: max-content;
	animation: marqL 42s linear infinite;
}
.marquee__row--outline .marquee__track { animation-name: marqR; animation-duration: 52s; }
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marqL {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes marqR {
	from { transform: translate3d(-50%, 0, 0); }
	to   { transform: translate3d(0, 0, 0); }
}

.marquee__set { display: flex; align-items: center; }

.marquee__item {
	font-family: var(--f-display);
	font-size: clamp(1.4rem, 4.2vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	padding-block: clamp(0.6rem, 1.6vw, 1rem);
	white-space: nowrap;
}
.marquee__row--outline .marquee__item {
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.34);
}

.marquee__sep {
	display: block;
	width: clamp(11px, 1.6vw, 17px);
	aspect-ratio: 1;
	margin-inline: clamp(1rem, 2.6vw, 2.2rem);
	flex: none;
}
.marquee__row--solid .marquee__sep { color: #000; }
.marquee__row--outline .marquee__sep { color: var(--yellow); }

/* -------------------------------------------------------------------------
   10. SECTION HEAD
   ---------------------------------------------------------------------- */

.shead { margin-bottom: clamp(2.6rem, 6vw, 4.5rem); max-width: 900px; }
.shead__title {
	font-size: clamp(2.1rem, 5.4vw, 4.1rem);
	letter-spacing: -0.04em;
	margin-bottom: 1.2rem;
}
.shead__lede {
	font-size: clamp(1rem, 1.35vw, 1.13rem);
	color: var(--muted);
	max-width: 54ch;
}

.shead--center {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}
.shead--center .shead__lede { margin-inline: auto; }

.shead--row {
	max-width: none;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: end;
}
.shead--row .shead__title { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   11. SERVICES ACCORDION
   ---------------------------------------------------------------------- */

.acc { border-top: 1px solid var(--line); }

.acc__item {
	border-bottom: 1px solid var(--line);
	position: relative;
	transition: background 0.45s var(--ease);
}
.acc__item::before {
	content: "";
	position: absolute;
	/* Bleed past the container padding so the tint has no hard edge at the
	   same x as the row number. */
	inset: 0 -1.4rem;
	background: linear-gradient(90deg, rgba(250, 240, 24, 0.07), transparent 55%);
	opacity: 0;
	transition: opacity 0.45s var(--ease);
	pointer-events: none;
}
.acc__item:hover::before,
.acc__item.is-open::before { opacity: 1; }

.acc__h { font: inherit; margin: 0; }

.acc__btn {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: clamp(0.8rem, 2.4vw, 2rem);
	padding: clamp(1.2rem, 2.6vw, 1.9rem) 0;
	text-align: left;
}

.acc__num {
	font-family: var(--f-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--yellow);
	width: 2.2rem;
	flex: none;
}

.acc__title {
	font-family: var(--f-display);
	font-size: clamp(1.25rem, 3.1vw, 2.35rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
	color: var(--white);
	transition: transform 0.5s var(--ease), color 0.35s var(--ease);
}
.acc__item:hover .acc__title { transform: translateX(9px); }
.acc__item.is-open .acc__title { color: var(--yellow); }

.acc__short {
	font-family: var(--f-display);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--faint);
	padding: 0.3rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--r-full);
	white-space: nowrap;
}

.acc__icon {
	position: relative;
	width: 42px; height: 42px;
	border: 1px solid var(--line-2);
	border-radius: 50%;
	flex: none;
	transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.acc__icon i {
	position: absolute;
	top: 50%; left: 50%;
	background: var(--white);
	transition: transform 0.45s var(--ease), background 0.35s ease;
}
.acc__icon i:nth-child(1) { width: 14px; height: 1.6px; transform: translate(-50%, -50%); }
.acc__icon i:nth-child(2) { width: 1.6px; height: 14px; transform: translate(-50%, -50%); }
.acc__item:hover .acc__icon { border-color: var(--yellow); }
.acc__item.is-open .acc__icon {
	background: var(--yellow);
	border-color: var(--yellow);
	transform: rotate(180deg);
}
.acc__item.is-open .acc__icon i { background: #000; }
.acc__item.is-open .acc__icon i:nth-child(2) { transform: translate(-50%, -50%) scaleY(0); }

.acc__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.55s var(--ease);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel-in { overflow: hidden; }

.acc__panel-in > * {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s var(--ease) 0.1s, transform 0.5s var(--ease) 0.1s;
}
.acc__item.is-open .acc__panel-in > * { opacity: 1; transform: none; }

.acc__desc {
	max-width: 62ch;
	color: var(--muted);
	margin-left: 2.2rem;
	padding-bottom: 1.3rem;
}
.acc__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 0.5rem 1.5rem;
	max-width: 880px;
	margin-left: 2.2rem;
	padding-bottom: 1.4rem;
}
.acc__list li {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	font-size: 0.94rem;
	color: var(--fg);
}
.acc__list li span { color: var(--yellow); font-size: 0.82rem; }

.acc__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 2.2rem;
	margin-bottom: 2rem;
	font-family: var(--f-display);
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--yellow);
	border-bottom: 1px solid rgba(250, 240, 24, 0.35);
	padding-bottom: 2px;
	transition: border-color 0.3s ease;
}
.acc__cta:hover { border-color: var(--yellow); }

/* -------------------------------------------------------------------------
   12. WORK
   ---------------------------------------------------------------------- */

.filters {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
	padding: 0.35rem;
	border: 1px solid var(--line);
	border-radius: var(--r-full);
	width: fit-content;
	max-width: 100%;
}
.filters__btn {
	position: relative;
	z-index: 2;
	padding: 0.6rem 1.25rem;
	border-radius: var(--r-full);
	font-family: var(--f-display);
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.35s var(--ease);
	white-space: nowrap;
}
.filters__btn:hover { color: var(--white); }
.filters__btn.is-active { color: #000; }

.filters__pill {
	position: absolute;
	top: 0.35rem;
	left: 0;
	height: calc(100% - 0.7rem);
	background: var(--yellow);
	border-radius: var(--r-full);
	transition: transform 0.5s var(--ease), width 0.5s var(--ease);
	z-index: 1;
	pointer-events: none;
}

.work {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: clamp(1rem, 2vw, 1.6rem);
}

.work__card {
	transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.work__card.is-filtered {
	display: none;
}

.work__media {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--ink-3);
}
.work__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease), filter 0.6s ease;
	filter: grayscale(1) contrast(1.05);
}
.work__card:hover .work__media img { transform: scale(1.06); filter: none; }

/* Typographic placeholder art */
.work__art {
	position: relative;
	width: 100%; height: 100%;
	display: grid;
	place-items: center;
	overflow: hidden;
	transition: transform 0.8s var(--ease);
}
.work__card:hover .work__art { transform: scale(1.04); }

.work__art::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 13px);
}
.work__art--identity { background: linear-gradient(135deg, #17171b 0%, #26261c 100%); }
.work__art--web      { background: linear-gradient(135deg, #141418 0%, #1b2224 100%); }
.work__art--social   { background: linear-gradient(135deg, #1a1518 0%, #262019 100%); }
.work__art--print    { background: linear-gradient(135deg, #131317 0%, #201d26 100%); }

.work__art-mark {
	position: absolute;
	width: 58%;
	aspect-ratio: 1;
	color: rgba(250, 240, 24, 0.16);
	transition: transform 0.9s var(--ease), color 0.5s ease;
}
.work__card:hover .work__art-mark {
	transform: rotate(120deg);
	color: rgba(250, 240, 24, 0.34);
}
.work__art-txt {
	position: relative;
	z-index: 2;
	font-family: var(--f-display);
	font-size: clamp(1.2rem, 2.4vw, 1.7rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.work__tag {
	position: absolute;
	top: 0.85rem; left: 0.85rem;
	z-index: 3;
	padding: 0.32rem 0.75rem;
	background: rgba(10, 10, 11, 0.72);
	backdrop-filter: blur(8px);
	border: 1px solid var(--line-2);
	border-radius: var(--r-full);
	font-family: var(--f-display);
	font-size: 0.7rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--yellow);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.work__card:hover .work__tag { opacity: 1; transform: none; }

.work__meta { padding: 1rem 0.25rem 0; }
.work__title {
	font-size: 1.12rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--white);
	transition: color 0.3s ease;
}
.work__card:hover .work__title { color: var(--yellow); }
.work__client { font-size: 0.88rem; color: var(--faint); }

.work__note {
	margin-top: clamp(2rem, 4vw, 3rem);
	color: var(--muted);
	font-size: 0.98rem;
}
.work__note a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--yellow);
	border-bottom: 1px solid rgba(250, 240, 24, 0.35);
	padding-bottom: 1px;
}

/* -------------------------------------------------------------------------
   13. PROCESS
   ---------------------------------------------------------------------- */

.proc { position: relative; max-width: 860px; margin-inline: auto; }

.proc__rail {
	position: absolute;
	top: 12px; bottom: 12px;
	left: 27px;
	width: 2px;
	background: var(--line);
	border-radius: 2px;
}
.proc__rail i {
	display: block;
	width: 100%;
	height: 0%;
	background: linear-gradient(180deg, var(--yellow), rgba(250, 240, 24, 0.35));
	border-radius: 2px;
	box-shadow: 0 0 18px rgba(250, 240, 24, 0.5);
	transition: height 0.15s linear;
}

.proc__step {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: clamp(1rem, 2.5vw, 2rem);
	padding-bottom: clamp(2.4rem, 5vw, 4rem);
}
.proc__step:last-child { padding-bottom: 0; }

.proc__marker {
	position: relative;
	width: 56px; height: 56px;
	display: grid;
	place-items: center;
	flex: none;
}
.proc__dot {
	position: absolute;
	top: 50%; left: 27px;
	width: 12px; height: 12px;
	margin: -6px 0 0 -5px;
	border-radius: 50%;
	background: var(--ink-4);
	border: 2px solid var(--line-2);
	transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
	z-index: 2;
}
.proc__step.is-active .proc__dot {
	background: var(--yellow);
	border-color: var(--yellow);
	transform: scale(1.35);
	box-shadow: 0 0 0 7px rgba(250, 240, 24, 0.14);
}
.proc__ring {
	position: absolute;
	inset: 0;
	color: rgba(250, 240, 24, 0.16);
	opacity: 0;
	transition: opacity 0.5s var(--ease);
	animation: ringSpin 12s linear infinite;
}
.proc__step.is-active .proc__ring { opacity: 1; }

.proc__body { padding-top: 0.35rem; }
.proc__meta {
	display: inline-block;
	font-family: var(--f-display);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--faint);
	margin-bottom: 0.5rem;
}
.proc__title {
	display: flex;
	align-items: baseline;
	gap: 0.8rem;
	font-size: clamp(1.5rem, 3.4vw, 2.3rem);
	margin-bottom: 0.65rem;
	color: var(--white);
	transition: color 0.4s ease;
}
.proc__step.is-active .proc__title { color: var(--yellow); }
.proc__num {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--yellow);
	opacity: 0.7;
}
.proc__desc { color: var(--muted); max-width: 58ch; }

/* -------------------------------------------------------------------------
   14. STATS + WHY
   ---------------------------------------------------------------------- */

.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.stats__item {
	background: var(--ink-2);
	padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.8rem);
	text-align: center;
	transition: background 0.4s var(--ease);
}
.stats__item:hover { background: var(--ink-3); }
.stats__value {
	font-family: var(--f-display);
	font-size: clamp(2.2rem, 5.4vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--yellow);
	font-variant-numeric: tabular-nums;
}
.stats__label {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: var(--muted);
	letter-spacing: 0.01em;
}

.why {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}
.why__card {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.2rem);
	background: var(--ink-3);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.why__card:hover { transform: translateY(-6px); border-color: rgba(250, 240, 24, 0.32); }

.why__glow {
	position: absolute;
	width: 260px; height: 260px;
	top: var(--gy, 50%); left: var(--gx, 50%);
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(250, 240, 24, 0.13), transparent 62%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.why__card:hover .why__glow { opacity: 1; }

.why__num {
	display: block;
	font-family: var(--f-display);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--yellow);
	margin-bottom: 1.4rem;
}
.why__title {
	font-size: 1.22rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 0.6rem;
	color: var(--white);
}
.why__desc { font-size: 0.95rem; color: var(--muted); position: relative; z-index: 2; }

/* -------------------------------------------------------------------------
   15. FAQ
   ---------------------------------------------------------------------- */

.faq__wrap {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
}
.faq__head { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq__head .btn { margin-top: 1.6rem; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { font: inherit; margin: 0; }

.faq__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.35rem 0;
	text-align: left;
	font-family: var(--f-display);
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	font-weight: 600;
	letter-spacing: -0.015em;
	color: var(--white);
	transition: color 0.3s ease;
}
.faq__btn:hover { color: var(--yellow); }

.faq__icon {
	position: relative;
	width: 26px; height: 26px;
	flex: none;
}
.faq__icon i {
	position: absolute;
	top: 50%; left: 50%;
	background: var(--yellow);
	transition: transform 0.45s var(--ease);
}
.faq__icon i:nth-child(1) { width: 13px; height: 1.6px; transform: translate(-50%, -50%); }
.faq__icon i:nth-child(2) { width: 1.6px; height: 13px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon i:nth-child(2) { transform: translate(-50%, -50%) scaleY(0); }
.faq__item.is-open .faq__icon { transform: rotate(180deg); }

.faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s var(--ease);
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel-in { overflow: hidden; }
.faq__panel-in p {
	padding-bottom: 1.5rem;
	color: var(--muted);
	max-width: 62ch;
	font-size: 0.97rem;
}

/* -------------------------------------------------------------------------
   16. CONTACT
   ---------------------------------------------------------------------- */

.section--contact { overflow: hidden; }

.contact__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	display: grid;
	place-items: center;
}
.contact__ring {
	width: min(1000px, 150vw);
	aspect-ratio: 1;
	color: rgba(250, 240, 24, 0.10);
	animation: ringSpin 70s linear infinite;
}

.contact__head { position: relative; z-index: 2; }
.contact__title {
	font-size: clamp(2.2rem, 6.4vw, 5rem);
	letter-spacing: -0.045em;
	line-height: 0.99;
	margin-bottom: 1.3rem;
}

.contact {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
}

.chan {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 1.3rem;
	background: var(--ink-3);
	border: 1px solid var(--line);
	border-radius: var(--r);
	margin-bottom: 0.7rem;
	transition: transform 0.4s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.chan:hover {
	transform: translateX(6px);
	border-color: rgba(250, 240, 24, 0.35);
	background: var(--ink-4);
}
.chan--static { cursor: default; }
.chan--static:hover { transform: none; border-color: var(--line); background: var(--ink-3); }

.chan__ico {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
	flex: none;
	transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.chan:hover .chan__ico { background: var(--yellow); color: #000; }
.chan--wa .chan__ico { background: rgba(37, 211, 102, 0.14); color: #25d366; }
.chan--wa:hover .chan__ico { background: #25d366; color: #fff; }

.chan__body { display: flex; flex-direction: column; min-width: 0; }
.chan__label {
	font-size: 0.74rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--faint);
}
.chan__value {
	font-family: var(--f-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	overflow: hidden;
	text-overflow: ellipsis;
}
.chan .ico--arrow { margin-left: auto; color: var(--faint); }

.contact__hours {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.2rem;
	font-size: 0.86rem;
	color: var(--faint);
}
.pulse {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #25d366;
	flex: none;
	animation: dotPulse 2.2s var(--ease-io) infinite;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
}

/* --- Brief form -------------------------------------------------------- */

.brief {
	padding: clamp(1.4rem, 3vw, 2.2rem);
	background: var(--ink-3);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.brief__intro {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 1.4rem;
}
.brief__note {
	margin-top: 0.9rem;
	font-size: 0.79rem;
	color: var(--faint);
	text-align: center;
}
.brief__note.is-err { color: #ff8b8b; }

.field { position: relative; margin-bottom: 0.85rem; }

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 1.45rem 1rem 0.6rem;
	background: var(--ink);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	font-size: 0.97rem;
	color: var(--white);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
	appearance: none;
	-webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--line-2); }

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--yellow);
	background: #0c0c0e;
}

.field label {
	position: absolute;
	left: 1rem;
	top: 1.05rem;
	font-size: 0.95rem;
	color: var(--faint);
	pointer-events: none;
	transform-origin: left top;
	transition: transform 0.28s var(--ease), color 0.28s var(--ease);
}
.field label span { opacity: 0.6; }

.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(-0.72rem) scale(0.76);
	color: var(--yellow);
}

.field--select select { padding-right: 2.6rem; cursor: pointer; }
.field--select option { background: var(--ink-3); color: var(--white); }
.field__caret {
	position: absolute;
	right: 1.1rem;
	top: 50%;
	width: 8px; height: 8px;
	margin-top: -2px;
	border-right: 1.6px solid var(--faint);
	border-bottom: 1.6px solid var(--faint);
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
}

.field.is-invalid input { border-color: #ff6b6b; }

/* -------------------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------------- */

.footer {
	position: relative;
	background: var(--black);
	border-top: 1px solid var(--line);
	padding-top: clamp(3rem, 7vw, 5rem);
	overflow: hidden;
}

.footer__top {
	display: grid;
	grid-template-columns: 0.9fr 2fr;
	gap: clamp(2rem, 5vw, 4rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__logo {
	height: 26px;
	width: auto;
	filter: brightness(0) invert(1);
	margin-bottom: 0.9rem;
}
.footer__slogan {
	height: 11px;
	width: auto;
	filter: brightness(0) saturate(100%) invert(88%) sepia(72%) saturate(2000%) hue-rotate(2deg) brightness(105%) contrast(97%);
	opacity: 0.85;
}

.footer__blurb {
	margin-top: 1.5rem;
	max-width: 34ch;
	font-size: 0.92rem;
	color: var(--muted);
}
.footer__cta { margin-top: 1.4rem; }

.footer__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__h {
	font-family: var(--f-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a,
.footer__col span {
	font-size: 0.91rem;
	color: var(--muted);
	transition: color 0.28s ease, padding-left 0.28s var(--ease);
}
.footer__col a:hover { color: var(--yellow); padding-left: 5px; }

.footer__social { display: flex; gap: 0.5rem; margin-top: 1.3rem; }
.footer__social a {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--muted);
	transition: color 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease), background 0.3s ease;
}
.footer__social a:hover {
	color: #000;
	background: var(--yellow);
	border-color: var(--yellow);
	transform: translateY(-3px);
}
.footer__social svg { width: 17px; height: 17px; }

.footer__bottom {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.6rem;
	padding-block: 1.4rem;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
	color: var(--faint);
}
.footer__made { display: flex; align-items: center; gap: 0.45rem; }
.footer__ring {
	width: 12px; height: 12px;
	color: var(--yellow);
	animation: ringSpin 8s linear infinite;
}

.footer__giant {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: clamp(4rem, 19vw, 19rem);
	line-height: 0.78;
	letter-spacing: -0.05em;
	text-align: center;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
	user-select: none;
	pointer-events: none;
	margin-bottom: -0.18em;
	white-space: nowrap;
}

/* -------------------------------------------------------------------------
   18. DOCK + FAB
   ---------------------------------------------------------------------- */

.dock {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 700;
	display: none;
	background: rgba(10, 10, 11, 0.9);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-top: 1px solid var(--line);
	padding-bottom: env(safe-area-inset-bottom);
	transform: translateY(110%);
	transition: transform 0.5s var(--ease);
}
.dock.is-in { transform: none; }

.dock__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	padding: 0.6rem 0.3rem 0.65rem;
	font-size: 0.68rem;
	letter-spacing: 0.05em;
	color: var(--muted);
}
.dock__item .ico { width: 21px; height: 21px; }
.dock__item--wa { color: var(--yellow); }
.dock__item:active { color: var(--yellow); }

.fab {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: 700;
	display: grid;
	place-items: center;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 10px 34px -8px rgba(37, 211, 102, 0.6);
	transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) scale(0);
	transition: transform 0.45s var(--ease), box-shadow 0.35s ease;
}
.fab.is-in { transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) scale(1); }
.fab:hover { box-shadow: 0 14px 44px -8px rgba(37, 211, 102, 0.85); }
.fab .ico { width: 29px; height: 29px; }

.fab__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid #25d366;
	animation: fabPulse 2.6s var(--ease-io) infinite;
}
@keyframes fabPulse {
	0%   { transform: scale(1); opacity: 0.8; }
	70%  { transform: scale(1.55); opacity: 0; }
	100% { transform: scale(1.55); opacity: 0; }
}

/* -------------------------------------------------------------------------
   19. INNER PAGES
   ---------------------------------------------------------------------- */

.section--inner { padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)); }

.prose { font-size: 1.04rem; color: var(--muted); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2, .prose h3 { color: var(--white); margin-top: 2.2rem; }
.prose h2 { font-size: 1.7rem; }
.prose h3 { font-size: 1.3rem; }
.prose a { color: var(--yellow); border-bottom: 1px solid rgba(250, 240, 24, 0.35); }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose img { border-radius: var(--r); }
.prose blockquote {
	border-left: 2px solid var(--yellow);
	padding-left: 1.2rem;
	color: var(--fg);
	font-style: italic;
}
.prose code {
	background: var(--ink-3);
	padding: 0.15em 0.4em;
	border-radius: 5px;
	font-size: 0.9em;
}
.prose__hero { margin-bottom: 2rem; }
.prose__hero img { border-radius: var(--r-lg); }
.prose__back { margin-top: 3rem; }
.prose__back a { color: var(--yellow); }

.postlist { display: grid; gap: 1rem; }
.postlist__item a {
	display: block;
	padding: 1.6rem;
	background: var(--ink-3);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: border-color 0.35s ease, transform 0.4s var(--ease);
}
.postlist__item a:hover { border-color: rgba(250, 240, 24, 0.35); transform: translateY(-4px); }
.postlist__item time { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); }
.postlist__item h2 { font-size: 1.4rem; margin: 0.5rem 0; color: var(--white); }
.postlist__item p { color: var(--muted); font-size: 0.95rem; }
.postlist__more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; color: var(--yellow); font-size: 0.9rem; }

.pagination { margin-top: 2.5rem; }
.pagination a, .pagination span {
	display: inline-grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding-inline: 0.6rem;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	margin-right: 0.35rem;
	color: var(--muted);
}
.pagination .current { background: var(--yellow); border-color: var(--yellow); color: #000; }
.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.err { text-align: center; }
.err__ring {
	width: 84px; height: 84px;
	color: var(--yellow);
	margin: 0 auto 1.5rem;
	animation: ringSpin 14s linear infinite;
}
.err__code {
	font-size: clamp(4.5rem, 18vw, 10rem);
	line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
	margin-bottom: 0.6rem;
}
.err .hero__cta { justify-content: center; margin-top: 2rem; }

/* -------------------------------------------------------------------------
   20. RESPONSIVE
   ---------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.faq__wrap { grid-template-columns: 1fr; }
	.faq__head { position: static; }
	.contact { grid-template-columns: 1fr; }
	.footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
	:root { --nav-h: 68px; }

	.nav__links { display: none; }
	.burger { display: block; }

	.shead--row { grid-template-columns: 1fr; align-items: start; }
	.shead--row .shead__title { margin-bottom: 1.1rem; }

	.stats { grid-template-columns: repeat(2, 1fr); }

	.acc__short { display: none; }
	.acc__btn { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 720px) {
	.hero { min-height: auto; padding-top: calc(var(--nav-h) + 3.5rem); padding-bottom: 6rem; }
	.hero__title { max-width: none; }
	.hero__cta .btn { flex: 1 1 100%; }
	.hero__scroll { display: none; }

	.nav__actions .btn--sm span { display: none; }
	.nav__actions .btn--sm { padding: 0.72rem; border-radius: 50%; }

	.acc__num { width: auto; }
	.acc__desc, .acc__list, .acc__cta { margin-left: 0; }

	.footer__cols { grid-template-columns: 1fr 1fr; }
	.footer__col:last-child { grid-column: 1 / -1; }

	.proc__step { grid-template-columns: 40px 1fr; }
	.proc__marker { width: 40px; height: 40px; }
	.proc__rail { left: 19px; }
	.proc__dot { left: 19px; }

	/* Sticky dock replaces the floating bubble on phones */
	.dock { display: flex; }
	.fab { display: none; }
	body { padding-bottom: 62px; }
}

@media (max-width: 380px) {
	/* The longest rotating phrase cannot wrap, so drop the headline a step
	   before it outgrows the content box on small phones. */
	.hero__title { font-size: 2.1rem; }
	.hero__eyebrow { font-size: 0.74rem; padding-inline: 0.75rem 0.9rem; }
}

@media (max-width: 520px) {
	.stats { grid-template-columns: 1fr 1fr; }
	.filters { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
	.filters__pill { display: none; }
	.filters__btn.is-active { background: var(--yellow); }
	.work { grid-template-columns: 1fr; }
	.footer__cols { grid-template-columns: 1fr; }
	.footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* -------------------------------------------------------------------------
   21. REDUCED MOTION
   ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	[data-reveal] { opacity: 1 !important; transform: none !important; }
	.line__in { transform: none !important; }
	.grain, .hero__ringwrap, .contact__ring, .fab__pulse { display: none; }
	.marquee__track { animation: none !important; transform: none !important; }
	.cursor { display: none !important; }
	.rot__w { position: static; }
	.rot__w:not(.is-active) { display: none; }
}

/* Print — nobody prints this, but if they do, make it legible. */
@media print {
	.nav, .mmenu, .dock, .fab, .grain, .cursor, .preloader, .scrollbar, .marquee { display: none !important; }
	body { background: #fff; color: #000; }
	.acc__panel, .faq__panel { grid-template-rows: 1fr !important; }
}
