/* =============================================================================
   DBSV — main.css
   One continuous page. Colour is carried by <body data-bg="…"> and shifts as
   you scroll; every "moment" is transparent and inherits --bg / --fg.
   ============================================================================= */

/* ---------- Tokens ---------- */
:root {
	--black:  #0a0a0a;
	--white:  #fafaf7;
	--paper:  #f3efe6;
	--red:    #ff3b30;
	--orange: #ff7a00;
	--yellow: #ffd60a;
	--green:  #22d36b;
	--blue:   #1e6bff;
	--purple: #7b3fff;
	--pink:   #ff2d95;

	--bg: var(--black);
	--fg: var(--white);

	--f-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
	--f-serif:   "Instrument Serif", Georgia, "Times New Roman", serif;
	--f-ui:      "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--gutter: clamp(1.25rem, 5vw, 5rem);
	--ease: cubic-bezier(.16, 1, .3, 1);
}

/* Section colour states. Text colour chosen for contrast on each ground. */
body[data-bg="black"]  { --bg: var(--black);  --fg: var(--white); }
body[data-bg="white"]  { --bg: var(--white);  --fg: var(--black); }
body[data-bg="paper"]  { --bg: var(--paper);  --fg: var(--black); }
body[data-bg="pink"]   { --bg: var(--pink);   --fg: var(--black); }
body[data-bg="yellow"] { --bg: var(--yellow); --fg: var(--black); }
body[data-bg="green"]  { --bg: var(--green);  --fg: var(--black); }
body[data-bg="orange"] { --bg: var(--orange); --fg: var(--black); }
body[data-bg="blue"]   { --bg: var(--blue);   --fg: var(--white); }
body[data-bg="purple"] { --bg: var(--purple); --fg: var(--white); }
body[data-bg="red"]    { --bg: var(--red);    --fg: var(--white); }

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* No CSS scroll-behavior:smooth — it breaks ScrollTrigger pin math. Anchor smoothing is done in JS. */
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--f-ui);
	font-size: 1.0625rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	transition: background-color .7s var(--ease), color .7s var(--ease);
	overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--yellow); color: var(--black); }

.skip-link {
	position: absolute; left: 1rem; top: -4rem; z-index: 100;
	padding: .75rem 1rem; background: var(--yellow); color: var(--black);
	font-weight: 700; border-radius: 999px; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
body[data-bg="yellow"] :focus-visible { outline-color: var(--black); }

/* Words split for animation. Default = visible (no-JS / reduced motion safe). */
/* Padding gives italic/serif overhangs room inside the clip; negative margins cancel it in layout. */
.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .18em .12em .08em; margin: -.18em -.12em -.08em; }
.w > span { display: inline-block; }

/* One-time reveals: only choreographed when JS says motion is OK (body.has-motion). */
body.has-motion .reveal .w > span {
	transform: translateY(112%) rotate(3deg);
	transition: transform 1.1s var(--ease);
	transition-delay: calc(var(--i, 0) * 55ms);
}
body.has-motion .reveal.is-in .w > span { transform: none; }
body.has-motion .reveal .fade, body.has-motion .reveal.fade {
	opacity: 0; transform: translateY(40px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}
body.has-motion .reveal.is-in .fade, body.has-motion .reveal.fade.is-in { opacity: 1; transform: none; }
body.has-motion .reveal.slide { opacity: 0; transform: translateX(-60px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
body.has-motion .reveal.slide:nth-child(even) { transform: translateX(60px); }
body.has-motion .reveal.slide.is-in { opacity: 1; transform: none; }
body.has-motion .reveal .pop { opacity: 0; transform: scale(.6); transition: opacity .6s var(--ease), transform 1.1s cubic-bezier(.34, 1.56, .64, 1); transition-delay: .35s; }
body.has-motion .reveal.is-in .pop { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-head {
	position: fixed; inset: 0 0 auto 0; z-index: 50;
	display: flex; align-items: center; justify-content: space-between;
	padding: clamp(.75rem, 2vw, 1.5rem) var(--gutter);
	pointer-events: none;
}
.site-head > * { pointer-events: auto; }
.site-head__logo {
	display: inline-flex; align-items: center;
	padding: .55rem .8rem; border-radius: 999px;
	background: var(--black);
	transition: transform .4s var(--ease);
}
.site-head__logo:hover { transform: rotate(-3deg) scale(1.04); }
.dbsv-logo { display: inline-flex; }
.dbsv-logo svg, .dbsv-logo__img { height: 1.35rem; width: auto; }
.site-head__actions { display: flex; gap: .5rem; align-items: center; }
.site-head__cta {
	font-family: var(--f-display); text-transform: uppercase; letter-spacing: .04em;
	font-size: 1rem; line-height: 1; text-decoration: none;
	padding: .8rem 1.25rem; border-radius: 999px;
	background: var(--fg); color: var(--bg);
	transition: background-color .7s var(--ease), color .7s var(--ease), transform .3s var(--ease);
}
.site-head__cta:hover { transform: translateY(-2px) rotate(2deg); }
.site-head__cta--alt { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 2px var(--fg); }
.site-head__cta--alt:hover { transform: translateY(-2px) rotate(-2deg); }

/* ---------- Generic ---------- */
.moment { position: relative; }
.btn {
	display: inline-flex; align-items: center; gap: .6em;
	font-family: var(--f-display); text-transform: uppercase; letter-spacing: .02em; line-height: 1;
	text-decoration: none; border: 0; cursor: pointer; border-radius: 999px;
	background: var(--black); color: var(--white);
	padding: 1em 1.6em;
	transition: transform .35s var(--ease), background-color .35s, color .35s;
}
.btn:hover { transform: translateY(-3px); }

/* =============================================================================
   01 — HERO
   ============================================================================= */
.hero {
	min-height: 100svh;
	display: grid; align-content: end;
	padding: 20vh var(--gutter) 12vh;
	isolation: isolate;
	overflow: clip;
}
.hero__media { position: absolute; inset: 0; z-index: -1; background: var(--black); overflow: hidden; }
.hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { opacity: 0; transition: opacity 1s ease; }
.hero__video.is-ready { opacity: 1; }
.hero__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.25) 55%, rgba(10,10,10,.1) 100%);
}
.hero__grain {
	position: absolute; inset: -50%; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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)'/%3E%3C/svg%3E");
}
/* Living colour when there's no footage yet. */
.hero__blobs { position: absolute; inset: 0; filter: blur(60px) saturate(1.2); }
.hero__blobs i {
	position: absolute; width: 55vmax; height: 55vmax; border-radius: 50%;
	opacity: .85; mix-blend-mode: screen; will-change: transform;
	animation: blob 22s ease-in-out infinite alternate;
}
.hero__blobs i:nth-child(1) { background: var(--pink);   left: -15%; top: -20%; }
.hero__blobs i:nth-child(2) { background: var(--blue);   right: -20%; top: -10%; animation-duration: 27s; animation-delay: -6s; }
.hero__blobs i:nth-child(3) { background: var(--yellow); left: 20%; bottom: -35%; animation-duration: 25s; animation-delay: -12s; }
.hero__blobs i:nth-child(4) { background: var(--green);  right: 5%; bottom: -25%; animation-duration: 30s; animation-delay: -3s; }
@keyframes blob {
	0%   { transform: translate(0, 0) scale(1); }
	50%  { transform: translate(12vw, -8vh) scale(1.15); }
	100% { transform: translate(-8vw, 10vh) scale(.95); }
}

.hero__inner { position: relative; max-width: 100%; }
.hero__kicker {
	font-family: var(--f-ui); font-weight: 500; text-transform: uppercase; letter-spacing: .18em;
	font-size: clamp(.7rem, 1.1vw, .9rem); margin-bottom: 1.5rem; color: var(--white); opacity: .8;
}
.hero__title {
	font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
	font-size: clamp(3.6rem, 13.5vw, 15rem); line-height: .88; letter-spacing: -.01em;
	color: var(--white);
	display: grid;
}
.hero__line { display: block; white-space: nowrap; }
body.has-motion .hero .reveal .w > span { transition-duration: 1.3s; transition-delay: calc(.25s + var(--i, 0) * 80ms); }
.hero__line--2 { font-family: var(--f-serif); font-style: italic; text-transform: none; color: var(--yellow); font-size: 1.1em; letter-spacing: 0; margin-left: .18em; }
.hero__line--3 { margin-left: 1.1em; }
/* Gradient lives on each word span: background-clip:text doesn't survive transformed children. */
.hero__line--3 .w > span {
	background: linear-gradient(90deg, var(--pink), var(--orange) 55%, var(--yellow));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	padding-right: .08em;
}

.hero__scroll {
	position: absolute; right: var(--gutter); bottom: 2rem;
	display: flex; flex-direction: column; align-items: center; gap: .6rem;
	font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--white); opacity: .7;
}
.hero__scroll i { width: 1px; height: 3.5rem; background: currentColor; transform-origin: top; animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =============================================================================
   02 — STATEMENT
   ============================================================================= */
.statement { min-height: 100svh; display: grid; align-items: center; padding: 25vh var(--gutter); overflow: clip; }
.statement__ghost {
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	font-family: var(--f-display); font-size: clamp(14rem, 42vw, 48rem); line-height: 1; white-space: nowrap;
	color: transparent; -webkit-text-stroke: 2px rgba(10,10,10,.18);
	pointer-events: none; user-select: none; will-change: transform;
}
.statement__inner { position: relative; }
.statement__title {
	font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
	font-size: clamp(3.6rem, 14vw, 17rem); line-height: .9; color: var(--black);
	display: grid; will-change: transform;
}
.statement__a { white-space: nowrap; }
.statement__b { font-family: var(--f-serif); font-style: italic; text-transform: none; color: var(--white); font-size: 1.15em; margin-left: 1.5em; }
.statement__sub {
	margin-top: 3rem; max-width: 34ch;
	font-size: clamp(1.1rem, 2.2vw, 1.75rem); line-height: 1.3; font-weight: 500; color: var(--black);
}

/* =============================================================================
   03 — CAPABILITIES (horizontal in vertical)
   ============================================================================= */
.caps { overflow: clip; }
.caps__pin { height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.caps__track { display: flex; align-items: baseline; gap: 7vw; padding: 0 var(--gutter); width: max-content; will-change: transform; }
.caps__item { position: relative; display: flex; flex-direction: column; color: var(--c); white-space: nowrap; }
.caps__num { font-family: var(--f-ui); font-size: .8rem; letter-spacing: .15em; opacity: .55; margin-bottom: .6rem; }
.caps__word { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(4rem, 15vw, 17rem); line-height: .9; letter-spacing: -.01em; }
.caps__item--serif .caps__word { font-family: var(--f-serif); font-style: italic; text-transform: none; font-size: clamp(4.5rem, 17vw, 19rem); }
.caps__word--end { font-family: var(--f-serif); font-style: italic; text-transform: none; font-size: clamp(2rem, 5vw, 5.5rem); white-space: normal; max-width: 60vw; line-height: 1.05; }

/* =============================================================================
   04 — WORK (stacking tiles)
   ============================================================================= */
.work { }
.work__tile {
	position: sticky; top: 0;
	height: 100svh; min-height: 620px;
	display: grid; grid-template-columns: 1fr 1fr;
	color: var(--black);
	overflow: hidden;
	will-change: transform;
}
.work__tile--pink   { background: var(--pink); }
.work__tile--yellow { background: var(--yellow); }
.work__tile--green  { background: var(--green); }
.work__tile--orange { background: var(--orange); }
.work__tile--red    { background: var(--red); color: var(--white); }
.work__tile--blue   { background: var(--blue); color: var(--white); }
.work__tile--purple { background: var(--purple); color: var(--white); }

.work__media { position: relative; overflow: hidden; }
.work__img, .work__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work__video { opacity: 0; transition: opacity .6s ease; }
.work__video.is-ready { opacity: 1; }
.work__placeholder {
	position: absolute; inset: 0; display: grid; place-items: center;
	background:
		radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 40%),
		radial-gradient(circle at 80% 90%, rgba(10,10,10,.35), transparent 45%),
		repeating-linear-gradient(135deg, rgba(10,10,10,.08) 0 14px, transparent 14px 28px);
}
.work__placeholder span { font-family: var(--f-display); font-size: clamp(12rem, 40vh, 30rem); line-height: 1; opacity: .18; }
.work__copy { display: flex; flex-direction: column; justify-content: flex-end; gap: 1.25rem; padding: clamp(2rem, 6vh, 5rem) var(--gutter); }
.work__label { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .18em; font-size: clamp(.7rem, 1.1vw, .9rem); font-weight: 500; }
.work__num { opacity: .55; margin-right: .5em; }
.work__brand { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 5rem); line-height: .95; }
.work__title { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: clamp(2.4rem, 5.2vw, 5.8rem); line-height: .98; display: grid; }
.work__title-b { font-family: var(--f-display); font-style: normal; text-transform: uppercase; }

/* =============================================================================
   05 — EXECUTION
   ============================================================================= */
.exec { padding: 25vh 0 12vh; overflow: clip; }
.exec__inner { padding: 0 var(--gutter); }
.exec__title { display: grid; gap: .4em; font-weight: 400; }
.exec__l { display: block; line-height: .95; }
.exec__l--1 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(3rem, 10vw, 11rem); color: var(--white); }
.exec__l--2 { font-family: var(--f-serif); font-style: italic; font-size: clamp(2.6rem, 8.5vw, 9.5rem); color: var(--yellow); margin-left: 1.2em; }
.exec__l--3 { font-family: var(--f-ui); font-weight: 500; font-size: clamp(1.2rem, 2.6vw, 2.2rem); color: var(--white); opacity: .85; margin-top: 1.5rem; max-width: 30ch; line-height: 1.25; }

.ticker { margin-top: 14vh; display: grid; gap: 1.5rem; overflow: hidden; }
.ticker__row { display: flex; width: max-content; will-change: transform; animation: ticker 55s linear infinite; }
.ticker__row--1 { animation-direction: reverse; animation-duration: 65s; }
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker__list { display: flex; flex: none; }
.ticker__item {
	font-family: var(--f-display); text-transform: uppercase; white-space: nowrap;
	font-size: clamp(2rem, 6vw, 5.5rem); line-height: 1; color: var(--c); padding: 0 .35em;
}
.ticker__item::after { content: "•"; margin-left: .7em; color: var(--white); opacity: .4; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =============================================================================
   06 — SCALE
   ============================================================================= */
.scale { padding: 25vh 0 20vh; overflow: clip; }
.scale__inner { padding: 0 var(--gutter); }
.scale__title { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(3.6rem, 14vw, 17rem); line-height: .9; color: var(--white); display: grid; }
.scale__b { font-family: var(--f-serif); font-style: italic; text-transform: none; font-size: 1.1em; margin-left: 1.3em; color: var(--yellow); }
.scale__sub { margin-top: 3rem; max-width: 42ch; font-size: clamp(1.05rem, 2vw, 1.6rem); line-height: 1.35; font-weight: 500; }
.scale__steps { margin-top: 16vh; display: flex; flex-wrap: wrap; column-gap: 6vw; row-gap: 2vh; padding: 0 var(--gutter); }
.scale__step { position: relative; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2.6rem, 7.5vw, 8.5rem); line-height: 1; white-space: nowrap; }
.scale__step-outline { color: transparent; -webkit-text-stroke: 2px var(--white); }
.scale__step-fill { position: absolute; inset: 0; color: var(--white); clip-path: inset(0 100% 0 0); will-change: clip-path; }

/* =============================================================================
   07 — CULTURE
   ============================================================================= */
.culture { padding: 22vh var(--gutter); overflow: clip; }
.culture__inner { display: grid; gap: 10vh; }
.culture__stack { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: .25em; row-gap: .1em; font-size: clamp(3rem, 11vw, 12rem); line-height: .95; }
.culture__word { font-family: var(--f-display); text-transform: uppercase; color: var(--c); }
.culture__x { font-family: var(--f-serif); font-style: italic; font-size: .8em; color: var(--black); display: inline-block; will-change: transform; }
.culture__copy { max-width: 60rem; margin-left: auto; }
.culture__title { display: grid; gap: .2em; font-weight: 400; }
.culture__a { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2rem, 4.5vw, 4.5rem); line-height: 1; color: var(--black); }
.culture__b { font-family: var(--f-serif); font-style: italic; font-size: clamp(2.4rem, 5.5vw, 5.5rem); line-height: 1; color: var(--pink); }
.culture__sub { margin-top: 2rem; max-width: 40ch; font-size: clamp(1.05rem, 2vw, 1.5rem); line-height: 1.4; color: var(--black); opacity: .8; }

/* =============================================================================
   08 — QUESTION
   ============================================================================= */
.question { min-height: 100svh; display: grid; align-items: center; padding: 20vh var(--gutter); overflow: clip; }
.question__inner { display: grid; gap: 6vh; justify-items: start; }
.question__title { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: clamp(3.4rem, 12vw, 14rem); line-height: .92; color: var(--white); display: grid; }
.question__b { font-family: var(--f-display); font-style: normal; text-transform: uppercase; margin-left: .6em; }
.btn--huge { background: var(--white); color: var(--black); font-size: clamp(1.6rem, 4vw, 3.6rem); padding: .55em 1em .55em 1.1em; }
.btn--huge svg { width: 1em; height: 1em; transition: transform .35s var(--ease); }
.btn--huge:hover { background: var(--yellow); transform: translateY(-4px) rotate(-1.5deg); }
.btn--huge:hover svg { transform: translateX(.2em); }

/* =============================================================================
   09 — CONTACT (quiet)
   ============================================================================= */
.contact { padding: 18vh var(--gutter) 14vh; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(3rem, 8vw, 10rem); max-width: 90rem; margin: 0 auto; }
.contact__title { font-family: var(--f-display); text-transform: uppercase; font-weight: 400; font-size: clamp(2.6rem, 5.5vw, 5.5rem); line-height: .95; color: var(--black); }
.contact__sub { margin-top: 1.5rem; font-family: var(--f-serif); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.1; color: var(--black); }

.cform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem 2rem; }
.cform__field { display: grid; gap: .5rem; }
.cform__field--full { grid-column: 1 / -1; }
.cform__field label { font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
.cform__opt { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: .6; }
.cform__field input, .cform__field textarea {
	width: 100%; background: transparent; border: 0; border-bottom: 2px solid rgba(10,10,10,.35);
	padding: .6rem 0; font-size: 1.25rem; border-radius: 0; color: var(--black);
	transition: border-color .25s;
}
.cform__field textarea { resize: vertical; min-height: 7rem; line-height: 1.4; }
.cform__field input:focus, .cform__field textarea:focus { outline: none; border-bottom-color: var(--black); }
.cform__field.is-invalid input, .cform__field.is-invalid textarea { border-bottom-color: var(--red); }
.cform__field ::placeholder { color: rgba(10,10,10,.4); }
.cform__err { font-size: .9rem; color: #c8102e; min-height: 1.2em; }
.cform__hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cform__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.btn--submit { font-size: clamp(1.2rem, 2.2vw, 1.7rem); position: relative; }
.btn--submit:hover { background: var(--pink); color: var(--black); }
.btn--submit .btn__busy { display: none; }
.cform.is-busy .btn--submit { pointer-events: none; opacity: .7; }
.cform.is-busy .btn__label { visibility: hidden; }
.cform.is-busy .btn__busy { display: block; position: absolute; inset: 0; display: grid; place-items: center; }
.cform__status { font-weight: 500; color: #c8102e; }
.cform__success { padding: 3rem; border: 3px solid var(--black); border-radius: 1.5rem; }
.cform__success-big { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(3rem, 8vw, 7rem); line-height: 1; color: var(--black); }
.cform__success-msg { margin-top: 1rem; font-family: var(--f-serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.15; color: var(--black); }

/* =============================================================================
   JOIN THE CREW — application page (mobile-first)
   ============================================================================= */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.apply { padding: 22vh var(--gutter) 12vh; }
.apply__hero { max-width: 60rem; }
.apply__kicker { font-family: var(--f-ui); font-weight: 500; text-transform: uppercase; letter-spacing: .18em; font-size: clamp(.7rem, 1.1vw, .9rem); opacity: .75; margin-bottom: 1.5rem; }
.apply__title { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(4rem, 14vw, 14rem); line-height: .9; color: var(--white); }
.apply__title::after { content: ""; display: block; width: 1.2em; height: .12em; margin-top: .25em; background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue), var(--pink)); border-radius: 999px; }
.apply__sub { margin-top: 2rem; max-width: 36ch; font-family: var(--f-serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.15; }

.apply-form { padding: 10vh var(--gutter) 14vh; }
.apply-form__inner { max-width: 56rem; margin: 0 auto; }
.aform__group { border: 0; padding: 0; margin: 0 0 3.5rem; min-width: 0; }
.aform__legend { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; color: var(--black); margin-bottom: 1.25rem; padding: 0; }
.aform__hint { margin: -.5rem 0 1.25rem; color: rgba(10,10,10,.65); font-size: 1rem; }
.cform__field select {
	width: 100%; background: transparent; border: 0; border-bottom: 2px solid rgba(10,10,10,.35); border-radius: 0;
	padding: .6rem 0; font-size: 1.25rem; color: var(--black); appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%230a0a0a' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right .25rem center;
}
.cform__field select:focus { outline: none; border-bottom-color: var(--black); }

/* Headshot picker: one big tappable tile. */
.aform__photo { position: relative; }
.aform__file { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.aform__drop {
	display: flex; align-items: center; gap: 1.25rem; min-height: 8rem; padding: 1.25rem;
	border: 2px dashed rgba(10,10,10,.4); border-radius: 1.25rem; background: rgba(255,255,255,.5);
	transition: border-color .2s, background-color .2s;
}
.aform__photo:hover .aform__drop, .aform__file:focus-visible + .aform__drop, .aform__photo:focus-within .aform__drop { border-color: var(--black); background: #fff; }
.aform__photo.has-photo .aform__drop { border-style: solid; }
.aform__preview { width: 6rem; height: 6rem; border-radius: 1rem; object-fit: cover; flex: none; }
.aform__drop-text { display: grid; gap: .2rem; }
.aform__drop-text strong { font-family: var(--f-display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: .02em; font-weight: 400; }
.aform__drop-text span { color: rgba(10,10,10,.65); font-size: .95rem; }
.aform__photo::before { content: ""; position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); width: 6rem; height: 6rem; border-radius: 1rem; background: conic-gradient(from 180deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink), var(--red)); opacity: .9; }
.aform__photo.has-photo::before { display: none; }
.aform__photo:not(.has-photo) .aform__drop { padding-left: 8.5rem; }

/* States: tap-to-toggle chips. */
.aform__tools { display: flex; gap: .5rem; margin-bottom: 1rem; }
.aform__tool { background: transparent; border: 2px solid var(--black); border-radius: 999px; padding: .5rem 1rem; font-weight: 700; font-size: .9rem; cursor: pointer; min-height: 40px; }
.aform__tool:hover { background: var(--black); color: var(--white); }
.aform__states { display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .5rem; }
.aform__state { position: relative; display: block; }
.aform__state input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.aform__state span {
	display: flex; align-items: center; min-height: 48px; padding: .6rem .9rem .6rem 2.4rem; border-radius: .9rem;
	background: #fff; border: 2px solid rgba(10,10,10,.15); font-weight: 500; cursor: pointer; user-select: none;
	transition: background-color .15s, border-color .15s, color .15s;
}
.aform__state span::before { content: ""; position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; border-radius: .3rem; border: 2px solid rgba(10,10,10,.4); background: #fff; }
.aform__state input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.aform__state input:checked + span::before { background: var(--yellow); border-color: var(--yellow); }
.aform__state input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 2px; }
.aform__travel { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; font-weight: 500; min-height: 44px; }
.aform__travel input { width: 1.4rem; height: 1.4rem; accent-color: var(--black); }
.cform__success-back { margin-top: 2rem; font-weight: 500; }
.cform__success-back a { text-decoration: none; border-bottom: 2px solid var(--black); }

/* ---------- Footer ---------- */
.site-foot { background: var(--black); color: var(--white); padding: 5rem var(--gutter) 2.5rem; }
.site-foot__inner { max-width: 90rem; margin: 0 auto; display: grid; gap: 3.5rem; }
.dbsv-logo--foot svg, .dbsv-logo--foot .dbsv-logo__img { height: clamp(2.5rem, 6vw, 4.5rem); }
.site-foot__cols { display: flex; flex-wrap: wrap; gap: 3rem 6rem; }
.site-foot__col { display: grid; gap: .5rem; justify-items: start; }
.site-foot__col a { text-decoration: none; font-size: 1.1rem; border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-foot__col a:hover { border-bottom-color: var(--yellow); }
.site-foot__h { font-family: var(--f-ui); font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; opacity: .55; margin-bottom: .5rem; }
.site-foot__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; opacity: .7; padding-top: 2rem; border-top: 1px solid rgba(250,250,247,.15); }
.site-foot__top { text-decoration: none; }

/* ---------- Plain pages ---------- */
.page-plain { min-height: 70vh; padding: 22vh var(--gutter) 10vh; }
.page-plain__inner { max-width: 48rem; margin: 0 auto; }
.page-plain__title { font-family: var(--f-display); text-transform: uppercase; font-weight: 400; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; margin-bottom: 2rem; }
.page-plain__content p { margin-bottom: 1.25rem; }
.page-plain__content h2 { font-family: var(--f-display); text-transform: uppercase; font-weight: 400; font-size: 1.8rem; margin: 2.5rem 0 1rem; }

/* =============================================================================
   Mobile / touch — purpose-built alternatives, not just squeezed layouts
   ============================================================================= */
@media (max-width: 900px) {
	/* Header: 44px+ tap targets, safe-area aware. */
	.site-head { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); padding-top: max(.75rem, env(safe-area-inset-top)); }
	.site-head__logo { min-height: 44px; padding: .6rem .9rem; }
	.site-head__cta { min-height: 44px; display: inline-flex; align-items: center; font-size: .85rem; padding: .6rem .9rem; }
	.site-head__actions { gap: .4rem; }
	.apply { padding: 20vh var(--gutter) 10vh; }
	.apply__title { font-size: clamp(3.4rem, 18vw, 7rem); }
	.apply-form { padding: 7vh var(--gutter) 12vh; }
	.aform__group { margin-bottom: 2.75rem; }
	.aform__states { grid-template-columns: 1fr 1fr; gap: .4rem; }
	.aform__state span { padding-left: 2.2rem; font-size: .95rem; }

	/* Hero: no blur filter on phones — soft radial gradients read the same and cost nothing. */
	.hero { padding-top: 24vh; padding-bottom: 12vh; }
	.hero__title { font-size: clamp(3.2rem, 17vw, 7rem); }
	.hero__line--3 { margin-left: .5em; }
	.hero__scroll { display: none; }
	.hero__blobs { filter: none; }
	.hero__blobs i { width: 110vmax; height: 110vmax; opacity: .9; animation-duration: 30s; }
	.hero__blobs i:nth-child(1) { background: radial-gradient(circle at center, var(--pink) 0%, transparent 60%); }
	.hero__blobs i:nth-child(2) { background: radial-gradient(circle at center, var(--blue) 0%, transparent 60%); }
	.hero__blobs i:nth-child(3) { background: radial-gradient(circle at center, var(--yellow) 0%, transparent 60%); }
	.hero__blobs i:nth-child(4) { background: radial-gradient(circle at center, var(--green) 0%, transparent 60%); }
	.hero__grain { display: none; }

	/* Tighter vertical rhythm — desktop breathing room becomes dead space on a phone. */
	/* Every moment must be taller than the 60% colour line or its colour never gets a turn. */
	.statement { min-height: 85svh; padding: 14vh var(--gutter); }
	.statement__title { font-size: clamp(3rem, 15vw, 7rem); }
	.statement__a { white-space: normal; }
	.statement__b { margin-left: .8em; }
	.statement__sub { max-width: 100%; margin-top: 2rem; }
	.statement__ghost { font-size: 60vw; }

	/* Capabilities: vertical stack, alternating alignment, staggered reveals. */
	.caps__pin { height: auto; padding: 12vh 0 14vh; overflow: visible; }
	.caps__track { flex-direction: column; width: auto; gap: 3vh; align-items: flex-start; }
	.caps__item:nth-child(even) { align-self: flex-end; text-align: right; }
	.caps__word { font-size: clamp(3rem, 15vw, 6rem); }
	.caps__item--serif .caps__word { font-size: clamp(3.4rem, 17vw, 7rem); }
	.caps__word--end { max-width: 90vw; }
	.caps__item--end { align-self: flex-start !important; text-align: left; }

	.work__tile { grid-template-columns: 1fr; grid-template-rows: 46svh 1fr; min-height: 0; }
	.work__copy { justify-content: flex-start; padding-top: 1.75rem; gap: .9rem; }

	.exec { padding: 14vh 0 8vh; }
	.exec__l--2 { margin-left: .4em; }
	.exec__l--3 { margin-top: 1rem; }
	.ticker { margin-top: 8vh; gap: 1rem; }

	.scale { padding: 14vh 0 12vh; }
	.scale__b { margin-left: .5em; }
	.scale__sub { margin-top: 2rem; }
	.scale__steps { margin-top: 9vh; flex-direction: column; row-gap: 1rem; }

	.culture { padding: 14vh var(--gutter) 12vh; }
	.culture__inner { gap: 7vh; }
	.culture__copy { margin-left: 0; }
	.culture__sub { margin-top: 1.5rem; }

	.question { min-height: 85svh; padding: 14vh var(--gutter); }
	.question__inner { gap: 4vh; }
	.question__title { font-size: clamp(2.9rem, 13vw, 7rem); }
	.question__b { margin-left: 0; }

	.contact { padding: 12vh var(--gutter) 10vh; }
	.contact__inner { grid-template-columns: 1fr; gap: 3rem; }
	.cform__grid { grid-template-columns: 1fr; gap: 1.6rem; }
	.cform__actions { margin-top: 2rem; }
	.btn--submit { width: 100%; justify-content: center; min-height: 56px; }

	.site-foot { padding-top: 3.5rem; }
	.site-foot__inner { gap: 2.5rem; }
	.site-foot__cols { gap: 2rem; }
	.site-foot__col a { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 520px) {
	.site-head__cta { font-size: .85rem; padding: .7rem 1rem; }
}

/* Touch devices: no hover-dependent affordances. */
@media (hover: none) {
	.ticker:hover .ticker__row { animation-play-state: running; }
}

/* =============================================================================
   Reduced motion — same content, no choreography
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	body { transition: none; }
	.hero__blobs i, .hero__scroll i { animation: none; }
	.ticker__row { animation: none; flex-wrap: wrap; width: auto; }
	.ticker__list[aria-hidden] { display: none; }
	.ticker__list { flex-wrap: wrap; row-gap: .5rem; }
	.scale__step-fill { clip-path: none; }
	.scale__step-outline { -webkit-text-stroke: 0; color: var(--white); }
	.caps__pin { height: auto; padding: 18vh 0; }
	.caps__track { flex-wrap: wrap; width: auto; row-gap: 3vh; }
	.hero__video, .work__video { display: none; }
	.btn, .site-head__logo, .site-head__cta { transition: none; }
}

/* Print: just the essentials. */
@media print {
	.site-head, .hero__media, .hero__scroll, .ticker, .btn--huge { display: none !important; }
	body { background: #fff !important; color: #000 !important; }
}
