@font-face {
	font-family: "Golos Text";
	src: url("../fonts/golos-text-cyrillic.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--ink: #171813;
	--ink-soft: #292a24;
	--paper: #f2efe5;
	--paper-deep: #e7e1d2;
	--white: #fffdf7;
	--accent: #dd5b2a;
	--accent-dark: #a73d18;
	--sage: #9eaa8b;
	--line: rgba(23, 24, 19, .18);
	--line-light: rgba(255, 253, 247, .24);
	--shadow: 0 20px 70px rgba(23, 24, 19, .13);
	--font-body: "Golos Text", Arial, sans-serif;
	--font-display: var(--font-body);
	--shell: 90rem;
	--gutter: clamp(1.25rem, 4vw, 4.25rem);
	--section-space: clamp(5.25rem, 11vw, 10rem);
	--header-height: 4.75rem;
	--ease-out: cubic-bezier(.2, .72, .2, 1);
	--ease-sweep: cubic-bezier(.76, 0, .24, 1);
	--scroll-progress: 0;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 1rem);
	overflow-x: clip;
}

body {
	margin: 0;
	min-width: 20rem;
	overflow-x: clip;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

body::before {
	content: "";
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1001;
	height: .1875rem;
	pointer-events: none;
	background: var(--accent);
	transform: scaleX(var(--scroll-progress));
	transform-origin: left center;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; }

::selection { background: var(--accent); color: var(--white); }

:focus-visible {
	outline: .1875rem solid var(--accent);
	outline-offset: .25rem;
}

.shell {
	width: min(100%, var(--shell));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.skip-link {
	position: fixed;
	top: .75rem;
	left: .75rem;
	z-index: 1000;
	padding: .75rem 1rem;
	background: var(--white);
	color: var(--ink);
	transform: translateY(-160%);
	transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.kicker {
	display: flex;
	align-items: center;
	gap: .75rem;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.kicker::before {
	content: "";
	width: 1.75rem;
	height: .125rem;
	background: var(--accent);
	transform-origin: left center;
	transition: transform .55s var(--ease-sweep);
}

.kicker--light { color: rgba(255, 253, 247, .72); }
.kicker--light::before { background: var(--accent); }

.button {
	display: inline-flex;
	min-height: 3.5rem;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: .9rem 1.25rem;
	border: .0625rem solid transparent;
	background: var(--ink);
	color: var(--white);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .07em;
	line-height: 1.2;
	text-transform: uppercase;
	background-image: linear-gradient(90deg, var(--button-hover, var(--accent)) 0 100%);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 0 100%;
	transition: background-size .5s var(--ease-sweep), color .3s ease, border-color .3s ease, transform .25s var(--ease-out), box-shadow .3s ease;
}

.button:hover { transform: translateY(-.1875rem); background-size: 100% 100%; box-shadow: 0 .75rem 1.8rem rgba(23, 24, 19, .16); }
.button:active { transform: translateY(0) scale(.985); }
.button--accent { --button-hover: var(--ink); background-color: var(--accent); color: var(--ink); }
.button--accent:hover { color: var(--white); }
.button--paper { --button-hover: var(--ink); background-color: var(--paper); color: var(--ink); }
.button--paper:hover { color: var(--white); }
.button:not(.button--accent):not(.button--paper) { --button-hover: var(--accent); }
.button--small { min-height: 2.75rem; padding: .75rem 1rem; font-size: .68rem; }
.button > span { transition: transform .35s var(--ease-out); }
.button:hover > span { transform: translateX(.35rem); }

.text-link, .arrow-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	border-bottom: 0;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.2;
	text-transform: uppercase;
}

.text-link::after, .arrow-link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: .0625rem;
	background: currentColor;
	transform: scaleX(.22);
	transform-origin: left center;
	transition: transform .45s var(--ease-sweep);
}

.text-link { padding-block: .8rem; }
.text-link--light { color: var(--white); }
.arrow-link { width: 100%; padding-block: 1rem; }
.text-link span, .arrow-link span { transition: transform .2s ease; }
.text-link:hover span, .arrow-link:hover span { transform: translate(.2rem, -.2rem); }
.text-link:hover::after, .arrow-link:hover::after { transform: scaleX(1); }

.site-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	height: var(--header-height);
	color: var(--white);
	transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
	position: fixed;
	background: rgba(242, 239, 229, .94);
	box-shadow: 0 .5rem 2rem rgba(23, 24, 19, .08);
	color: var(--ink);
	-webkit-backdrop-filter: blur(.75rem);
	backdrop-filter: blur(.75rem);
}

body:not(.is-home) .site-header {
	position: relative;
	background: var(--ink);
}

.site-header__inner {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	flex: 0 0 auto;
}

.brand__mark { width: 2.6rem; }
.brand__mark svg { width: 100%; height: auto; fill: currentColor; transition: transform .45s var(--ease-out); }
.brand__mark .brand__window { fill: var(--accent); transition: transform .45s var(--ease-out); transform-origin: center; }
.brand:hover .brand__mark svg { transform: translateX(.2rem); }
.brand:hover .brand__window { transform: scaleX(.82); }

.brand__type { display: grid; line-height: 1; }
.brand__type strong {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.brand__type small {
	margin-top: .22rem;
	font-size: .46rem;
	font-weight: 700;
	letter-spacing: .12em;
	opacity: .65;
	text-transform: uppercase;
}

.site-nav {
	position: fixed;
	inset: 0;
	z-index: -1;
	display: grid;
	visibility: hidden;
	grid-template-rows: auto 1fr auto;
	gap: 1.5rem;
	min-height: 100dvh;
	padding: calc(var(--header-height) + 2rem) var(--gutter) max(2rem, env(safe-area-inset-bottom));
	background: var(--ink);
	color: var(--white);
	opacity: 0;
	overflow: hidden auto;
	clip-path: inset(0 0 100% 0);
	transition: visibility .25s ease;
}

.menu-open .site-nav { z-index: 1; visibility: visible; opacity: 1; clip-path: inset(0); }
.site-nav__ambient { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.site-nav__ambient::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(221, 91, 42, .13), transparent 46%); }
.site-nav__ambient span { position: absolute; border: .0625rem solid rgba(255, 253, 247, .1); border-radius: 50%; }
.site-nav__ambient span:first-child { top: 9%; right: -28%; width: 23rem; aspect-ratio: 1; }
.site-nav__ambient span:last-child { right: 8%; bottom: -12%; width: 9rem; aspect-ratio: 1; border-color: rgba(221, 91, 42, .35); }
.site-nav__eyebrow { align-self: end; color: rgba(255, 253, 247, .54); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.site-nav__links { display: grid; align-content: center; }
.site-nav__links > a {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	align-items: end;
	gap: .65rem;
	padding-block: .48rem;
	border-bottom: .0625rem solid rgba(255, 253, 247, .14);
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 7vw, 2.35rem);
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: .82;
	text-transform: uppercase;
}
.site-nav__links > a > span { align-self: center; color: var(--accent); font-family: var(--font-body); font-size: .58rem; font-weight: 700; letter-spacing: .08em; }
.site-nav__footer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; padding-top: 1rem; border-top: .0625rem solid rgba(255, 253, 247, .18); }
.site-nav__footer > div { min-width: 0; }
.site-nav__footer small { display: block; margin-bottom: .3rem; color: rgba(255, 253, 247, .48); font-size: .56rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.site-nav__footer a { display: block; overflow: hidden; font-size: clamp(.68rem, 3vw, .8rem); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

.site-header__actions { display: flex; align-items: center; gap: .75rem; }
.header-contact, .header-cta { display: none; }

.menu-toggle {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: auto;
	min-width: 5rem;
	height: 2.75rem;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: 0 .8rem 0 .95rem;
	border: .0625rem solid currentColor;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease, transform .3s var(--ease-out);
}

.menu-toggle::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-sweep); }
.menu-toggle__label { font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle__icon { display: grid; width: 1.05rem; gap: .35rem; }
.menu-toggle__icon i {
	display: block;
	width: 1.05rem;
	height: .0625rem;
	background: currentColor;
	transition: transform .3s var(--ease-out), width .3s var(--ease-out);
}
.menu-toggle:hover::before { transform: scaleX(1); }
.menu-toggle:hover { color: var(--ink); border-color: var(--accent); transform: translateY(-.1rem); }
.menu-toggle:hover .menu-toggle__icon i:first-child { width: .7rem; }
.menu-open .menu-toggle { color: var(--ink); border-color: var(--accent); background: var(--accent); }
.menu-open .menu-toggle:hover .menu-toggle__icon i:first-child { width: 1.05rem; }

.menu-open .menu-toggle__icon i:first-child { transform: translateY(.205rem) rotate(45deg); }
.menu-open .menu-toggle__icon i:last-child { transform: translateY(-.205rem) rotate(-45deg); }
.menu-open .site-header { position: fixed; color: var(--white); }
.menu-open .site-header.is-scrolled {
	background: var(--ink);
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.menu-open .site-nav { min-height: 100dvh; }

.hero {
	position: relative;
	display: grid;
	min-height: max(43rem, 100svh);
	align-items: end;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.hero__media, .hero__media img, .hero__veil {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__media img { object-fit: cover; object-position: 63% center; animation: hero-breathe 16s var(--ease-out) both; }
.hero__veil {
	background:
		linear-gradient(180deg, rgba(15, 16, 12, .42) 0%, rgba(15, 16, 12, .08) 25%, rgba(15, 16, 12, .84) 100%),
		linear-gradient(90deg, rgba(15, 16, 12, .76) 0%, rgba(15, 16, 12, .08) 85%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	padding-top: calc(var(--header-height) + 5rem);
	padding-bottom: 10.25rem;
}

.hero__content { width: min(58rem, calc(100vw - (var(--gutter) * 2))); min-width: 0; max-width: 100%; }
.hero h1 {
	margin-top: 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(2.35rem, 7vw, 4.25rem);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: .77;
	text-transform: uppercase;
}
.hero h1 span { display: block; margin-top: .3rem; color: var(--accent); font-size: .78em; line-height: 1.05; }
.hero__lead { max-width: 37rem; margin-top: 1.6rem; font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255, 253, 247, .8); }
.hero__actions { display: flex; width: 100%; max-width: 100%; flex-direction: column; align-items: stretch; gap: .75rem; margin-top: 2rem; }
.hero__actions > * { min-width: 0; max-width: 100%; }

.hero__facts {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	border-top: .0625rem solid rgba(255, 253, 247, .2);
	background: linear-gradient(90deg, rgba(12, 13, 10, .88), rgba(20, 22, 16, .74));
	-webkit-backdrop-filter: blur(.6rem);
	backdrop-filter: blur(.6rem);
}
.hero__facts-inner { display: grid; grid-template-columns: 1fr; margin: 0; padding: 0; list-style: none; }
.hero__facts li {
	position: relative;
	display: flex;
	min-height: 2.75rem;
	align-items: center;
	gap: .65rem;
	padding-inline: .25rem;
	border-bottom: .0625rem solid rgba(255, 253, 247, .12);
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	transition: background-color .35s ease, color .35s ease;
}
.hero__facts li:nth-child(n+3) { display: flex; }
.hero__facts li span { width: .35rem; height: .35rem; flex: 0 0 .35rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 .25rem rgba(221, 91, 42, .15); animation: fact-pulse 2.6s ease-in-out infinite; }
.hero__facts li:nth-child(2) span { animation-delay: .35s; }
.hero__facts li:nth-child(3) span { animation-delay: .7s; }

.section { padding-block: var(--section-space); }

.service-deepdives { background: var(--ink); color: var(--white); }
.service-deepdives .shell { display: grid; gap: 1px; background: rgba(255, 253, 247, .18); }
.deepdive { display: grid; gap: 2.25rem; padding: clamp(2rem, 5vw, 4rem); background: var(--ink); }
.deepdive--paper { background: var(--paper); color: var(--ink); }
.deepdive header { max-width: 48rem; }
.deepdive h2 { margin-top: 1rem; font-size: clamp(1.85rem, 3.8vw, 3rem); font-weight: 600; letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.deepdive header > p:last-child { margin-top: 1rem; max-width: 42rem; color: rgba(255, 253, 247, .72); }
.deepdive--paper header > p:last-child { color: rgba(23, 24, 19, .72); }
.deepdive__grid { display: grid; gap: 1.5rem; }
.deepdive__grid > div { padding-top: 1.25rem; border-top: .0625rem solid rgba(255, 253, 247, .24); }
.deepdive--paper .deepdive__grid > div { border-top-color: var(--line); }
.deepdive h3 { color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.deepdive ul { display: grid; gap: .7rem; margin-top: 1rem; list-style: none; }
.deepdive li { color: rgba(255, 253, 247, .8); font-size: .88rem; }
.deepdive__risk-list li { position: relative; min-height: 2.15rem; padding: .1rem 0 .1rem 2.75rem; }
.deepdive__risk-list li::before { content: ""; position: absolute; top: .1rem; left: 0; width: 1.55rem; height: 1.55rem; border: .1rem solid var(--accent); border-radius: 50%; }
.deepdive__risk-list li::after { content: ""; position: absolute; top: .83rem; left: .45rem; width: .65rem; height: .1rem; background: var(--accent); box-shadow: .27rem -.27rem 0 -.01rem var(--accent); transform: rotate(-45deg); }
.deepdive--paper li { color: rgba(23, 24, 19, .76); }
.deepdive__grid p { margin-top: 1rem; color: rgba(255, 253, 247, .78); }
.deepdive--paper .deepdive__grid p { color: rgba(23, 24, 19, .76); }
.deepdive blockquote { margin: 1.25rem 0; padding-left: 1rem; border-left: .18rem solid var(--accent); color: rgba(255, 253, 247, .68); font-size: .86rem; }
.deepdive--paper blockquote { color: rgba(23, 24, 19, .66); }

.section-heading { margin-bottom: clamp(2.75rem, 6vw, 5rem); }
.section-heading h2, .manifesto h2, .process h2, .contact-band h2, .page-hero h1 {
	margin-top: 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5.5vw, 3.6rem);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: .8;
	text-transform: uppercase;
}
.section-heading h2 span, .manifesto h2 span { display: block; }
.section-heading > p, .section-heading__action > p { max-width: 33rem; margin-top: 1.5rem; color: rgba(23, 24, 19, .68); }

.service-grid { display: grid; gap: 1px; background: var(--line); border: .0625rem solid var(--line); }
.service-card { background: var(--paper); transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-deep); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .8s var(--ease-out), filter .6s ease; }
.service-card__number {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-content: center;
	border-radius: 50%;
	background: var(--paper);
	font-size: .68rem;
	font-weight: 700;
	transition: background-color .4s ease, color .4s ease, transform .45s var(--ease-out);
}
.service-card__body {
	padding: 1.25rem;
	background-color: var(--paper);
	background-image: linear-gradient(90deg, var(--paper-deep) 0 100%);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 0 100%;
	transition: background-size .7s var(--ease-sweep);
}
.service-card__audience { color: var(--accent-dark); font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.service-card h3 {
	margin-top: .8rem;
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .88;
	text-transform: uppercase;
}
.service-card__body > p:not(.service-card__audience) { margin-top: 1.2rem; color: rgba(23, 24, 19, .66); font-size: .9rem; }
.service-card ul { display: grid; gap: .55rem; margin-top: 1.4rem; list-style: none; }
.service-card li { display: flex; align-items: center; gap: .65rem; font-size: .78rem; font-weight: 600; }
.service-card li::before { content: ""; width: .35rem; height: .35rem; flex: 0 0 auto; background: var(--accent); transition: transform .35s var(--ease-out); }
.service-card .arrow-link { margin-top: 1.25rem; }

.manifesto { overflow: hidden; background: var(--ink); color: var(--white); }
.manifesto__grid { display: grid; gap: 3rem; }
.manifesto h2 { color: var(--paper); }
.manifesto h2 span { color: var(--accent); }
.manifesto__copy > p { max-width: 37rem; font-size: clamp(1.15rem, 3vw, 1.55rem); line-height: 1.55; color: rgba(255, 253, 247, .76); }
.manifesto__traits { display: grid; margin-top: 3rem; border-top: .0625rem solid var(--line-light); }
.manifesto__traits > div { display: grid; grid-template-columns: 2.5rem 1fr; gap: .25rem .75rem; padding-block: 1.2rem; border-bottom: .0625rem solid var(--line-light); background-image: linear-gradient(90deg, rgba(221, 91, 42, .18) 0 100%); background-repeat: no-repeat; background-size: 0 100%; transition: background-size .6s var(--ease-sweep), padding-inline .45s var(--ease-out); }
.manifesto__traits span { grid-row: 1 / span 2; color: var(--accent); font-size: .68rem; font-weight: 700; }
.manifesto__traits strong { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.manifesto__traits small { color: rgba(255, 253, 247, .55); }

.proof { background: var(--paper); }
.proof-grid { display: grid; margin-top: 2.5rem; border-top: .0625rem solid var(--line); }
.proof-grid > div { display: grid; grid-template-rows: minmax(3.5rem, auto) minmax(2.5rem, auto); gap: .5rem; min-height: 9.5rem; align-content: center; padding: 1.25rem 0; border-bottom: .0625rem solid var(--line); }
.proof-grid strong { align-self: end; color: var(--accent-dark); font-family: var(--font-display); font-size: clamp(1.65rem, 3vw, 2.4rem); font-variant-numeric: tabular-nums; font-weight: 600; letter-spacing: -.04em; line-height: .95; text-transform: uppercase; }
.proof-grid span { align-self: start; max-width: 13rem; font-size: .68rem; font-weight: 700; letter-spacing: .045em; line-height: 1.35; text-transform: uppercase; }

.scenarios { background: var(--paper-deep); }
.section-heading__action .arrow-link { max-width: 15rem; margin-top: 1rem; }
.scenario-grid { display: grid; gap: 1.25rem; }
.scenario { position: relative; min-height: 26rem; overflow: hidden; background: var(--ink); color: var(--white); }
.scenario > a { display: block; width: 100%; height: 100%; }
.scenario > a:focus-visible { outline-offset: -.25rem; }
.scenario img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .85s var(--ease-out), filter .6s ease; }
.scenario::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 32%, rgba(11, 12, 9, .86) 100%); transition: background-color .5s ease; }
.scenario::before { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; left: 0; width: .35rem; pointer-events: none; background: var(--accent); transform: scaleY(0); transform-origin: bottom center; transition: transform .55s var(--ease-sweep); }
.scenario__caption { position: absolute; z-index: 2; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; transition: transform .5s var(--ease-out); }
.scenario__caption p { color: var(--accent); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.scenario__caption h3 { max-width: 30rem; margin-top: .5rem; font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.85rem); font-weight: 600; line-height: 1.05; text-transform: uppercase; }
.scenario__caption span { display: block; margin-top: .75rem; color: rgba(255, 253, 247, .68); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; transition: color .35s ease; }
.scenario-disclaimer { margin-top: 1rem; color: rgba(23, 24, 19, .72); font-size: .68rem; }

.process { overflow: clip; }
.process__grid { display: grid; gap: 3rem; }
.process__heading > p:last-child { max-width: 29rem; margin-top: 1.5rem; color: rgba(23, 24, 19, .65); }
.process-list { list-style: none; border-top: .0625rem solid var(--line); }
.process-list li { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; padding-block: 1.5rem; border-bottom: .0625rem solid var(--line); background-image: linear-gradient(90deg, var(--ink) 0 100%); background-repeat: no-repeat; background-position: left center; background-size: 0 100%; transition: background-size .65s var(--ease-sweep), color .35s ease, padding-inline .45s var(--ease-out); }
.process-list li > span { padding-top: .28rem; color: var(--accent-dark); font-size: .68rem; font-weight: 700; transition: color .35s ease, transform .4s var(--ease-out); }
.process-list h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: .95; text-transform: uppercase; }
.process-list p { margin-top: .55rem; color: rgba(23, 24, 19, .62); font-size: .86rem; transition: color .35s ease; }

.contact-band { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--accent); color: var(--white); }
.contact-band__grid { display: grid; gap: 2.5rem; }
.contact-band h2 { max-width: 52rem; }
.contact-band__action > p { max-width: 30rem; color: var(--ink); }
.contact-band__action .button { width: 100%; margin-top: 1.5rem; }
.contact-band__phone { display: block; width: max-content; margin-top: 1.5rem; border-bottom: .0625rem solid rgba(255,255,255,.5); font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; line-height: 1; transition: color .3s ease, letter-spacing .4s var(--ease-out); }

.site-footer { padding-top: 4rem; background: var(--ink); color: var(--white); }
.brand--footer { color: var(--white); }
.site-footer__top { display: grid; gap: 2rem; padding-bottom: 3rem; border-bottom: .0625rem solid var(--line-light); }
.site-footer__statement { max-width: 36rem; font-family: var(--font-display); font-size: clamp(1.45rem, 3.5vw, 2.3rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.1; text-transform: uppercase; }
.site-footer__grid { display: grid; gap: 2.5rem; padding-block: 3rem; }
.footer-label { margin-bottom: .8rem; color: rgba(255, 253, 247, .68); font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-contact { display: block; width: max-content; font-family: var(--font-display); font-size: clamp(1.35rem, 3.2vw, 2rem); font-weight: 600; line-height: 1.15; }
.footer-contact--mail { margin-top: .75rem; font-family: var(--font-body); font-size: .85rem; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-nav .footer-label { margin-bottom: .25rem; }
.footer-nav a { position: relative; font-size: .85rem; }
.footer-nav a::after { content: ""; position: absolute; right: 0; bottom: -.15rem; left: 0; height: .0625rem; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-sweep); }
.site-footer__location p:last-child { max-width: 17rem; color: rgba(255, 253, 247, .75); font-size: .85rem; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.4rem; border-top: .0625rem solid var(--line-light); color: rgba(255, 253, 247, .68); font-size: .65rem; text-transform: uppercase; }
.site-footer__social p:last-child { max-width: 15rem; color: rgba(255, 253, 247, .75); font-size: .82rem; }
.footer-question { max-width: 28rem; }
.footer-question > div { display: flex; border-bottom: .0625rem solid rgba(255, 253, 247, .42); }
.footer-question input { width: 100%; min-width: 0; padding: .65rem 0; border: 0; background: transparent; color: var(--white); outline: 0; }
.footer-question input::placeholder { color: rgba(255, 253, 247, .52); }
.footer-question button { flex: 0 0 auto; border: 0; background: transparent; color: var(--accent); cursor: pointer; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer-social-links, .contact-social-links { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.footer-social-links a, .contact-social-links a { border-bottom: .0625rem solid currentColor; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; transition: color .25s ease, transform .25s var(--ease-out); }
.footer-social-links a:hover { color: var(--accent); transform: translateY(-.12rem); }
.contact-social-links { margin-top: .75rem; }
.contact-map { overflow: hidden; margin-top: .75rem; aspect-ratio: 16 / 9; background: var(--paper-deep); }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: saturate(.55) contrast(.95); }
.form-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin-top: .45rem; }
.form-checks label { display: flex; align-items: center; gap: .45rem; font-size: .78rem; }
.form-checks input { width: 1rem; height: 1rem; accent-color: var(--accent); }

.page-hero { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--ink); color: var(--white); }
.page-hero__copy { max-width: 37rem; margin-top: 1.5rem; color: rgba(255, 253, 247, .68); }
.page-content { min-height: 20rem; padding-block: 0 clamp(3.5rem, 8vw, 7rem); }
.page-content--listing { display: grid; gap: 1px; background: var(--line); padding-inline: var(--gutter); }
.case-filters { display: flex; flex-wrap: wrap; gap: .5rem; padding-block: 1.5rem; background: var(--paper); }
.case-filters button { min-height: 2.5rem; padding: .5rem .8rem; border: .0625rem solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background-color .3s ease, color .3s ease, transform .3s var(--ease-out); }
.case-filters button.is-active { border-color: var(--accent); background: var(--accent); color: var(--ink); }
.case-card.is-filtered-out { display: none; }

.info, .berrors { margin-bottom: 1.5rem; padding: 1rem; border-left: .25rem solid var(--accent); background: var(--white); }
.navigation { width: 100%; padding: 1.5rem; background: var(--paper); }

.case-card { display: grid; background: var(--paper); transition: box-shadow .45s var(--ease-out), transform .45s var(--ease-out); }
.case-card__media { min-height: 21rem; overflow: hidden; background: var(--paper-deep); }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .8s var(--ease-out), filter .5s ease; }
.case-card__body { display: flex; flex-direction: column; align-items: flex-start; padding: 1.5rem; background-image: linear-gradient(90deg, var(--paper-deep) 0 100%); background-repeat: no-repeat; background-size: 0 100%; transition: background-size .7s var(--ease-sweep); }
.case-card__meta { color: var(--accent-dark); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.case-card h2 { margin-top: .75rem; font-family: var(--font-display); font-size: clamp(1.65rem, 4vw, 2.65rem); font-weight: 600; line-height: 1; text-transform: uppercase; }
.case-card__summary { margin-top: 1rem; color: rgba(23, 24, 19, .64); font-size: .9rem; }
.case-card .arrow-link { margin-top: auto; padding-top: 1.5rem; }

.case-detail { padding-bottom: calc(var(--section-space) * .5); }
.case-detail__hero { padding-block: clamp(4rem, 8vw, 7rem); background: var(--ink); color: var(--white); }
.case-detail__eyebrow { color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.case-detail h1 { max-width: 58rem; margin-top: 1rem; font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 600; letter-spacing: -.04em; line-height: .95; text-transform: uppercase; }
.case-detail__meta { margin-top: 1.25rem; color: rgba(255, 253, 247, .58); font-size: .75rem; text-transform: uppercase; }
.case-detail__cover { margin-top: calc(var(--section-space) * -.38); }
.case-detail__cover img { width: 100%; max-height: 50rem; object-fit: cover; box-shadow: var(--shadow); }
.case-gallery { margin-top: 4rem; }
.case-gallery__heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.case-gallery h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; line-height: 1; text-transform: uppercase; }
.case-gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.case-gallery__grid figure { min-height: 10rem; overflow: hidden; background: var(--paper-deep); }
.case-gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .5s ease; }
.case-detail__body { display: grid; gap: 2rem; max-width: 76rem; margin-top: 3rem; }
.case-detail__story h2 { margin-bottom: .85rem; color: var(--accent-dark); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.case-detail__intro { font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.2; text-transform: uppercase; }
.case-detail__text { color: rgba(23, 24, 19, .72); }
.case-detail__text > * + * { margin-top: 1rem; }
.case-detail__text img { width: 100%; height: auto; margin-block: 2rem; }
.case-detail__results { display: grid; gap: 1px; margin-top: 3rem; background: var(--line); border: .0625rem solid var(--line); }
.case-detail__results div { padding: 1.5rem; background-color: var(--paper); background-image: linear-gradient(90deg, var(--paper-deep) 0 100%); background-repeat: no-repeat; background-size: 0 100%; transition: background-size .55s var(--ease-sweep), transform .4s var(--ease-out); }
.case-detail__results span { display: block; color: var(--accent-dark); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.case-detail__results strong { display: block; margin-top: .5rem; font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; line-height: 1; text-transform: uppercase; }
.case-detail__back { display: inline-flex; margin-top: 2rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; transition: color .3s ease, transform .35s var(--ease-out); }

.static-page { max-width: 60rem; margin-inline: auto; }
.static-page h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 600; line-height: .95; text-transform: uppercase; }
.static-page__body { margin-top: 2rem; color: rgba(23, 24, 19, .75); }
.static-page__body > * + * { margin-top: 1rem; }

.contact-page { display: grid; gap: 3rem; }
.contact-page__intro h1 { margin-top: 1rem; font-family: var(--font-display); font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 600; line-height: .95; text-transform: uppercase; }
.contact-page__intro > p:last-of-type { max-width: 34rem; margin-top: 1.5rem; color: rgba(23, 24, 19, .68); }
.contact-page__details { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-page__details a { width: max-content; border-bottom: .0625rem solid var(--line); font-family: var(--font-display); font-size: 2rem; line-height: 1.1; transition: color .3s ease, transform .35s var(--ease-out); }
.contact-page__info { display: grid; gap: 1rem; margin-top: 2.5rem; border-top: .0625rem solid var(--line); }
.contact-page__info > div { padding-block: 1rem; border-bottom: .0625rem solid var(--line); }
.contact-page__info h2 { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-page__info p { margin-top: .4rem; color: rgba(23, 24, 19, .68); font-size: .82rem; }
.feedback-panel { padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); box-shadow: var(--shadow); transition: transform .5s var(--ease-out), box-shadow .5s ease; }
.feedback-panel h2 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; line-height: 1; text-transform: uppercase; }
.form-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.form-field { display: grid; gap: .45rem; }
.form-field label { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
	width: 100%;
	min-height: 3.25rem;
	padding: .8rem 0;
	border: 0;
	border-bottom: .0625rem solid var(--line);
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	transition: border-color .3s ease, background-color .3s ease, padding-inline .3s var(--ease-out);
}
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-field select { cursor: pointer; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--accent); outline: .1875rem solid var(--accent); outline-offset: .2rem; }
.form-field--full { grid-column: 1 / -1; }
.form-note { margin-top: 1rem; color: rgba(23, 24, 19, .72); font-size: .68rem; }
.form-film-note { margin-top: 1.25rem; padding: 1rem; border-left: .2rem solid var(--accent); background: var(--paper-deep); color: rgba(23, 24, 19, .76); font-size: .76rem; }
.feedback-panel .button { width: 100%; margin-top: 1.5rem; cursor: pointer; }
.captcha-box { margin-top: 1.25rem; }
.captcha-box img { max-width: 10rem; }

.utility-page { max-width: 58rem; margin-inline: auto; }
.utility-page__header h1 { margin-top: 1rem; font-family: var(--font-display); font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 600; line-height: .95; text-transform: uppercase; }
.utility-page__header > p:last-child { max-width: 36rem; margin-top: 1.25rem; color: rgba(23, 24, 19, .72); }
.utility-page__panel { margin-top: 2rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); box-shadow: var(--shadow); }
.utility-page__panel input, .utility-page__panel select { width: 100%; min-height: 3.25rem; border: 0; border-bottom: .0625rem solid var(--line); background: transparent; }
.utility-page__panel .button { margin-top: 1.5rem; }
.search-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.search-controls > input { flex: 1 1 18rem; }
.search-controls .button { margin-top: 0; }
.search-controls .text-link { width: auto; border: 0; background: transparent; cursor: pointer; }
.search-extended { display: grid; gap: 1.25rem; }
.search-message { margin-top: 1.5rem; }
.search-result { padding: 2rem; background: var(--paper); }
.search-result h2 { margin-top: .75rem; font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; line-height: 1.1; text-transform: uppercase; }
.search-result > div { margin-top: 1rem; color: rgba(23, 24, 19, .72); }

/* One calm typographic voice: Golos Text replaces the former condensed display face. */
.brand__type strong { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; letter-spacing: .015em; }
.site-nav__links > a { font-family: var(--font-body); font-size: clamp(1.55rem, 7vw, 2.35rem); font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.hero h1 { max-width: 58rem; font-family: var(--font-body); font-size: clamp(2rem, 4.8vw, 3.35rem); font-weight: 600; letter-spacing: -.055em; line-height: 1; }
.section-heading h2 { font-family: var(--font-body); font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.service-card h3 { font-family: var(--font-body); font-size: 1.7rem; font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.proof-grid strong { font-family: var(--font-body); font-size: clamp(1.65rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.scenario__caption h3 { font-family: var(--font-body); font-size: clamp(1.25rem, 2.4vw, 1.85rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.process-list h3 { font-family: var(--font-body); font-size: 1.45rem; font-weight: 600; line-height: 1.05; }
.contact-band__phone { font-family: var(--font-body); font-size: 1.35rem; font-weight: 600; letter-spacing: -.03em; }
.site-footer__statement { font-family: var(--font-body); font-size: clamp(1.45rem, 3.5vw, 2.3rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.12; }
.footer-contact { font-family: var(--font-body); font-size: clamp(1.35rem, 3.2vw, 2rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.15; }
.case-card h2 { font-family: var(--font-body); font-size: clamp(1.65rem, 4vw, 2.65rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.04; }
.case-detail h1 { font-family: var(--font-body); font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 600; letter-spacing: -.06em; line-height: .98; }
.case-gallery h2 { font-family: var(--font-body); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.case-detail__intro { font-family: var(--font-body); font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.25; }
.case-detail__results strong { font-family: var(--font-body); font-size: 1.7rem; font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.static-page h1, .contact-page__intro h1, .utility-page__header h1 { font-family: var(--font-body); font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 600; letter-spacing: -.06em; line-height: .98; }
.contact-page__details a { font-family: var(--font-body); font-size: 1.45rem; font-weight: 600; letter-spacing: -.035em; }
.feedback-panel h2 { font-family: var(--font-body); font-size: 2rem; font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.search-result h2 { font-family: var(--font-body); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; }

/* DLE banner content: contacts, social links and proof points remain admin-editable. */
.lb-contact-identity { display: grid; gap: .45rem; }
.lb-contact-identity a { display: block; }
.lb-contact-identity__phone, .lb-contact-identity__mail { font-family: var(--font-body); font-weight: 600; letter-spacing: -.035em; transition: color .2s ease, transform .2s ease; }
.header-contact .lb-contact-identity__phone { font-size: .92rem; }
.header-contact .lb-contact-identity__mail { display: none; }
.site-nav__footer .lb-contact-identity { gap: .75rem; }
.site-nav__footer .lb-contact-identity a { font-size: 1rem; }
.site-footer .lb-contact-identity a { font-size: clamp(1.35rem, 3.2vw, 2rem); line-height: 1.15; }
.contact-band__identity { margin-top: 1.1rem; }
.contact-band__identity .lb-contact-identity__mail { display: none; }
.contact-band__identity .lb-contact-identity__phone { font-size: 1.35rem; }
.footer-social-links .lb-social-links { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; }
.contact-page__details .lb-contact-identity { gap: .5rem; }
.contact-page__info > .lb-contact-info { display: grid; gap: 0; padding: 0; border-bottom: 0; }
.contact-page__info > .lb-contact-info > div { padding-block: 1rem; border-bottom: .0625rem solid var(--line); }
.lb-contact-info h2 { margin-bottom: .75rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.lb-contact-info p { color: var(--ink-soft); }
.lb-contact-info .contact-social-links { display: flex; flex-wrap: wrap; gap: .75rem 1.15rem; }
.form-field--hidden { position: absolute; inline-size: .0625rem; block-size: .0625rem; overflow: hidden; clip-path: inset(50%); }
.form-status { margin-top: 1.2rem; padding: .85rem 1rem; border-left: .25rem solid var(--line); background: var(--paper); font-size: .9rem; }
.form-status.is-success { border-color: #4d7a4e; }
.form-status.is-error { border-color: var(--accent); }
.feedback-panel .button[disabled] { cursor: wait; opacity: .72; transform: none; }

/* Static service pages are editable in DLE > Static pages; this is only their stable layout. */
.service-page { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(3rem, 7vw, 6rem); }
.service-page__lead { max-width: 48rem; font-size: clamp(1.2rem, 2.25vw, 1.75rem); line-height: 1.35; }
.service-page__section { padding-top: clamp(2.5rem, 6vw, 5rem); border-top: .0625rem solid var(--line); }
.service-page__section > h2 { max-width: 48rem; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.045em; }
.service-page__section > p { max-width: 48rem; margin-top: 1.25rem; }
.service-page__pain-grid, .service-page__menu-grid, .service-page__trust-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.service-page__pain-grid article, .service-page__menu-grid article, .service-page__trust-grid article { padding: 1.25rem; border: .0625rem solid var(--line); background: var(--white); }
.service-page__pain-grid h3, .service-page__menu-grid h3, .service-page__trust-grid h3 { font-size: 1.05rem; line-height: 1.2; }
.service-page__pain-grid p, .service-page__menu-grid p, .service-page__trust-grid p { margin-top: .65rem; font-size: .94rem; }
.service-page__gallery-placeholder { margin-top: 1.75rem; padding: clamp(2rem, 5vw, 4rem); border: .0625rem dashed var(--line); background: var(--paper-deep); color: var(--ink-soft); text-align: center; }
.service-page__case { display: grid; gap: 1rem; margin-top: 2rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--ink); color: var(--white); }
.service-page__case .kicker { color: rgba(255,253,247,.72); }
.service-page__case h3 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); line-height: 1.05; }
.service-page__case .button { justify-self: start; margin-top: .5rem; }
.service-page__cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; padding: clamp(1.5rem, 4vw, 3rem); background: var(--accent); }
.service-page__cta h2 { max-width: 36rem; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; }
.service-page__cta p { max-width: 42rem; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s var(--ease-out) var(--reveal-delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes hero-breathe {
	from { transform: scale(1.035); }
	to { transform: scale(1); }
}

@keyframes fact-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(221, 91, 42, 0); transform: scale(1); }
	45% { box-shadow: 0 0 0 .3rem rgba(221, 91, 42, .16); transform: scale(1.14); }
}

@media (hover: hover) and (pointer: fine) {
	.kicker:hover::before, [data-reveal]:hover .kicker::before { transform: scaleX(1.65); }
	.service-card:hover { z-index: 1; transform: translateY(-.45rem); box-shadow: var(--shadow); }
	.service-card:hover .service-card__media img { transform: scale(1.065); filter: saturate(1.08); }
	.service-card:hover .service-card__body { background-size: 100% 100%; }
	.service-card:hover .service-card__number { background: var(--accent); color: var(--ink); transform: rotate(-8deg) scale(1.08); }
	.service-card:hover li::before { transform: rotate(45deg); }
	.manifesto__traits > div:hover { padding-inline: 1rem; background-size: 100% 100%; }
	.scenario:hover img { transform: scale(1.07); filter: saturate(1.08); }
	.scenario:hover::before { transform: scaleY(1); }
	.scenario:hover .scenario__caption { transform: translate(.65rem, -.55rem); }
	.scenario:hover .scenario__caption span { color: var(--white); }
	.process-list li:hover { padding-inline: 1.25rem; background-size: 100% 100%; color: var(--white); }
	.process-list li:hover > span { color: var(--accent); transform: translateX(.25rem); }
	.process-list li:hover p { color: rgba(255, 253, 247, .72); }
	.contact-band__phone:hover { color: var(--ink); letter-spacing: .035em; }
	.footer-nav a:hover::after { transform: scaleX(1); }
	.footer-contact:hover { color: var(--accent); }
	.case-card:hover { z-index: 1; transform: translateY(-.3rem); box-shadow: var(--shadow); }
	.case-card:hover .case-card__media img { transform: scale(1.055); filter: saturate(1.08); }
	.case-card:hover .case-card__body { background-size: 100% 100%; }
	.case-detail__results div:hover { z-index: 1; transform: translateY(-.25rem); background-size: 100% 100%; }
	.case-gallery__grid figure:hover img { transform: scale(1.05); filter: saturate(1.08); }
	.case-filters button:hover { border-color: var(--accent); transform: translateY(-.12rem); }
	.case-detail__back:hover { color: var(--accent-dark); transform: translateX(-.35rem); }
	.contact-page__details a:hover { color: var(--accent-dark); transform: translateX(.3rem); }
	.feedback-panel:hover { transform: translateY(-.25rem); box-shadow: 0 28px 80px rgba(23, 24, 19, .17); }
	.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-bottom-color: var(--accent); padding-inline: .35rem; background: rgba(231, 225, 210, .35); }
}

@media (min-width: 40rem) {
	.hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
	.hero__actions .button { min-width: 15rem; }
	.hero__facts {
		right: var(--gutter);
		bottom: 1.5rem;
		left: var(--gutter);
		border: .0625rem solid rgba(255, 253, 247, .22);
		background: linear-gradient(105deg, rgba(12, 13, 10, .92), rgba(29, 32, 24, .8));
		box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, .2);
	}
	.hero__facts-inner { width: 100%; max-width: none; padding-inline: 0; grid-template-columns: repeat(3, 1fr); }
	.hero__facts li { min-height: 5.25rem; gap: .75rem; padding: 1rem 1.25rem; border-right: .0625rem solid rgba(255, 253, 247, .15); border-bottom: 0; }
	.hero__facts li:last-child { border-right: 0; }
	.hero__facts li:nth-child(n) { display: flex; }
	.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.service-page__pain-grid, .service-page__menu-grid, .service-page__trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.service-card--film { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
	.service-card--film .service-card__media { aspect-ratio: 16 / 10; }
	.scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.scenario:nth-child(3) { grid-column: 1 / -1; }
	.contact-band__action .button { width: auto; }
	.site-footer__grid { grid-template-columns: minmax(18rem, 1.7fr) 1fr 1fr; }
	.proof-grid { grid-template-columns: repeat(5, 1fr); }
	.proof-grid > div { grid-template-rows: 4.85rem minmax(2.5rem, auto); min-height: 10.5rem; padding: 1.25rem; border-right: .0625rem solid var(--line); border-bottom: 0; }
	.proof-grid > div:last-child { border-right: 0; }
	.case-card { grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); min-height: 29rem; }
	.case-card:nth-of-type(even) .case-card__media { order: 2; }
	.case-card__body { padding: clamp(2rem, 5vw, 4rem); }
	.case-detail__results { grid-template-columns: repeat(3, 1fr); }
	.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.deepdive__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; }
	.case-gallery__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.case-gallery__grid figure { min-height: 17rem; }
	.service-page__pain-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (hover: hover) and (pointer: fine) {
	.hero__facts li:hover { background: linear-gradient(90deg, rgba(221, 91, 42, .2), transparent 78%); color: var(--white); }
}

@media (min-width: 64rem) {
	:root { --header-height: 5.75rem; }
	.site-header__inner { border-bottom: .0625rem solid rgba(255, 253, 247, .25); }
	.site-header.is-scrolled .site-header__inner { border-bottom-color: transparent; }
	.site-nav {
		position: static;
		z-index: auto;
		visibility: visible;
		display: block;
		min-height: 0;
		padding: 0;
		background: transparent;
		color: inherit;
		opacity: 1;
		overflow: visible;
		clip-path: none;
	}
	.site-nav__ambient, .site-nav__eyebrow, .site-nav__footer { display: none; }
	.site-nav__links { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2vw, 2rem); }
	.site-nav__links > a { position: relative; display: block; padding: 0; border: 0; font-family: var(--font-body); font-size: .69rem; font-weight: 700; letter-spacing: .045em; line-height: 1.2; text-transform: uppercase; }
	.site-nav__links > a > span { display: none; }
	.site-nav__links > a::after { content: ""; position: absolute; right: 0; bottom: -.55rem; left: 0; height: .0625rem; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
	.site-nav__links > a:hover::after { transform: scaleX(1); transform-origin: left; }
	.menu-toggle { display: none; }
	.header-contact { display: block; font-size: .69rem; font-weight: 700; }
	.header-cta { display: inline-flex; }
	.hero__media img { object-position: center; }
	.hero__veil { background: linear-gradient(90deg, rgba(15, 16, 12, .78) 0%, rgba(15, 16, 12, .22) 53%, rgba(15, 16, 12, .08) 100%), linear-gradient(180deg, rgba(15, 16, 12, .35), rgba(15, 16, 12, .48)); }
	.hero__inner { grid-template-columns: minmax(0, 1fr); align-items: end; padding-bottom: 7.5rem; }
	.hero h1 { font-size: clamp(2.45rem, 3.45vw, 3.3rem); }
	.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); align-items: end; gap: 4rem; }
	.section-heading--split > p, .section-heading__action > p { margin-top: 0; }
	.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.service-card--film { grid-column: auto; display: block; }
	.service-card__media, .service-card--film .service-card__media { aspect-ratio: 16 / 10; }
	.service-card__body { padding: 1.35rem; }
	.manifesto__grid { grid-template-columns: minmax(0, 1.1fr) minmax(25rem, .9fr); align-items: flex-start; gap: 6rem; }
	.scenario-grid { grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, minmax(19rem, 1fr)); gap: 1.5rem; }
	.scenario { min-height: 0; }
	.scenario:first-child { grid-row: 1 / span 2; }
	.scenario:nth-child(3) { grid-column: 2; }
	.process__grid { grid-template-columns: minmax(19rem, .8fr) minmax(0, 1.2fr); gap: 8rem; }
	.process__heading { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; }
	.process-list li { grid-template-columns: 3rem 14rem 1fr; align-items: start; }
	.process-list li > div { display: contents; }
	.process-list p { margin-top: 0; }
	.contact-band__grid { grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr); align-items: end; gap: 5rem; }
	.site-footer__top { grid-template-columns: 1fr 1.5fr; align-items: start; }
	.case-detail__body { grid-template-columns: minmax(17rem, .7fr) minmax(0, 1.3fr); gap: 6rem; }
	.contact-page { grid-template-columns: minmax(20rem, .85fr) minmax(0, 1.15fr); align-items: start; gap: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
	.js [data-reveal] { opacity: 1; transform: none; }
}

/*
 * Little Barista v2 — a dark, warm, photo-led visual system.
 * The DLE markup and all banner/static-page ownership stay unchanged.
 */
@font-face {
	font-family: "Alumni Sans";
	src: url("../fonts/alumni-sans-cyrillic.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Alumni Sans";
	src: url("../fonts/alumni-sans-latin.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF;
}

:root {
	--ink: #12110f;
	--ink-soft: #211d18;
	--paper: #f4eee2;
	--paper-deep: #e6dac8;
	--white: #fffaf0;
	--accent: #c9854c;
	--accent-dark: #9b5d2d;
	--sage: #c4b49d;
	--line: rgba(255, 245, 229, .16);
	--line-light: rgba(255, 245, 229, .16);
	--shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, .3);
	--font-body: "Golos Text", Arial, sans-serif;
	--font-display: "Alumni Sans", "Golos Text", Arial, sans-serif;
	--shell: 84rem;
	--gutter: clamp(1.1rem, 4vw, 3.25rem);
	--section-space: clamp(4.5rem, 9vw, 8.5rem);
	--header-height: 5rem;
}

html { background: var(--ink); }
body {
	background: var(--ink);
	color: var(--white);
	font-size: .98rem;
	line-height: 1.65;
}
body::before { z-index: 1002; height: .125rem; background: var(--accent); }
body.is-home main { overflow: hidden; }
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline-color: #edbf83; }

.shell { width: min(100%, var(--shell)); }
.kicker { color: #e7b882; font-size: .66rem; letter-spacing: .2em; }
.kicker::before { width: 2.25rem; height: .0625rem; background: currentColor; }
.kicker--light { color: #edc795; }

.button {
	min-height: 3.1rem;
	gap: 1.25rem;
	padding: .84rem 1.2rem;
	border: .0625rem solid rgba(255, 250, 240, .24);
	border-radius: .45rem;
	background-color: #f4d1a1;
	color: #18130f;
	font-size: .66rem;
	letter-spacing: .14em;
	box-shadow: none;
}
.button--accent { --button-hover: #fff3dd; border-color: #e4ae70; background-color: #c9854c; color: #17110d; }
.button--paper { --button-hover: #f4d1a1; border-color: rgba(255, 250, 240, .36); background-color: transparent; color: var(--white); }
.button:not(.button--accent):not(.button--paper) { --button-hover: #f4d1a1; background-color: transparent; color: var(--white); }
.button:hover { color: #15110e; box-shadow: 0 .8rem 1.75rem rgba(0, 0, 0, .26); }
.arrow-link, .text-link { color: inherit; font-size: .66rem; letter-spacing: .13em; }
.arrow-link::after, .text-link::after { height: .0625rem; }

/* Shared shell */
.site-header {
	position: fixed;
	height: var(--header-height);
	background: rgba(18, 17, 15, .88);
	color: var(--white);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	border-bottom: .0625rem solid rgba(255, 250, 240, .12);
}
body.is-home .site-header { background: linear-gradient(180deg, rgba(10, 9, 8, .84), rgba(10, 9, 8, .24)); }
.site-header.is-scrolled, body:not(.is-home) .site-header {
	position: fixed;
	background: rgba(18, 17, 15, .96);
	color: var(--white);
	box-shadow: 0 .75rem 2.5rem rgba(0, 0, 0, .2);
}
.site-header__inner { border: 0; }
.brand { gap: .55rem; }
.brand__mark { width: 2.3rem; color: #fff7e7; }
.brand__mark .brand__window { fill: var(--accent); }
.brand__type strong { color: #fff8ea; font-family: var(--font-body); font-size: 1rem; letter-spacing: .045em; }
.brand__type small { color: #cfbea6; font-size: .45rem; letter-spacing: .16em; }
.site-header__actions { gap: .9rem; }
.header-contact .lb-contact-identity__phone { color: #f4dfc2; font-size: .83rem; font-weight: 500; letter-spacing: .01em; }
.header-cta { min-height: 2.55rem; border-color: #d9a266; border-radius: .32rem; background: #c9854c; color: #16110d; }

.site-nav { background: #15120f; }
.site-nav__ambient::before { background: radial-gradient(circle at 85% 18%, rgba(201, 133, 76, .26), transparent 32%), linear-gradient(130deg, #21170f, #12110f 60%); }
.site-nav__links > a { font-family: var(--font-display); letter-spacing: .01em; }
.site-nav__links > a > span { color: #e8b879; }
.site-nav__footer { border-color: rgba(255, 250, 240, .16); }
.menu-toggle { border-color: rgba(255, 250, 240, .42); border-radius: .35rem; }
.menu-toggle::before { background: #d99d5d; }
.menu-toggle:hover { color: #17110d; border-color: #d99d5d; }
.menu-open .menu-toggle { border-color: #d99d5d; background: #d99d5d; }

/* Home hero */
.hero { min-height: clamp(39rem, 78vh, 51rem); background: #17130f; }
.hero__media img { filter: saturate(.78) contrast(1.04) brightness(.72); object-position: 62% center; }
.hero__veil { background: linear-gradient(180deg, rgba(7, 6, 5, .38), rgba(7, 6, 5, .1) 35%, rgba(7, 6, 5, .77) 100%), linear-gradient(90deg, rgba(7, 6, 5, .68), transparent 68%); }
.hero__inner { display: grid; min-height: clamp(39rem, 78vh, 51rem); align-items: center; padding-top: var(--header-height); padding-bottom: 7.4rem; }
.hero__content { max-width: 44rem; }
.hero h1 {
	max-width: 44rem;
	color: #fff8ed;
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 7vw, 6.35rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .86;
	text-transform: none;
}
.hero h1 span { display: block; color: hsla(48, 96%, 89%, .9); }
.hero__lead { max-width: 35rem; margin-top: 1.65rem; color: rgba(255, 247, 235, .88); font-size: clamp(.98rem, 1.45vw, 1.15rem); }
.hero__actions { margin-top: 2.1rem; }
.hero__facts {
	bottom: 0;
	border-top: .0625rem solid rgba(255, 248, 235, .2);
	background: rgba(16, 13, 11, .72);
	-webkit-backdrop-filter: blur(.7rem);
	backdrop-filter: blur(.7rem);
}
.hero__facts li { min-height: 3.6rem; color: #eadbc8; font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.hero__facts li span { background: #dc9e5f; box-shadow: 0 0 0 .25rem rgba(220, 158, 95, .14); }

/* Main editorial sections */
.section { padding-block: var(--section-space); }
.directions, .scenarios { background: #15120f; color: var(--white); }
.proof, .process { background: #f4eee2; color: #1b1611; }
.service-deepdives { background: #20170f; }
.manifesto { background: radial-gradient(circle at 84% 18%, rgba(205, 139, 76, .19), transparent 26%), #0f0e0c; }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-heading h2, .manifesto h2, .process h2, .contact-band h2, .page-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 5.6rem);
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: .86;
	text-transform: none;
}
.directions .section-heading > p, .scenarios .section-heading > p, .directions .section-heading__action > p, .scenarios .section-heading__action > p { color: #d6c4af; }
.proof .section-heading > p, .process .section-heading > p { color: #675c50; }
.section-heading h2 span, .manifesto h2 span { color: #dfa463; }

.service-grid { gap: 1.1rem; border: 0; background: transparent; }
.service-card {
	position: relative;
	overflow: hidden;
	border: .0625rem solid rgba(246, 233, 214, .14);
	border-radius: 1rem;
	background: #26201a;
	box-shadow: none;
}
.service-card__media, .service-card--film .service-card__media { aspect-ratio: 4 / 3; background: #32251a; }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(11, 9, 7, .68)); pointer-events: none; }
.service-card__media img { filter: saturate(.74) contrast(1.07); }
.service-card__number { top: 1rem; left: 1rem; border: .0625rem solid rgba(255, 250, 240, .45); border-radius: 999px; background: rgba(16, 13, 11, .62); color: #f9e5c8; font-size: .62rem; }
.service-card__body { padding: 1.5rem; background: #26201a; }
.service-card__audience { color: #e4ab6e; }
.service-card h3 { color: #fff7e9; font-family: var(--font-display); font-size: clamp(2.15rem, 3vw, 2.9rem); font-weight: 600; letter-spacing: -.015em; line-height: .9; }
.service-card__body > p:not(.service-card__audience) { color: #cfc0ae; }
.service-card li { color: #eee0ce; font-weight: 500; }
.service-card li::before { background: #d8a060; border-radius: 50%; }
.service-card .arrow-link { color: #f0c48f; }

.proof { position: relative; }
.proof::before { content: ""; position: absolute; inset: 0 0 auto; height: .125rem; background: linear-gradient(90deg, transparent, #bd7a42 30%, #bd7a42 70%, transparent); opacity: .65; }
.proof-grid { gap: .75rem; margin-top: 0; border: 0; }
.proof-grid > div { min-height: 11rem; padding: 1.35rem; border: .0625rem solid rgba(34, 26, 18, .14); border-radius: .8rem; background: #fff9ef; box-shadow: 0 .9rem 2.5rem rgba(61, 43, 23, .07); }
.proof-grid strong { color: #a45e2b; font-family: var(--font-display); font-size: clamp(2.45rem, 4vw, 4.2rem); font-weight: 600; letter-spacing: -.02em; line-height: .82; text-transform: none; }
.proof-grid span { color: #5c5044; font-size: .67rem; letter-spacing: .1em; }

.process__heading > p:last-child { color: #675c50; }
.process-list { border-top-color: rgba(31, 23, 16, .18); }
.process-list li { grid-template-columns: 2.35rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom-color: rgba(31, 23, 16, .18); background-image: linear-gradient(90deg, #241b14 0 100%); }
.process-list li > span { color: #ab6934; }
.process-list h3 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; letter-spacing: -.01em; line-height: .85; text-transform: none; }
.process-list p { color: #655a4e; }

.deepdive { padding: clamp(1.6rem, 5vw, 3.75rem); background: #20170f; }
.deepdive--paper { background: #f0e2ce; color: #1b140e; }
.deepdive h2 { color: #fff5e7; font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 4.7rem); font-weight: 600; letter-spacing: -.02em; line-height: .85; text-transform: none; }
.deepdive--paper h2 { color: #21170f; }
.deepdive header > p:last-child, .deepdive__grid p, .deepdive li { color: #d9c6ad; }
.deepdive--paper header > p:last-child, .deepdive--paper .deepdive__grid p, .deepdive--paper li { color: #695b4d; }
.deepdive__grid > div { border-top-color: rgba(255, 245, 229, .17); }
.deepdive--paper .deepdive__grid > div { border-top-color: rgba(36, 25, 15, .18); }
.deepdive h3 { color: #e1a467; }
.deepdive blockquote { border-left-color: #d89552; }

.manifesto__copy > p { color: #decdb8; font-size: clamp(1.12rem, 2.3vw, 1.55rem); }
.manifesto__traits { border-top-color: rgba(255, 245, 229, .18); }
.manifesto__traits > div { border-bottom-color: rgba(255, 245, 229, .18); }
.manifesto__traits span { color: #e1a467; }
.manifesto__traits strong { color: #fff8ec; }
.manifesto__traits small { color: #bba994; }

.scenario-grid { gap: 1rem; }
.scenario { min-height: 22rem; border: .0625rem solid rgba(255, 245, 229, .14); border-radius: .9rem; }
.scenario::after { background: linear-gradient(180deg, rgba(11, 9, 7, .04), rgba(11, 9, 7, .92)); }
.scenario::before { width: .2rem; background: #d79554; }
.scenario__caption p { color: #e8b472; }
.scenario__caption h3 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; text-transform: none; }
.scenario__caption span { color: #eadbc7; }
.scenario-disclaimer { color: #b8a994; }

.contact-band { background: radial-gradient(circle at 80% 15%, rgba(255, 238, 206, .22), transparent 28%), linear-gradient(120deg, #a75e2e, #6e3a20); }
.contact-band h2 { color: #fff6e9; }
.contact-band__action > p { color: #2a1710; }
.contact-band__identity .lb-contact-identity__phone, .contact-band__identity .lb-contact-identity__mail { color: #fff5e8; }

/* Footer */
.site-footer { padding-top: clamp(3.5rem, 7vw, 6rem); background: #0f0e0c; color: #f9f0e3; }
.site-footer__top { padding-bottom: 2.5rem; border-bottom-color: rgba(255, 245, 229, .16); }
.site-footer__statement { color: #ead3b4; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; text-transform: none; }
.site-footer__grid { gap: 2rem; padding-block: 2.75rem; }
.footer-label { color: #c89159; font-size: .62rem; letter-spacing: .18em; }
.site-footer .lb-contact-identity a { color: #fff6e8; font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; }
.footer-nav a, .footer-social-links a { color: #dfcdb6; font-size: .82rem; }
.site-footer__location p:last-child, .site-footer__social p:last-child { color: #b6a38b; }
.footer-question input { border-color: rgba(255, 245, 229, .25); background: rgba(255, 255, 255, .04); color: #fff7e9; }
.footer-question button { background: #c9854c; color: #15100d; }
.site-footer__bottom { border-top-color: rgba(255, 245, 229, .16); color: #aa9985; }

/* Listing, case, service and contact pages */
.page-hero, .case-detail__hero { background: radial-gradient(circle at 78% 12%, rgba(197, 125, 67, .2), transparent 25%), #15120f; }
.page-hero { padding-block: clamp(6rem, 11vw, 9rem) clamp(3.5rem, 6vw, 5.5rem); }
.page-hero__copy { color: #cfbda7; }
.page-content { background: #15120f; color: #f7eddf; }
.page-content--service-static { width: 100%; max-width: none; padding-inline: 0; }
.page-content--listing { padding-top: 2rem; padding-bottom: var(--section-space); }
.case-filters { gap: .65rem; background: #15120f; }
.case-filters button { border-color: rgba(255, 245, 229, .22); border-radius: .35rem; color: #eadac6; }
.case-filters button.is-active { border-color: #d69a5b; background: #c9854c; color: #17110d; }
.case-card { overflow: hidden; border: .0625rem solid rgba(255, 245, 229, .14); border-radius: .85rem; background: #26201a; }
.case-card__media { background: #332419; }
.case-card__body { background: #26201a; }
.case-card__meta { color: #e3a869; }
.case-card h2 { color: #fff7e9; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.65rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; text-transform: none; }
.case-card__summary { color: #cbbbaa; }
.case-card .arrow-link { color: #ebbd84; }
.case-detail { background: #15120f; color: #f9eee0; padding-bottom: var(--section-space); }
.case-detail__hero { padding-top: clamp(6rem, 11vw, 9rem); }
.case-detail__eyebrow, .case-detail__results span { color: #e1a467; }
.case-detail h1, .case-gallery h2 { color: #fff7e9; font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: .85; text-transform: none; }
.case-detail__meta { color: #c9b8a2; }
.case-detail__cover img { border-radius: .85rem; box-shadow: var(--shadow); }
.case-gallery__grid { gap: .8rem; }
.case-gallery__grid figure { border-radius: .65rem; background: #2d231a; }
.case-detail__story h2 { color: #e3a869; }
.case-detail__intro { color: #fff3e3; font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; line-height: .98; text-transform: none; }
.case-detail__text { color: #d5c4af; }
.case-detail__results { gap: .75rem; border: 0; background: transparent; }
.case-detail__results div { border: .0625rem solid rgba(255, 245, 229, .16); border-radius: .6rem; background: #221b15; }
.case-detail__results strong { color: #fff5e7; font-family: var(--font-display); font-size: clamp(2.2rem, 3vw, 3.2rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; text-transform: none; }
.case-detail__back { color: #e5b378; }

.static-page, .contact-page, .utility-page { color: #f5eadb; }
.static-page h1, .contact-page__intro h1, .utility-page__header h1 { color: #fff6e8; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.3rem); font-weight: 600; letter-spacing: -.02em; line-height: .85; text-transform: none; }
.static-page__body, .contact-page__intro > p:last-of-type, .utility-page__header > p:last-child { color: #cfbda8; }
.static-page__body h2, .static-page__body h3 { color: #f1bd82; }
.contact-page__details a { border-bottom-color: rgba(255, 245, 229, .24); color: #fff3e4; font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -.01em; line-height: .9; }
.contact-page__info { border-top-color: rgba(255, 245, 229, .18); }
.contact-page__info > .lb-contact-info > div, .contact-page__info > div { border-bottom-color: rgba(255, 245, 229, .18); }
.contact-page__info h2 { color: #e1a467; }
.contact-page__info p { color: #cbb9a5; }
.feedback-panel, .utility-page__panel { border: .0625rem solid rgba(255, 245, 229, .15); border-radius: .9rem; background: #26201a; box-shadow: 0 1.4rem 3.7rem rgba(0, 0, 0, .2); }
.feedback-panel h2 { color: #fff4e6; font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.75rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; text-transform: none; }
.form-field label { color: #e1ad70; }
.form-field input, .form-field select, .form-field textarea, .utility-page__panel input, .utility-page__panel select { border-bottom-color: rgba(255, 245, 229, .25); color: #fff6e8; }
.form-field input, .form-field select, .form-field textarea { background: rgba(255, 255, 255, .025); }
.form-field select option { background: #26201a; }
.form-film-note, .form-status { border-left-color: #d89b5a; background: #30261d; color: #e4d4c0; }
.form-note { color: #b9a792; }

.service-page { color: #f3e7d8; }
.service-page__lead { color: #eadbc7; }
.service-page__section { border-top-color: rgba(255, 245, 229, .17); }
.service-page__section > h2 { color: #fff5e7; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 600; letter-spacing: -.01em; line-height: .88; }
.service-page__pain-grid article, .service-page__menu-grid article, .service-page__trust-grid article { border-color: rgba(255, 245, 229, .16); border-radius: .65rem; background: #26201a; }
.service-page__gallery-placeholder { border-color: rgba(255, 245, 229, .25); border-radius: .7rem; background: #211a14; color: #cdbca7; }
.service-page__gallery-placeholder.service-gallery {
	position: relative;
	display: block;
	width: 100%;
	height: clamp(18rem, 48vw, 40rem);
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: .7rem;
	background: #211a14;
	text-align: initial;
}
.service-gallery .swiper-wrapper { height: 100%; }
.service-gallery__slide { height: 100%; margin: 0; overflow: hidden; border-radius: .7rem; background: #211a14; }
.service-gallery__slide img { display: block; width: 100%; height: calc(100% - 6.5rem); object-fit: cover; }
.service-gallery__caption { display: flex; min-height: 6.5rem; align-items: center; padding: .9rem clamp(1rem, 3vw, 2rem); border-top: .0625rem solid var(--brand-border); background: linear-gradient(180deg, rgba(29, 19, 14, .96), rgba(15, 10, 8, .98)); color: var(--text); font-family: var(--font-display); font-size: clamp(1.55rem, 3vw, 2.45rem); font-weight: 600; letter-spacing: -.015em; line-height: .95; }
.service-gallery__control {
	position: absolute;
	top: calc(50% - 3.25rem);
	z-index: 2;
	display: grid;
	width: 2.8rem;
	height: 2.8rem;
	place-items: center;
	padding: 0;
	border: .0625rem solid rgba(255, 245, 229, .5);
	border-radius: 50%;
	background: rgba(18, 13, 10, .72);
	color: #fff6e8;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .2s ease, color .2s ease;
}
.service-gallery__control:hover { background: #f0c48f; color: #1b110a; }
.service-gallery__control--previous { left: 1rem; }
.service-gallery__control--next { right: 1rem; }
.service-page__case { border-radius: .8rem; background: #2c1b10; }
.service-page__cta { border-radius: .8rem; background: linear-gradient(135deg, #c9854c, #8c4c26); color: #fff6e9; }

/* Service static-page hero: card imagery stays the single visual source for each direction. */
.service-static-hero {
	position: relative;
	display: grid;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	isolation: isolate;
	background: #120d0a;
	color: #fff6e8;
}

.service-static-hero__image,
.service-static-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.service-static-hero__image {
	z-index: -2;
	max-width: none;
	object-fit: cover;
	object-position: center;
	filter: saturate(.86) contrast(1.04) brightness(.7);
}

.service-static-hero__shade {
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(10, 7, 5, .66) 0%, rgba(10, 7, 5, .14) 35%, rgba(10, 7, 5, .82) 100%),
		radial-gradient(circle at 50% 50%, rgba(41, 22, 12, .04), rgba(11, 7, 5, .5));
}

.service-static-hero__inner {
	display: grid;
	place-items: center;
	width: 100%;
	padding: calc(var(--header-height) + clamp(2rem, 7vw, 5rem)) 0 clamp(3.5rem, 9vw, 7rem);
}

.service-static-hero__copy {
	display: grid;
	justify-items: center;
	gap: 1.25rem;
	max-width: 52rem;
	text-align: center;
}

.service-static-hero__copy .kicker { justify-content: center; color: #f0c48f; }
.service-static-hero__copy h1 { color: #fff6e8; font-family: var(--font-body); font-size: clamp(2.85rem, 8vw, 6.4rem); font-weight: 600; letter-spacing: -.055em; line-height: .94; }
.service-static-hero__copy > p:last-child { max-width: 42rem; color: hsla(35, 58%, 93%, .9); font-size: clamp(1rem, 2vw, 1.3rem); line-height: 1.42; }

.service-static-hero + .static-page { max-width: 84rem; padding-inline: clamp(1rem, 3vw, 2rem); }
.service-static-hero + .static-page .static-page__body { margin-top: clamp(3rem, 7vw, 6rem); }

@media (min-width: 48rem) {
	.service-static-hero__image { object-position: center 45%; }
}

html:not(.has-gsap).js [data-reveal] { opacity: 1; transform: none; }

@media (min-width: 40rem) {
	.hero__facts { right: var(--gutter); bottom: 1.2rem; left: var(--gutter); border: .0625rem solid rgba(255, 248, 235, .2); border-radius: .65rem; }
	.hero__facts li { min-height: 4.25rem; }
	.proof-grid { grid-template-columns: repeat(5, 1fr); }
	.proof-grid > div { border-bottom: .0625rem solid rgba(34, 26, 18, .14); }
}

@media (min-width: 64rem) {
	:root { --header-height: 5.5rem; }
	.site-header__inner { border-bottom: 0; }
	.site-nav__links { gap: clamp(.9rem, 1.6vw, 1.65rem); }
	.site-nav__links > a { color: #eee1d0; font-size: .75rem; font-weight: 600; letter-spacing: .07em; }
	.site-nav__links > a::after { background: #dfa465; }
	.header-contact { display: block; }
	.header-cta { display: inline-flex; }
	.hero__inner { align-items: center; padding-bottom: 6.8rem; }
	.hero__content { max-width: 46rem; }
	.hero h1 { font-size: clamp(4.5rem, 6.5vw, 6.35rem); }
	.hero__veil { background: linear-gradient(90deg, rgba(7, 6, 5, .7) 0%, rgba(7, 6, 5, .2) 58%, rgba(7, 6, 5, .12) 100%), linear-gradient(180deg, rgba(7, 6, 5, .38), rgba(7, 6, 5, .7)); }
	.service-card__body { padding: 1.55rem; }
	.proof-grid > div { min-height: 12.5rem; padding: 1.5rem; border: .0625rem solid rgba(34, 26, 18, .14); }
	.site-footer__grid { grid-template-columns: minmax(16rem, 1.55fr) 1fr 1fr 1fr; }
}

@media (max-width: 63.9375rem) {
	.header-contact, .header-cta { display: none; }
	.site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-question { grid-column: 1 / -1; }
}

@media (max-width: 39.9375rem) {
	.hero { min-height: 40rem; }
	.hero__inner { min-height: 40rem; padding-bottom: 10.5rem; }
	.hero h1 { font-size: clamp(3rem, 15vw, 4rem); }
	.hero__facts { padding-top: .1rem; }
	.section-heading h2, .manifesto h2, .process h2, .contact-band h2, .page-hero h1 { font-size: clamp(2.8rem, 15vw, 4.25rem); }
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* Guard against long Cyrillic editorial titles creating horizontal overflow. */
.site-header__inner, .site-header__actions, .brand, .hero__content { min-width: 0; }
.hero__content { width: 100%; }
.hero h1, .hero h1 span { max-inline-size: 100%; overflow-wrap: anywhere; }

/* Local visual revision: one dark canvas, a capsule navigation and readable process steps. */
:root {
	--site-surface: #1c120d;
	--site-surface-raised: rgba(73, 42, 25, .62);
	--site-rule: rgba(244, 207, 165, .18);
	--site-copy: #d2bba3;
	--site-gradient:
		radial-gradient(70rem 42rem at -8% 12%, rgba(131, 73, 36, .72), transparent 68%),
		radial-gradient(62rem 44rem at 105% 44%, rgba(91, 48, 27, .64), transparent 65%),
		radial-gradient(54rem 34rem at 45% 100%, rgba(100, 53, 27, .44), transparent 72%),
		linear-gradient(124deg, #120d0a 0%, #2c1b12 44%, #18100c 72%, #382116 100%);
	--header-height: 5.9rem;
}

html,
body {
	background: #120d0a;
}

body {
	background-image: var(--site-gradient);
	background-attachment: fixed;
}

.page-content,
.directions,
.proof,
.process,
.service-deepdives,
.manifesto,
.scenarios,
.contact-band,
.site-footer {
	background: transparent;
	color: #fff8ec;
}

.proof,
.process,
.service-deepdives,
.manifesto,
.scenarios,
.contact-band {
	border-top: .0625rem solid var(--site-rule);
}

.proof::before,
.manifesto::before {
	display: none;
}

.proof .section-heading h2,
.process h2,
.service-deepdives h2,
.manifesto h2,
.scenarios h2,
.contact-band h2 {
	color: #fff8ec;
}

.proof .section-heading > p,
.process .section-heading > p,
.process__heading > p,
.service-deepdives .section-heading > p,
.manifesto p,
.scenarios .section-heading > p,
.contact-band__action > p {
	color: var(--site-copy);
}

/* The fixed header is a deliberately compact floating capsule. */
.site-header {
	height: auto;
	padding-top: .7rem;
	background: transparent !important;
	border: 0;
	backdrop-filter: none;
}

.site-header__inner {
	width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
	min-height: 4.15rem;
	margin-inline: auto;
	padding-inline: clamp(.85rem, 2vw, 1.25rem);
	background: rgba(28, 16, 10, .9);
	border: .0625rem solid rgba(255, 248, 235, .2);
	border-radius: 999px;
	box-shadow: 0 .8rem 2.2rem rgba(0, 0, 0, .26);
	backdrop-filter: blur(1rem);
}

.site-header.is-scrolled .site-header__inner,
body:not(.is-home) .site-header__inner {
	background: rgba(28, 16, 10, .95);
}

.menu-toggle,
.header-cta {
	border-radius: 999px;
}

.header-cta {
	min-height: 2.65rem;
}

.proof-grid > div {
	background: var(--site-surface-raised);
	border-color: var(--site-rule);
	box-shadow: none;
}

.proof-grid strong { color: #e5ad70; }
.proof-grid span { color: var(--site-copy); }

.process-list { border-top-color: var(--site-rule); }

.process-list li {
	background: linear-gradient(120deg, rgba(83, 46, 26, .75), rgba(37, 22, 14, .88));
	border-bottom-color: var(--site-rule);
}

.process-list p { color: var(--site-copy); }

.deepdive--paper {
	background: var(--site-surface-raised);
	color: #fff8ec;
}

.deepdive--paper h2,
.deepdive--paper h3,
.deepdive--paper strong { color: #fff8ec; }

.deepdive--paper p,
.deepdive--paper li,
.deepdive--paper .eyebrow { color: var(--site-copy); }

.deepdive--paper .deepdive__feature,
.deepdive--paper .deepdive__meta {
	border-color: var(--site-rule);
}

.manifesto,
.contact-band {
	background: transparent;
}

.contact-band__action { border-color: var(--site-rule); }

.site-footer {
	border-top: .0625rem solid var(--site-rule);
}

@media (min-width: 64rem) {
	:root { --header-height: 6.45rem; }

	.site-header { padding-top: 1rem; }

	.site-header__inner {
		min-height: 4.5rem;
		padding-inline: 1.4rem;
	}

	.site-nav__links { gap: clamp(1rem, 1.75vw, 1.75rem); }

	.site-nav__links > a {
		font-size: .84rem;
		letter-spacing: .075em;
	}

	.header-contact { font-size: .92rem; }

	.header-cta {
		min-height: 2.9rem;
		padding-inline: 1.15rem;
		font-size: .76rem;
	}

	/* Keep each process explanation in its own generous column. */
	.process__grid {
		grid-template-columns: minmax(19rem, .78fr) minmax(0, 1.22fr);
		gap: clamp(3rem, 6vw, 7rem);
	}

	.process-list li {
		grid-template-columns: 2.75rem minmax(0, 1fr);
		column-gap: 1.25rem;
		padding-block: 2rem;
	}

	.process-list li > div {
		display: grid;
		grid-template-columns: minmax(13rem, .86fr) minmax(0, 1.14fr);
		gap: clamp(1.5rem, 3vw, 2.75rem);
		align-items: start;
		min-width: 0;
	}

	.process-list h3,
	.process-list p {
		min-width: 0;
		margin-top: 0;
	}

	.process-list p {
		max-width: none;
		font-size: clamp(.98rem, 1.15vw, 1.12rem);
		line-height: 1.55;
	}
}

@media (max-width: 63.9375rem) {
	.site-header__inner { min-height: 3.9rem; }
	.menu-toggle { min-width: 2.55rem; min-height: 2.55rem; }
}

@media (max-width: 39.9375rem) {
	body { min-width: 0; }

	.site-header__inner {
		width: calc(100% - (var(--gutter) * 2));
	}

	.menu-toggle {
		width: 2.55rem;
		padding-inline: .7rem;
	}

	.menu-toggle__label { display: none; }

	.hero__inner {
		width: 100%;
		overflow: hidden;
	}

	.hero__content {
		width: 100%;
		max-inline-size: calc(100vw - (var(--gutter) * 2));
	}

	.hero h1 {
		font-size: clamp(2.5rem, 11.5vw, 3.2rem);
		line-height: .92;
		overflow-wrap: normal;
		word-break: normal;
	}

	.hero h1 span { display: block; }
	.hero__lead { max-inline-size: 100%; }
}

/* Viewport-aligned hero and an optically centred, crisp home header. */
body.is-home .site-header,
body.is-home .site-header__inner {
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.site-header {
	padding-block: .35rem;
}

.hero {
	height: 100vh;
	min-height: 100vh;
	height: 100svh;
	min-height: 100svh;
}

.hero__inner {
	height: 100%;
	min-height: 100%;
}

@media (min-width: 64rem) {
	.site-header { padding-block: .5rem; }
}

/* Header precision pass: the capsule stays light, without a second nav surface. */
.site-header.is-scrolled,
body:not(.is-home) .site-header {
	box-shadow: none;
}

.site-nav {
	background: transparent;
}

@media (min-width: 64rem) {
	.site-nav__links {
		gap: clamp(.85rem, 1.35vw, 1.45rem);
	}

	.site-nav__links > a {
		font-size: clamp(.9rem, .96vw, 1.02rem);
		letter-spacing: .06em;
	}
}

/* An editorial process: one anchored brief beside an easy-to-scan delivery plan. */
.process {
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(46rem 32rem at 4% 14%, rgba(128, 71, 37, .38), transparent 72%),
		linear-gradient(126deg, #180f0a 0%, #28170e 48%, #160e0a 100%);
	color: #fff7eb;
}

.process__grid {
	position: relative;
	display: grid;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}

.process__heading {
	padding-top: 1.25rem;
	border-top: .0625rem solid rgba(255, 242, 223, .24);
}

.process__heading .kicker {
	color: #e6ad70;
}

.process__heading h2 {
	max-width: 11ch;
	margin-top: 1rem;
	color: #fff7eb;
	font-family: var(--font-display);
	font-size: clamp(3.1rem, 10vw, 5rem);
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: .9;
	text-wrap: balance;
}

.process__heading > p:last-child {
	max-width: 29rem;
	margin-top: 1.5rem;
	color: #d9c4ad;
	font-size: clamp(1rem, 2.5vw, 1.18rem);
	line-height: 1.6;
}

.process-list {
	display: grid;
	margin: 0;
	list-style: none;
	border-top: .0625rem solid rgba(255, 242, 223, .2);
}

.process-list li {
	display: grid;
	grid-template-columns: 2.75rem minmax(0, 1fr);
	gap: 1rem;
	padding: 1.5rem 0;
	border-bottom: .0625rem solid rgba(255, 242, 223, .2);
	background: none;
	color: inherit;
	transition: border-color .25s ease, color .25s ease;
}

.process-list li > span {
	display: grid;
	width: 2.15rem;
	height: 2.15rem;
	place-items: center;
	padding: 0;
	border: .0625rem solid rgba(232, 178, 112, .55);
	border-radius: 50%;
	color: #eab678;
	font-size: .62rem;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	letter-spacing: .07em;
	line-height: 1;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.process-list li > div {
	display: grid;
	gap: .65rem;
	min-width: 0;
}

.process-list h3 {
	margin: 0;
	color: #fff8ed;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 6.5vw, 3rem);
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: .92;
	text-transform: none;
}

.process-list p {
	margin: 0;
	color: #d7c2ab;
	font-size: clamp(.98rem, 2.6vw, 1.08rem);
	line-height: 1.58;
}

@media (hover: hover) and (pointer: fine) {
	.process-list li:hover {
		padding-inline: 0;
		border-color: rgba(232, 178, 112, .72);
		background: none;
		background-size: 0 100%;
		color: inherit;
	}

	.process-list li:hover > span {
		border-color: #eab678;
		background: #eab678;
		color: #21140d;
		transform: none;
	}

	.process-list li:hover p { color: #f0dec8; }
}

@media (min-width: 64rem) {
	.process__grid {
		grid-template-columns: minmax(17rem, .72fr) minmax(0, 1.28fr);
		gap: clamp(3.5rem, 7vw, 8rem);
	}

	.process__heading {
		position: sticky;
		top: calc(var(--header-height) + 1.5rem);
	}

	.process__heading h2 {
		font-size: clamp(3.6rem, 4.5vw, 5.7rem);
	}

	.process-list li {
		grid-template-columns: 3.25rem minmax(12rem, .86fr) minmax(0, 1.14fr);
		column-gap: clamp(1.4rem, 2.5vw, 3rem);
		align-items: start;
		padding-block: clamp(1.75rem, 2.3vw, 2.65rem);
	}

	.process-list li > div { display: contents; }
	.process-list h3 { grid-column: 2; }
	.process-list p { grid-column: 3; align-self: center; }
}

/* The deep-dive content is intentionally flush with its enclosing shell. */
.service-deepdives > .shell {
	padding-inline: 0;
}

/* Service deep-dives: editorial service cards with a clear offer, proof and next step. */
.service-deepdives {
	counter-reset: deepdive;
	padding-block: clamp(1rem, 2.5vw, 2.5rem) var(--section-space);
	background: transparent;
}

.service-deepdives > .shell {
	display: grid;
	gap: clamp(1rem, 1.8vw, 1.5rem);
	background: none;
}

.deepdive {
	position: relative;
	counter-increment: deepdive;
	display: grid;
	gap: clamp(2.25rem, 5vw, 4.5rem);
	overflow: hidden;
	padding: clamp(1.5rem, 4.5vw, 4.25rem);
	border: .0625rem solid rgba(255, 244, 228, .16);
	border-radius: clamp(.9rem, 1.8vw, 1.35rem);
	background:
		radial-gradient(42rem 26rem at 100% 0%, rgba(154, 87, 43, .23), transparent 65%),
		linear-gradient(135deg, rgba(47, 26, 16, .98), rgba(20, 13, 9, .98));
	box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, .18);
	color: #fff7eb;
}

.deepdive::before {
	content: counter(deepdive, decimal-leading-zero);
	position: absolute;
	top: clamp(1.35rem, 3vw, 2.3rem);
	right: clamp(1.35rem, 3vw, 2.3rem);
	display: grid;
	width: 2.6rem;
	aspect-ratio: 1;
	place-items: center;
	border: .0625rem solid rgba(233, 180, 112, .42);
	border-radius: 50%;
	color: #eab678;
	font-size: .64rem;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	letter-spacing: .08em;
}

.deepdive--paper {
	background:
		radial-gradient(38rem 26rem at 0% 8%, rgba(213, 145, 80, .2), transparent 67%),
		linear-gradient(135deg, #593927, #322016);
	color: #fff7eb;
}

.deepdive header {
	display: grid;
	gap: 1rem;
	max-width: none;
	padding-right: 3.6rem;
}

.deepdive .kicker {
	color: #e7b575;
}

.deepdive h2,
.deepdive--paper h2 {
	max-width: 15ch;
	margin: 0;
	color: #fff8ed;
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 7vw, 5.6rem);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: .88;
	text-transform: none;
	text-wrap: balance;
}

.deepdive header > p:last-child,
.deepdive--paper header > p:last-child {
	max-width: 46rem;
	margin: 0;
	color: #dec9b1;
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.62;
}

.deepdive__grid {
	display: grid;
	gap: 1rem;
}

.deepdive__grid > div,
.deepdive--paper .deepdive__grid > div {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	border: .0625rem solid rgba(255, 244, 228, .14);
	border-radius: .75rem;
	background: rgba(11, 8, 6, .2);
}

.deepdive__grid h3,
.deepdive--paper h3 {
	color: #edb978;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.deepdive ul {
	gap: .9rem;
	margin-top: 1.3rem;
}

.deepdive li,
.deepdive--paper li {
	color: #ead6bd;
	font-size: clamp(.96rem, 1.65vw, 1.1rem);
	line-height: 1.5;
}

.deepdive__risk-list li {
	min-height: 2.25rem;
	padding: .08rem 0 .08rem 3rem;
}

.deepdive__risk-list li::before {
	width: 1.75rem;
	height: 1.75rem;
	border-color: #e9ad68;
}

.deepdive__risk-list li::after {
	top: .9rem;
	left: .52rem;
	background: #e9ad68;
	box-shadow: .27rem -.27rem 0 -.01rem #e9ad68;
}

.deepdive__grid p,
.deepdive--paper .deepdive__grid p {
	margin-top: 1.25rem;
	color: #ead6bd;
	font-size: clamp(1rem, 1.75vw, 1.14rem);
	line-height: 1.62;
}

.deepdive blockquote,
.deepdive--paper blockquote {
	margin: 1.75rem 0 1.5rem;
	padding: .1rem 0 .1rem 1rem;
	border-left: .18rem solid #e5a761;
	color: #f2dfc9;
	font-size: clamp(.98rem, 1.55vw, 1.08rem);
	line-height: 1.55;
}

.deepdive .button {
	width: auto;
	margin-top: auto;
	align-self: flex-start;
	background: #d18a49;
	border-color: #e7ae70;
	color: #1a100a;
}

@media (min-width: 48rem) {
	.deepdive header {
		grid-template-columns: minmax(0, 1fr) minmax(16rem, .72fr);
		column-gap: clamp(2rem, 6vw, 6rem);
		align-items: end;
	}

	.deepdive .kicker,
	.deepdive h2 { grid-column: 1; }
	.deepdive header > p:last-child { grid-column: 2; grid-row: 1 / span 2; }
	.deepdive__grid { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
}

@media (hover: hover) and (pointer: fine) {
	.deepdive {
		transition: border-color .3s ease, transform .35s var(--ease-out), box-shadow .35s ease;
	}

	.deepdive:hover {
		transform: translateY(-.25rem);
		border-color: rgba(235, 183, 116, .44);
		box-shadow: 0 1.75rem 4rem rgba(0, 0, 0, .24);
	}
}

/* A focused brief CTA: the final conversion step before the footer. */
.contact-band {
	position: relative;
	padding-block: clamp(2rem, 5vw, 5rem);
	border-top: 0;
	background: transparent;
	color: #fff8ed;
}

.contact-band__grid {
	position: relative;
	isolation: isolate;
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	overflow: hidden;
	padding: clamp(1.5rem, 5vw, 4.5rem);
	border: .0625rem solid rgba(255, 242, 224, .18);
	border-radius: clamp(1rem, 2vw, 1.4rem);
	background:
		radial-gradient(38rem 28rem at 100% 0%, rgba(188, 104, 51, .5), transparent 66%),
		linear-gradient(128deg, rgba(67, 35, 18, .98), rgba(25, 15, 10, .98));
	box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2);
}

.contact-band__grid::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -15rem;
	right: -10rem;
	width: 31rem;
	aspect-ratio: 1;
	border: .0625rem solid rgba(255, 239, 215, .15);
	border-radius: 50%;
}

.contact-band__intro {
	min-width: 0;
	padding-top: .5rem;
}

.contact-band .kicker {
	color: #edbc7e;
}

.contact-band h2 {
	max-width: 12ch;
	margin-top: 1rem;
	color: #fff8ed;
	font-family: var(--font-display);
	font-size: clamp(2.85rem, 9vw, 5.5rem);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: .88;
	text-transform: none;
	text-wrap: balance;
}

.contact-band__action {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	border: .0625rem solid rgba(255, 243, 227, .16);
	border-radius: .85rem;
	background: rgba(10, 7, 5, .24);
}

.contact-band__action > p {
	max-width: 31rem;
	margin: 0;
	color: #ead4ba;
	font-size: clamp(1rem, 2.1vw, 1.16rem);
	line-height: 1.6;
}

.contact-band__action .button {
	width: auto;
	max-width: 100%;
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
	align-self: flex-start;
	border-color: #e9b270;
	background: #d18a49;
	color: #1b1009;
}

.contact-band__identity {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
	padding-top: 1.25rem;
	border-top: .0625rem solid rgba(255, 242, 224, .17);
}

.contact-band__identity .lb-contact-identity {
	display: grid;
	gap: .5rem;
}

.contact-band__identity .lb-contact-identity small {
	color: #cda985;
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.contact-band__identity .lb-contact-identity a {
	width: max-content;
	max-width: 100%;
	color: #fff8ec;
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
	font-weight: 600;
	overflow-wrap: anywhere;
}

@media (min-width: 64rem) {
	.contact-band__grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr);
		align-items: stretch;
		gap: clamp(3rem, 7vw, 7.5rem);
	}

	.contact-band h2 {
		font-size: clamp(3.7rem, 5vw, 5.8rem);
	}

	.contact-band__action {
		justify-content: center;
	}
}

@media (hover: hover) and (pointer: fine) {
	.contact-band__action .button:hover {
		border-color: #fff0d9;
		background: hsla(48, 96%, 89%, .9);
		box-shadow: 0 .8rem 1.75rem rgba(0, 0, 0, .22);
	}
}

/* The footer is one compact system: brand, statement, contacts and utility links. */
.site-footer {
	padding-top: clamp(2rem, 4vw, 3.75rem);
	border-top: .0625rem solid var(--site-rule);
}

.site-footer__grid {
	display: grid;
	grid-template-areas:
		"brand"
		"contact"
		"nav"
		"location"
		"social"
		"brief";
	gap: 1.6rem;
	padding-block: 0 clamp(2rem, 4vw, 3.25rem);
}

.site-footer__brand {
	grid-area: brand;
	display: grid;
	gap: .8rem;
	padding-bottom: 1.5rem;
	border-bottom: .0625rem solid rgba(255, 242, 224, .15);
}

.site-footer__contact { grid-area: contact; }
.footer-nav { grid-area: nav; }
.site-footer__location { grid-area: location; }
.site-footer__social { grid-area: social; }
.footer-question { grid-area: brief; max-width: none; }

.site-footer__statement {
	max-width: 31rem;
	margin: 0;
	color: #dbc6ad;
	font-family: var(--font-body);
	font-size: clamp(1.18rem, 2.8vw, 1.55rem);
	font-weight: 500;
	letter-spacing: -.03em;
	line-height: 1.18;
	text-transform: none;
}

.site-footer .site-footer__contact .lb-contact-identity {
	display: grid;
	gap: .45rem;
}

.site-footer .site-footer__contact .lb-contact-identity a {
	width: max-content;
	max-width: 100%;
	color: #fff7e9;
	font-family: var(--font-body);
	font-size: clamp(1.15rem, 2.4vw, 1.45rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.site-footer .site-footer__contact .lb-contact-identity small {
	color: #caa47e;
	font-size: .61rem;
	letter-spacing: .12em;
}

/* Requested reference alignment: the hero and every section lead from the centre. */
.hero__inner {
	justify-items: center;
	text-align: center;
}

.hero__content,
.hero h1,
.hero__lead {
	margin-inline: auto;
}

.hero__veil {
	background: linear-gradient(180deg, rgba(7, 6, 5, .52), rgba(7, 6, 5, .18) 35%, rgba(7, 6, 5, .8) 100%), radial-gradient(circle at center, rgba(7, 6, 5, .18), rgba(7, 6, 5, .56) 90%);
}

.section-heading,
.section-heading {
	margin-inline: auto;
	text-align: center;
}

.section-heading .kicker,
.section-heading .kicker {
	justify-content: center;
}

.section-heading--split {
	grid-template-columns: minmax(0, 1fr);
}

.section-heading--split > p,
.section-heading__action {
	max-width: 42rem;
	margin-inline: auto;
	text-align: center;
}

.section-heading__action .arrow-link {
	margin-inline: auto;
}

body.modal-open { overflow: hidden; }

.request-modal {
	position: fixed;
	z-index: 1005;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 1rem;
	visibility: hidden;
	opacity: 0;
	transition: opacity .25s ease, visibility .25s ease;
}

.request-modal.is-open { visibility: visible; opacity: 1; }
.request-modal__backdrop { position: absolute; inset: 0; background: rgba(10, 8, 6, .78); backdrop-filter: blur(.45rem); }
.request-modal__dialog {
	position: relative;
	width: min(100%, 40rem);
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	padding: clamp(1.75rem, 5vw, 3.5rem);
	border: .0625rem solid rgba(255, 245, 229, .22);
	border-radius: 1rem;
	background: radial-gradient(circle at 92% 0, rgba(201, 133, 76, .25), transparent 35%), #15120f;
	box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, .48);
	color: #fffaf0;
	transform: translateY(1rem);
	transition: transform .3s var(--ease-out);
}
.request-modal.is-open .request-modal__dialog { transform: translateY(0); }
.request-modal__close { position: absolute; top: .75rem; right: .9rem; width: 2.5rem; height: 2.5rem; border: 0; background: transparent; color: #f4d1a1; font-size: 2rem; line-height: 1; cursor: pointer; }
.request-modal__dialog h2 { margin-top: .8rem; font-family: var(--font-display); font-size: clamp(3.2rem, 11vw, 5rem); font-weight: 600; line-height: .84; }
.request-modal__intro { max-width: 31rem; margin-top: 1.25rem; color: #ddc9ad; }
.request-modal__form { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.75rem; }
.request-modal__form label { display: grid; gap: .38rem; color: #ead3b4; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.request-modal__form input, .request-modal__form textarea { width: 100%; border: .0625rem solid rgba(255, 245, 229, .28); border-radius: .35rem; padding: .8rem .9rem; background: rgba(255, 250, 240, .06); color: #fffaf0; outline: 0; }
.request-modal__form input:focus, .request-modal__form textarea:focus { border-color: #e4ae70; box-shadow: 0 0 0 .2rem rgba(201, 133, 76, .2); }
.request-modal__form textarea { resize: vertical; }
.request-modal__form .button { width: 100%; cursor: pointer; }
.request-modal__honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.request-modal__status { margin: 0; color: #d6efbd; }
.request-modal__status.is-error { color: #f2a08b; }

@media (min-width: 42rem) {
	.request-modal__form { grid-template-columns: 1fr 1fr; }
	.request-modal__form .request-modal__message,
	.request-modal__form .button,
	.request-modal__status { grid-column: 1 / -1; }
}

/* Header CTA — keep the original dimensions; only adopt the requested light brass gradient. */
.site-header .header-cta {
	min-height: 2.9rem;
	min-width: 0;
	padding-inline: 1.15rem;
	border: .0625rem solid #d9a266;
	border-radius: 999px;
	background: linear-gradient(180deg, #f5eee4, #e7d5c0 48%, #c78149);
	color: #17110d;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .07em;
	box-shadow: none;
}

.site-header .header-cta:hover,
.site-header .header-cta:focus-visible {
	border-color: #fff1dd;
	background: linear-gradient(180deg, #fff8ef, #ead8c2 48%, #d08a50);
	color: #21150f;
	box-shadow: 0 .8rem 1.75rem rgba(0, 0, 0, .26);
	transform: translateY(-.12rem);
}

.hero__actions { justify-content: center; }
.kicker--light { justify-content: center; }
#directions-title { display: flex; justify-content: center; }

@media (max-width: 39.9375rem) {
	#directions-title { display: block; }
	#manifesto-title { justify-content: center; text-align: center; }
	.process__heading { text-align: center; }
}
.section-heading.section-heading--split { gap: 20px; }

.deepdive .button,
.contact-band__action .button {
	background: linear-gradient(180deg, #f5eee4, #e7d5c0 48%, #c78149);
}

/* Littlebarista.ru live reference: service heading and contact-form values. */
.directions {
	--services-bg: #0f0a08;
	--services-bg-soft: #1a120f;
	--services-card: rgba(24, 15, 12, .82);
	--services-stroke: rgba(212, 167, 98, .35);
	--services-stroke-strong: hsla(38, 70%, 69%, .65);
	--services-text-main: #f3e3c8;
	--services-text-soft: #cfb894;
	--services-text-muted: #9d8364;
	--services-glow: rgba(216, 161, 84, .18);
	background: radial-gradient(circle at 20% 20%, rgba(181, 121, 53, .18), transparent 28%), radial-gradient(circle at 80% 10%, rgba(181, 121, 53, .12), transparent 24%), linear-gradient(180deg, #120c09, #090606);
	color: #f3e3c8;
}

.directions .kicker { color: var(--services-text-muted); }
.directions .section-heading h2 { color: var(--services-text-main); }
.directions .section-heading > p { color: var(--services-text-soft); }

.brand__reference-logo {
	display: block;
	width: 84px;
	height: 50px;
	object-fit: contain;
	object-position: center;
}

.brand--footer .brand__reference-logo {
	width: 140px;
	height: auto;
}

.request-modal__dialog {
	border-color: rgba(123, 82, 48, .35);
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01)), linear-gradient(180deg, rgba(29, 19, 14, .94), rgba(15, 10, 8, .98));
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 0 40px rgba(214, 160, 91, .06);
}

.request-modal__dialog h2 { color: #f5e8d3; }
.request-modal__intro,
.request-modal__form label { color: #d7c2a7; }
.request-modal__form input,
.request-modal__form textarea {
	border-color: rgba(123, 82, 48, .35);
	border-radius: 12px;
	background: rgba(0, 0, 0, .2);
	color: #f5e8d3;
}

.request-modal__form input:focus,
.request-modal__form textarea:focus {
	border-color: rgba(210, 160, 99, .45);
	box-shadow: 0 0 0 .2rem rgba(210, 160, 99, .25);
}

.request-modal__form .button {
	border: 2px solid #c9a06c;
	border-radius: 999px;
	background: linear-gradient(180deg, #faf3e8, #f0e2cf, #e5d0b0);
	color: #1a1008;
	box-shadow: 0 10px 36px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .65), 0 0 28px rgba(200, 150, 80, .22);
}

.request-modal__form .button:hover {
	border-color: #ddb66a;
	background: linear-gradient(180deg, #fffaf3, #f7ebdc, #edd9be);
	color: #1a1008;
}

.button:not(.button--accent):not(.button--paper) {
	color: #000;
}

/* Use the fetched Little Barista services surface throughout the home-page content. */
.proof,
.process,
.manifesto,
.scenarios,
.contact-band {
	background: radial-gradient(circle at 20% 20%, rgba(181, 121, 53, .18), transparent 28%), radial-gradient(circle at 80% 10%, rgba(181, 121, 53, .12), transparent 24%), linear-gradient(180deg, #120c09, #090606);
	color: #f3e3c8;
}

.proof .section-heading h2,
.process h2,
.manifesto h2,
.scenarios .section-heading h2,
.contact-band h2 {
	color: #f3e3c8;
}

.proof .section-heading > p,
.process__heading > p,
.manifesto__copy > p,
.scenarios .section-heading > p,
.contact-band__action > p {
	color: #cfb894;
}

.lb-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.15rem;
}

.contact-page__social {
	margin-top: 1.5rem;
}

.contact-page__social > p {
	margin: 0 0 .75rem;
	color: #e3ab6c;
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.contact-page__social .lb-social-links a,
.footer-social-links .lb-social-links a {
	border-bottom: .0625rem solid currentColor;
	color: #dfcdb6;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.footer-question > div {
	border-bottom-color: rgba(255, 242, 224, .24);
}

.footer-question button {
	border-radius: .4rem .4rem 0 0;
}

@media (min-width: 40rem) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"brand brand"
			"contact nav"
			"location social"
			"brief brief";
		column-gap: clamp(1.5rem, 5vw, 3rem);
	}
}

@media (min-width: 64rem) {
	.site-footer__grid {
		grid-template-columns: minmax(15rem, 1.45fr) minmax(14rem, 1.1fr) repeat(2, minmax(8rem, .75fr));
		grid-template-areas:
			"brand brand contact nav"
			"brief brief location social";
		column-gap: clamp(1.75rem, 3.5vw, 4rem);
		row-gap: 1.8rem;
	}

	.site-footer__brand {
		align-self: start;
		padding: 0;
		border: 0;
	}

	.footer-question {
		max-width: 42rem;
	}
}

/* Contact page — a structured project brief, not a generic feedback card. */
.page-content--feedback {
	padding-top: clamp(5.75rem, 10vw, 9.5rem);
	padding-bottom: clamp(4rem, 9vw, 8rem);
}

.contact-page {
	gap: clamp(2.5rem, 6vw, 6rem);
}

.contact-page__intro {
	min-width: 0;
}

.contact-page__intro .kicker {
	color: #e6ad6c;
}

.contact-page__intro > p:last-of-type {
	max-width: 34rem;
	color: #d4c2ad;
	font-size: clamp(1.05rem, 1.8vw, 1.25rem);
	line-height: 1.55;
}

.contact-page__details {
	margin-top: clamp(2rem, 4vw, 3.25rem);
}

.contact-page__details .lb-contact-identity {
	padding-block: 1.1rem;
	border-top: .0625rem solid rgba(255, 240, 220, .18);
	border-bottom: .0625rem solid rgba(255, 240, 220, .18);
}

.contact-page__details .lb-contact-identity small {
	color: #d6a269;
	font-size: .63rem;
	letter-spacing: .12em;
}

.contact-page__info {
	margin-top: clamp(2.25rem, 5vw, 3.5rem);
	border-top: 0;
}

.contact-page__info > .lb-contact-info > div,
.contact-page__info > div {
	padding-block: 1.4rem;
	border-bottom-color: rgba(255, 240, 220, .16);
}

.contact-page__info h2,
.lb-contact-info h2 {
	color: #e3ab6c;
	font-size: .66rem;
	letter-spacing: .13em;
}

.contact-page__info p,
.lb-contact-info p {
	color: #cbb9a5;
	font-size: .95rem;
	line-height: 1.55;
}

.contact-page__info .contact-map {
	position: relative;
	margin-top: 1rem;
	aspect-ratio: 16 / 10;
	border: .0625rem solid rgba(255, 238, 216, .22);
	border-radius: .45rem;
	background: #1c120c;
	box-shadow: 0 1.1rem 2.7rem rgba(0, 0, 0, .18);
}

.contact-page__info .contact-map::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border: .0625rem solid rgba(255, 255, 255, .06);
	border-radius: inherit;
}

.contact-page__info .contact-map iframe {
	filter: saturate(.78) contrast(.98);
}

.feedback-panel {
	position: relative;
	display: grid;
	align-content: start;
	min-width: 0;
	overflow: hidden;
	padding: clamp(1.35rem, 3.5vw, 3.25rem);
	border: .0625rem solid rgba(255, 240, 220, .22);
	border-radius: .45rem;
	background:
		linear-gradient(160deg, rgba(92, 50, 27, .52), transparent 31%),
		linear-gradient(135deg, #2d1a10, #1a110c 76%);
	box-shadow: 0 1.75rem 4rem rgba(0, 0, 0, .26);
	transition: border-color .3s ease, box-shadow .3s ease;
}

.feedback-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: clamp(3.5rem, 12vw, 7rem);
	height: .2rem;
	background: #e4a35c;
}

.feedback-panel::after {
	content: "";
	position: absolute;
	top: -8rem;
	right: -7rem;
	width: 16rem;
	aspect-ratio: 1;
	border: .0625rem solid rgba(255, 234, 208, .1);
	border-radius: 50%;
	pointer-events: none;
}

.feedback-panel__heading {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: .9rem;
	align-items: start;
	padding-bottom: clamp(1.3rem, 3vw, 2rem);
	border-bottom: .0625rem solid rgba(255, 239, 218, .19);
}

.feedback-panel__eyebrow {
	margin: .36rem 0 0;
	color: #e5a25a;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
}

.feedback-panel h2 {
	margin: 0;
	color: #fff4e6;
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 5.3vw, 5.25rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .84;
	text-transform: none;
}

.feedback-panel .form-grid {
	position: relative;
	z-index: 1;
	gap: 1.05rem 1.15rem;
	margin-top: clamp(1.5rem, 3.5vw, 2.4rem);
}

.feedback-panel .form-field {
	gap: .55rem;
}

.feedback-panel .form-field label {
	color: #e8ba83;
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.2;
}

.feedback-panel .form-field input,
.feedback-panel .form-field select,
.feedback-panel .form-field textarea {
	min-height: 3.5rem;
	padding: .86rem 1rem;
	border: .0625rem solid rgba(255, 241, 220, .22);
	border-radius: .28rem;
	background: rgba(255, 249, 239, .055);
	color: #fff7eb;
	font-size: 1rem;
	line-height: 1.3;
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.feedback-panel .form-field textarea {
	min-height: 9.5rem;
	padding-block: 1rem;
}

.feedback-panel .form-field input::placeholder,
.feedback-panel .form-field textarea::placeholder {
	color: rgba(239, 219, 196, .54);
}

.feedback-panel .form-field select {
	appearance: none;
	padding-right: 3rem;
	background-image: linear-gradient(45deg, transparent 50%, #e8ba83 50%), linear-gradient(135deg, #e8ba83 50%, transparent 50%);
	background-position: calc(100% - 1.2rem) 1.48rem, calc(100% - .9rem) 1.48rem;
	background-repeat: no-repeat;
	background-size: .32rem .32rem, .32rem .32rem;
}

.feedback-panel .form-field input:hover,
.feedback-panel .form-field select:hover,
.feedback-panel .form-field textarea:hover {
	padding-inline: 1rem;
	border-color: rgba(239, 185, 119, .62);
	background-color: rgba(255, 249, 239, .075);
}

.feedback-panel .form-field input:focus,
.feedback-panel .form-field select:focus,
.feedback-panel .form-field textarea:focus {
	border-color: #e6aa67;
	background-color: rgba(255, 249, 239, .1);
	box-shadow: 0 0 0 .2rem rgba(222, 153, 84, .18);
	outline: 0;
}

.feedback-panel .form-field--film {
	position: relative;
	padding-left: .85rem;
}

.feedback-panel .form-field[hidden],
.feedback-panel .form-film-note[hidden],
.feedback-panel .form-status[hidden] {
	display: none !important;
}

.feedback-panel .form-field--film::before {
	content: "";
	position: absolute;
	left: 0;
	top: .1rem;
	bottom: .1rem;
	width: .13rem;
	background: #ce7e3c;
}

.feedback-panel .form-checks {
	gap: .5rem;
	margin-top: 0;
}

.feedback-panel .form-checks label {
	min-height: 2.75rem;
	padding: .55rem .65rem;
	border: .0625rem solid rgba(255, 241, 220, .16);
	border-radius: .28rem;
	background: rgba(255, 249, 239, .035);
	color: #e8d8c3;
	font-size: .78rem;
	line-height: 1.25;
}

.feedback-panel .form-checks input {
	accent-color: #e3a05b;
}

.feedback-panel .form-film-note,
.feedback-panel .form-status {
	position: relative;
	z-index: 1;
	margin-top: 1.25rem;
	padding: .95rem 1rem;
	border: .0625rem solid rgba(232, 186, 131, .28);
	border-left: .2rem solid #dd9a57;
	border-radius: .24rem;
	background: rgba(231, 171, 104, .09);
	color: #e5d1ba;
	font-size: .9rem;
	line-height: 1.45;
}

.feedback-panel .captcha-box {
	position: relative;
	z-index: 1;
	margin-top: 1.25rem;
}

.feedback-panel .button {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 3.85rem;
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
	border: .0625rem solid #ebb675;
	border-radius: .3rem;
	background: #d38b49;
	color: #1d1109;
	font-size: .73rem;
	letter-spacing: .12em;
	box-shadow: none;
}

.feedback-panel .button span {
	margin-left: auto;
	font-size: 1.15rem;
}

.feedback-panel .button:hover {
	border-color: #fff1dd;
	background: #efb978;
	box-shadow: 0 .75rem 1.8rem rgba(0, 0, 0, .2);
	transform: none;
}

.feedback-panel .form-note {
	position: relative;
	z-index: 1;
	max-width: 43rem;
	margin: 1rem 0 0;
	color: #baaa97;
	font-size: .73rem;
	line-height: 1.45;
}

@media (min-width: 40rem) {
	.feedback-panel .form-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.page-content--feedback .contact-page {
		grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
		gap: clamp(3.25rem, 7vw, 8rem);
	}

	.feedback-panel {
		padding: clamp(2.1rem, 3.3vw, 3.5rem);
	}

	.feedback-panel .button {
		width: min(100%, 22rem);
	}
}

@media (max-width: 25rem) {
	.feedback-panel__heading {
		grid-template-columns: 1fr;
		gap: .45rem;
	}

	.feedback-panel__eyebrow {
		margin-top: 0;
	}

	.feedback-panel .form-checks {
		grid-template-columns: 1fr;
	}
}

/* Inner pages use the same continuous canvas as the home page. */
.page-content,
.page-content--listing,
.case-filters,
.case-detail,
.case-detail__hero,
.static-page,
.contact-page,
.utility-page {
	background: transparent;
}

/* Case archive and detail banners follow the full-screen service-page treatment. */
.case-listing-hero,
.case-detail__hero {
	position: relative;
	display: grid;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	isolation: isolate;
	color: #fff6e8;
}
.case-listing-hero__image,
.case-detail__hero-image,
.case-listing-hero__shade,
.case-detail__hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.case-listing-hero__image,
.case-detail__hero-image {
	z-index: -2;
	max-width: none;
	object-fit: cover;
	object-position: center;
	filter: saturate(.82) contrast(1.04) brightness(.66);
}
.case-listing-hero__shade,
.case-detail__hero-shade {
	z-index: -1;
	background: linear-gradient(180deg, rgba(10, 7, 5, .68) 0%, rgba(10, 7, 5, .16) 38%, rgba(10, 7, 5, .84) 100%), radial-gradient(circle at 50% 50%, rgba(41, 22, 12, .04), rgba(11, 7, 5, .5));
}
.case-listing-hero__inner,
.case-detail__hero-inner {
	display: grid;
	width: 100%;
	place-items: center;
	padding: calc(var(--header-height) + clamp(2rem, 7vw, 5rem)) 0 clamp(3.5rem, 9vw, 7rem);
}
.case-listing-hero__copy,
.case-detail__hero-copy {
	display: grid;
	justify-items: center;
	gap: 1.25rem;
	max-width: 68rem;
	text-align: center;
}
.case-listing-hero .kicker,
.case-detail__hero .case-detail__eyebrow { justify-content: center; color: #f0c48f; }
.case-listing-hero h1,
.case-detail__hero h1 { max-width: none; margin: 0; color: #fff6e8; font-family: var(--font-body); font-size: clamp(2.85rem, 8vw, 6.4rem); font-weight: 600; letter-spacing: -.055em; line-height: .94; text-transform: none; }
.case-listing-hero__description,
.case-detail__meta { max-width: 42rem; margin: 0; color: hsla(35, 58%, 93%, .9); font-size: clamp(1rem, 2vw, 1.3rem); line-height: 1.42; text-transform: none; }
.case-detail__cover { display: none; }

/* Compact service cards with distinct request and detail actions. */
.service-card__body { padding: 1.1rem; }
.service-card h3 { margin-top: .55rem; }
.service-card__body > p:not(.service-card__audience) { margin-top: .75rem; }
.service-card ul { gap: .4rem; margin-top: .85rem; }
.service-card__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; margin-top: .9rem; }
.service-card__actions .button { width: 100%; min-height: 2.7rem; padding: .65rem .5rem; font-size: .6rem; letter-spacing: .045em; }
.kicker { display: none !important; }

@media (max-width: 23rem) {
	.service-card__actions { grid-template-columns: 1fr; }
}

/* Request modal matches the live Little Barista dialog. */
.request-modal {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 6rem 1rem 1rem;
}
.request-modal__backdrop {
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.request-modal__dialog {
	width: min(100%, 28rem);
	max-height: calc(100vh - 7rem);
	margin: 0;
	padding: clamp(1rem, 4vw, 2rem);
	border: .125rem solid rgba(245, 158, 11, .3);
	border-radius: 1rem;
	background: #0d0a08;
	box-shadow: 0 1.25rem 1.5625rem -.3125rem rgba(0, 0, 0, .1), 0 .625rem .625rem -.3125rem rgba(0, 0, 0, .04);
	overflow-y: auto;
	color: #fffbeb;
}
.request-modal__close {
	top: .5rem;
	right: .5rem;
	width: 2rem;
	height: 2rem;
	padding: .25rem;
	color: #6b7280;
	font-size: 1.5rem;
	transition: color .2s ease;
}
.request-modal__close:hover { color: #d1d5db; }
.request-modal__dialog h2 {
	margin: 0;
	padding-right: 2rem;
	color: #fffbeb;
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 4vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
}
.request-modal__intro {
	margin-top: .5rem;
	color: rgba(255, 251, 235, .8);
	font-size: clamp(.875rem, 3vw, 1rem);
	line-height: 1.5;
}
.request-modal__form { grid-template-columns: 1fr; gap: .75rem; margin-top: 1rem; }
.request-modal__form label { gap: .25rem; color: rgba(255, 251, 235, .8); font-size: .875rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.request-modal__form input,
.request-modal__form textarea {
	padding: .5rem .75rem;
	border: .0625rem solid rgba(245, 158, 11, .3);
	border-radius: .5rem;
	background: #0f0d0b;
	color: #fffbeb;
	font-size: .875rem;
}
.request-modal__form input:focus,
.request-modal__form textarea:focus { border-color: transparent; box-shadow: 0 0 0 .125rem rgba(180, 83, 9, .9); }
.request-modal__form .request-modal__message,
.request-modal__form .button,
.request-modal__status { grid-column: auto; }
.request-modal__form .button {
	min-height: 2.75rem;
	margin-top: .25rem;
	padding: .625rem 1rem;
	border: 0;
	border-radius: .5rem;
	background: #f59e0b;
	color: #0d0a08;
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	box-shadow: none;
}
.request-modal__form .button:hover { border: 0; background: #fbbf24; color: #0d0a08; box-shadow: none; transform: none; }

@media (min-width: 40rem) {
	.request-modal { padding-top: 7rem; }
	.request-modal__dialog { max-height: calc(100vh - 8rem); }
}

@media (min-width: 48rem) {
	.request-modal { padding-top: 8rem; }
	.request-modal__dialog { max-height: calc(100vh - 9rem); }
}

/* Reference palette: values taken verbatim from the supplied Little Barista CSS. */
:root {
	--brand-charcoal: #121212;
	--brand-white: #fff;
	--brand-copper: #c78149;
	--brand-terracotta: #cc6d3c;
	--brand-stone: #7a7a7a;
	--brand-beige: #e2d4c8;
	--brand-roast: #5c3a24;
	--brand-surface: #171312;
	--brand-surface-soft: #1d1715;
	--brand-border: rgba(199, 129, 73, .28);
	--brand-border-strong: rgba(199, 129, 73, .52);
	--brand-glow: rgba(199, 129, 73, .16);
	--header-bg: rgba(11, 7, 5, .58);
	--header-bg-scrolled: rgba(11, 7, 5, .78);
	--header-border: hsla(33, 57%, 62%, .14);
	--header-border-strong: hsla(33, 57%, 62%, .24);
	--text-main: #f2e4c8;
	--text-soft: #ceb089;
	--text-muted: #a27b53;
	--gold: #d6a15c;
	--gold-light: #f1d1a4;
	--gold-glow: hsla(33, 57%, 62%, .14);
	--primary: var(--brand-copper);
	--primary-dark: #9f6136;
	--primary-light: #d7b89f;
	--text: #f5eee4;
	--text-light: #b6a08c;
	--background: var(--brand-charcoal);
	--background-alt: #151110;
	--section-bg: #1a1412;
	--section-bg-alt: #171210;
	--section-bg-dark: #110d0c;
	--section-bg-light: #1d1715;

	/* Existing component tokens now point to the same source palette. */
	--ink: var(--brand-charcoal);
	--ink-soft: var(--brand-surface-soft);
	--paper: var(--brand-beige);
	--paper-deep: #f5eee4;
	--white: var(--brand-white);
	--accent: var(--brand-copper);
	--accent-dark: var(--primary-dark);
	--sage: var(--text-light);
	--line: var(--brand-border);
	--line-light: rgba(255, 255, 255, .16);
	--site-surface: var(--brand-surface);
	--site-surface-raised: rgba(24, 15, 12, .82);
	--site-rule: var(--brand-border);
	--site-copy: var(--text-soft);
	--site-gradient:
		radial-gradient(circle at 20% 0, rgba(199, 129, 73, .08), transparent 26%),
		radial-gradient(circle at 80% 0, rgba(92, 58, 36, .18), transparent 28%),
		var(--brand-charcoal);
}

html,
body { background: var(--brand-charcoal); }

body {
	background: var(--site-gradient);
	background-attachment: fixed;
	color: var(--brand-beige);
}

.site-header__inner {
	background: linear-gradient(180deg, hsla(0, 0%, 100%, .03), hsla(0, 0%, 100%, .01)), var(--header-bg);
	border-color: var(--header-border);
	box-shadow: 0 .625rem 1.875rem rgba(0, 0, 0, .22), inset 0 .0625rem 0 hsla(0, 0%, 100%, .03);
}

.site-header.is-scrolled .site-header__inner,
body:not(.is-home) .site-header__inner {
	background: linear-gradient(180deg, hsla(0, 0%, 100%, .035), hsla(0, 0%, 100%, .012)), var(--header-bg-scrolled);
	border-color: var(--header-border-strong);
}

.site-nav__links > a,
.header-contact .lb-contact-identity__phone { color: var(--text-soft); }
.site-nav__links > a:hover,
.header-contact .lb-contact-identity__phone:hover { color: var(--text-main); }

.header-cta,
.button--accent,
.case-filters button.is-active {
	border-color: hsla(28, 31%, 84%, .28);
	background: linear-gradient(180deg, #f5eee4, #e7d5c0 48%, #c78149);
	color: #1f1611;
	box-shadow: 0 .625rem 1.625rem rgba(0, 0, 0, .22), 0 0 1.125rem rgba(199, 129, 73, .16), inset 0 .0625rem 0 hsla(0, 0%, 100%, .42);
}

.button:not(.button--accent):not(.button--paper) { color: #1f1611; }
.button--paper { color: var(--text-main); border-color: var(--brand-border-strong); }

.service-card,
.case-card,
.feedback-panel,
.utility-page__panel,
.service-page__pain-grid article,
.service-page__menu-grid article,
.service-page__trust-grid article {
	border-color: var(--brand-border);
	background: linear-gradient(180deg, hsla(0, 0%, 100%, .02), hsla(0, 0%, 100%, .01)), rgba(24, 15, 12, .82);
}

.service-card__body,
.case-card__body { background: transparent; }
.service-card h3,
.case-card h2,
.case-detail h1,
.service-page__section > h2,
.static-page h1,
.contact-page__intro h1 { color: var(--text); }
.service-card__body > p:not(.service-card__audience),
.case-card__summary,
.case-detail__text,
.static-page__body,
.contact-page__intro > p:last-of-type { color: var(--text-soft); }
.service-card__audience,
.case-card__meta,
.case-detail__eyebrow,
.case-detail__results span { color: var(--gold); }

.process {
	background:
		radial-gradient(circle at 20% 20%, rgba(181, 121, 53, .18), transparent 28%),
		radial-gradient(circle at 80% 10%, rgba(181, 121, 53, .12), transparent 24%),
		linear-gradient(180deg, #120c09, #090606);
}
.process-list,
.process-list li { border-color: var(--brand-border); }
.process-list li > span { border-color: hsla(37, 68%, 65%, .45); color: var(--gold-light); }
.process-list p { color: var(--text-soft); }

.contact-band,
.service-page__cta {
	background: radial-gradient(circle at 20% 0, rgba(190, 118, 45, .18), transparent 28%), radial-gradient(circle at 80% 50%, rgba(190, 118, 45, .1), transparent 22%), linear-gradient(180deg, #120c09, #0d0806 50%, #090605);
}

.site-footer {
	background: radial-gradient(circle at 20% 80%, rgba(181, 121, 53, .12), transparent 30%), radial-gradient(circle at 80% 80%, rgba(181, 121, 53, .08), transparent 25%), linear-gradient(180deg, #0a0705, #050403);
}

/* Event menu catalogue: food/store-card pattern adapted to the Little Barista visual system. */
.service-menu-catalog { margin-top: 1.5rem; }
.service-menu-catalog__filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.service-menu-catalog__filters button { min-height: 2.5rem; padding: .5rem 1rem; border: .0625rem solid var(--brand-border-strong); border-radius: 999px; background: transparent; color: var(--text-main); font: inherit; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.service-menu-catalog__filters button.is-active { border-color: hsla(28, 31%, 84%, .28); background: linear-gradient(180deg, #f5eee4, #e7d5c0 48%, #c78149); color: #1f1611; }
.service-menu-catalog__grid { display: grid; gap: 1rem; }
.service-menu-card { display: grid; overflow: hidden; border: .0625rem solid var(--brand-border); border-radius: .75rem; background: linear-gradient(180deg, hsla(0, 0%, 100%, .02), hsla(0, 0%, 100%, .01)), rgba(24, 15, 12, .82); }
.service-menu-card[hidden] { display: none; }
.service-menu-card__image { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.86) contrast(1.04) brightness(.82); }
.service-menu-card__body { display: grid; gap: .85rem; padding: 1rem; }
.service-menu-card__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.service-menu-card h3 { margin: 0; color: var(--text); font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 2.35rem); font-weight: 600; letter-spacing: -.025em; line-height: .9; }
.service-menu-card__price { flex: 0 0 auto; color: var(--gold-light); font-size: .85rem; font-weight: 700; white-space: nowrap; }
.service-menu-card__body .button { width: 100%; min-height: 2.8rem; padding: .65rem 1rem; font-size: .65rem; }

@media (min-width: 35rem) { .service-menu-catalog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .service-menu-catalog__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }

/* Film catering only: an editor-managed menu rendered as a readable list, not product cards. */
.film-menu-content { max-width: 76rem; }
.film-menu { display: grid; gap: clamp(2rem, 5vw, 4.5rem); }
.film-menu__intro { max-width: 42rem; margin: 0; color: var(--text-soft); font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.55; }
.film-menu__groups { display: grid; gap: 0; border-top: .0625rem solid var(--brand-border); }
.film-menu__group { padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-bottom: .0625rem solid var(--brand-border); }
.film-menu__group h2 { margin: 0 0 1rem; color: var(--gold-light); font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600; letter-spacing: -.025em; line-height: .9; }
.film-menu__group ul { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.film-menu__group li { position: relative; padding-left: 1.15rem; color: var(--text-main); font-size: clamp(.95rem, 1.4vw, 1.1rem); line-height: 1.35; }
.film-menu__group li::before { position: absolute; top: .56em; left: 0; width: .36rem; height: .36rem; border-radius: 50%; background: var(--gold); content: ""; }
.film-menu__notice { padding: clamp(1.35rem, 3vw, 2.15rem); border: .125rem solid var(--gold); border-radius: .75rem; background: linear-gradient(135deg, rgba(195, 128, 69, .19), rgba(20, 12, 9, .7)); box-shadow: inset 0 0 0 .0625rem rgba(255, 240, 211, .08); }
.film-menu__notice p { max-width: 48rem; margin: 0; color: #fff0dc; font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 600; letter-spacing: -.015em; line-height: 1.08; }

@media (min-width: 42rem) {
	.film-menu__groups { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 6vw, 6rem); }
	.film-menu__group { break-inside: avoid; }
}
