/* =====================================================================
   1225 Digital Design — Pixel-perfect Figma implementation
   Heavy minimalism + brutalism. Light base + drops of gold/green/burgundy.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. FONT-FACE — local (DSGVO compliant)
   --------------------------------------------------------------------- */
@font-face {
	font-family: 'Archivo Black';
	src: url('../fonts/ArchivoBlack-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-VariableFont_wght.woff2') format('woff2-variations'),
	     url('../fonts/Manrope-VariableFont_wght.woff2') format('woff2');
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2-variations'),
	     url('../fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}

/* ---------------------------------------------------------------------
   2. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
	/* Colors */
	--ink: #131515;
	--ink-soft: #050505;
	--light: #f5f8f6;
	--light-2: #f0eeec;
	--light-3: #fcfbf9;
	--white: #ffffff;
	--gold: #c19a48;
	--gold-soft: rgba(193, 154, 72, 0.5);
	--black: #000000;
	--green: #1b4136;
	--burgundy: #561519;
	--brown: #704632;
	--brown-soft: #d0bba9;
	--rust: #ac4817;
	--steel: #8faac3;
	--mute: #3f3c39;
	--line: #d9d9d9;

	/* Radii */
	--r-sm: 8px;
	--r-md: 24px;
	--r-lg: 40px;
	--r-xl: 60px;
	--r-pill: 130px;

	/* Fonts */
	--font-display: 'Archivo Black', 'Arial Black', Impact, sans-serif;
	--font-body: 'Space Grotesk', 'Inter', system-ui, sans-serif;
	--font-accent: 'Manrope', system-ui, sans-serif;

	/* Spacing scale */
	--s-1: 8px;
	--s-2: 16px;
	--s-3: 24px;
	--s-4: 32px;
	--s-5: 48px;
	--s-6: 64px;
	--s-7: 96px;
	--s-8: 128px;
	--s-9: 192px;

	/* Container */
	--container: 1240px;
	--gutter: 32px;

	/* Easing */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

	/* Header */
	--header-h: 88px;
}

@media (max-width: 768px) {
	:root {
		--gutter: 20px;
		--header-h: 72px;
	}
}

/* ---------------------------------------------------------------------
   3. RESET / BASE
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body.one225,
body.one225-home {
	margin: 0;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

body.one225 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--ease-out);
}

body.one225 button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

body.one225 ul,
body.one225 ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.one225 h1,
body.one225 h2,
body.one225 h3,
body.one225 h4,
body.one225 h5,
body.one225 h6 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	color: var(--ink);
}

body.one225 p {
	margin: 0;
}

body.one225 ::selection {
	background: var(--gold);
	color: var(--white);
}

/* Hide WordPress admin bar offset issues */
body.one225.admin-bar .o-nav {
	top: 32px;
}

@media (max-width: 782px) {
	body.one225.admin-bar .o-nav {
		top: 46px;
	}
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------------------------------------------------------------------
   4. LAYOUT — containers + grid utilities
   --------------------------------------------------------------------- */
.o-container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.o-container--wide {
	max-width: 1440px;
}

.o-section {
	position: relative;
	padding-block: clamp(80px, 12vw, 160px);
}

.o-section--tight {
	padding-block: clamp(48px, 8vw, 96px);
}

/* ---------------------------------------------------------------------
   5. TYPOGRAPHY UTILITIES
   --------------------------------------------------------------------- */
.h-mega {
	font-family: var(--font-display);
	font-size: clamp(64px, 14vw, 160px);
	line-height: 0.9;
	letter-spacing: -0.07em;
	text-transform: uppercase;
}

.h-display {
	font-family: var(--font-display);
	font-size: clamp(40px, 7vw, 96px);
	line-height: 0.9;
	letter-spacing: -0.07em;
	text-transform: uppercase;
}

.h-section {
	font-family: var(--font-display);
	font-size: clamp(36px, 6.5vw, 96px);
	line-height: 0.92;
	letter-spacing: -0.07em;
	text-transform: uppercase;
}

.h-lg {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 0.95;
	letter-spacing: -0.07em;
	text-transform: uppercase;
}

.t-body {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}

.t-body-lg {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.45;
	letter-spacing: -0.005em;
}

.t-body-xl {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(22px, 2.5vw, 32px);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.t-accent {
	font-family: var(--font-accent);
	font-weight: 500;
	font-size: clamp(20px, 2.2vw, 40px);
	line-height: 1.4;
	letter-spacing: -0.005em;
}

.t-eyebrow {
	font-family: var(--font-accent);
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* Color helpers */
.c-gold { color: var(--gold); }
.c-green { color: var(--green); }
.c-burgundy { color: var(--burgundy); }
.c-mute { color: var(--mute); }
.c-white { color: var(--white); }

/* ---------------------------------------------------------------------
   6. BUTTONS
   --------------------------------------------------------------------- */
.o-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 22px 36px;
	border-radius: var(--r-pill);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.005em;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
	will-change: transform;
	border: 1px solid transparent;
}

.o-btn--primary {
	background: var(--ink);
	color: var(--white);
}

.o-btn--primary:hover {
	background: var(--gold);
	color: var(--ink);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(193, 154, 72, 0.35);
}

.o-btn--gold {
	background: var(--gold);
	color: var(--ink);
}

.o-btn--gold:hover {
	background: var(--ink);
	color: var(--gold);
	transform: translateY(-2px);
}

.o-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}

.o-btn--ghost:hover {
	background: var(--ink);
	color: var(--white);
}

.o-btn--lg {
	padding: 28px 48px;
	font-size: 20px;
	border-radius: 200px;
}

@media (max-width: 480px) {
	.o-btn {
		padding: 18px 28px;
		font-size: 16px;
	}
	.o-btn--lg {
		padding: 22px 36px;
		font-size: 17px;
	}
}

/* ---------------------------------------------------------------------
   7. NAVIGATION (sticky header)
   --------------------------------------------------------------------- */
.o-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-3);
	padding: 20px var(--gutter);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), padding 0.3s var(--ease-out);
	border-bottom: 1px solid transparent;
}

.o-nav.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-bottom-color: rgba(19, 21, 21, 0.06);
	padding-block: 14px;
}

.o-nav__logo {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-display);
	font-size: 26px;
	letter-spacing: -0.05em;
	color: var(--ink);
}

.o-nav__logo span {
	color: var(--gold);
}

.o-nav__menu {
	display: flex;
	align-items: center;
	gap: 36px;
}

.o-nav__menu a {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	color: var(--ink);
	position: relative;
}

.o-nav__menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 0;
	background: var(--gold);
	transition: width 0.3s var(--ease-out);
}

.o-nav__menu a:hover::after {
	width: 100%;
}

.o-nav__cta {
	padding: 14px 24px;
	font-size: 15px;
}

.o-nav__burger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border-radius: 50%;
}

.o-nav__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}

.o-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.o-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.o-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
	.o-nav__menu,
	.o-nav__cta {
		display: none;
	}
	.o-nav__burger {
		display: flex;
	}

	.o-nav__mobile {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		background: var(--white);
		padding: var(--s-5) var(--gutter);
		display: flex;
		flex-direction: column;
		gap: var(--s-3);
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
		z-index: 99;
	}

	.o-nav__mobile.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.o-nav__mobile a {
		font-family: var(--font-display);
		font-size: 40px;
		letter-spacing: -0.05em;
		text-transform: uppercase;
		color: var(--ink);
	}

	.o-nav__mobile .o-btn {
		margin-top: var(--s-3);
		align-self: flex-start;
	}
}

@media (min-width: 901px) {
	.o-nav__mobile {
		display: none;
	}
}

/* ---------------------------------------------------------------------
   8. HERO
   --------------------------------------------------------------------- */
.o-hero {
	padding-top: calc(var(--header-h) + 100px);
	padding-bottom: clamp(80px, 12vw, 140px);
	background: var(--white);
	position: relative;
}

.o-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(16px, 2.5vw, 40px);
	margin-bottom: clamp(40px, 6vw, 80px);
	font-family: var(--font-accent);
	font-weight: 500;
	font-size: clamp(18px, 2vw, 40px);
	color: var(--ink);
	line-height: 1.45;
	letter-spacing: -0.005em;
}

.o-hero__tags span {
	display: inline-flex;
	align-items: center;
}

.o-hero__tags span + span::before {
	content: '·';
	margin-right: clamp(16px, 2.5vw, 40px);
	color: var(--gold);
	font-weight: 700;
}

.o-hero__title {
	font-size: clamp(60px, 14vw, 160px);
	line-height: 0.9;
	letter-spacing: -0.07em;
	max-width: 1100px;
	margin-bottom: clamp(32px, 5vw, 64px);
}

.o-hero__title em {
	font-style: normal;
	color: var(--gold);
}

.o-hero__sub {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(20px, 2.2vw, 32px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	max-width: 720px;
	color: var(--ink);
}

.o-hero__sub em {
	font-style: normal;
	color: var(--gold);
}

/* ---------------------------------------------------------------------
   9. SECTION HEADINGS + INTRO
   --------------------------------------------------------------------- */
.o-section__eyebrow {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 999px;
	border: 1px solid var(--ink);
	font-family: var(--font-accent);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: var(--s-4);
	color: var(--ink);
}

.o-section__title {
	max-width: 1200px;
	margin-bottom: clamp(32px, 4vw, 56px);
}

.o-section__intro {
	max-width: 820px;
	margin-bottom: clamp(48px, 6vw, 96px);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(22px, 2.5vw, 32px);
	line-height: 1.2;
	color: var(--ink);
}

.o-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-3);
	align-items: center;
	margin-top: var(--s-5);
}

.o-cta-note {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	color: var(--mute);
	line-height: 1.4;
}

/* ---------------------------------------------------------------------
   10. PAIN section
   --------------------------------------------------------------------- */
.o-pain {
	background: var(--white);
}

.o-pain__statement {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(22px, 2.6vw, 32px);
	line-height: 1.25;
	max-width: 880px;
	color: var(--ink);
	margin-bottom: var(--s-5);
}

/* ---------------------------------------------------------------------
   11. PROBLEM GRID (4 cards + central)
   --------------------------------------------------------------------- */
.o-problems {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 1200px;
	margin-top: var(--s-6);
}

.o-problem {
	position: relative;
	padding: 48px 40px;
	border-radius: var(--r-md);
	background: var(--light-2);
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.o-problem:hover {
	transform: translateY(-6px);
	background: var(--light-3);
}

.o-problem__title {
	font-family: var(--font-display);
	font-size: clamp(24px, 3vw, 40px);
	line-height: 0.95;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	margin-bottom: var(--s-3);
}

.o-problem__body {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(16px, 1.8vw, 22px);
	line-height: 1.4;
	color: var(--ink);
}

.o-problem--center {
	background: var(--ink);
	color: var(--white);
	grid-column: 1 / -1;
	max-width: 720px;
	justify-self: center;
	text-align: center;
	align-items: center;
	padding-block: var(--s-6);
}

.o-problem--center .o-problem__title,
.o-problem--center .o-problem__body {
	color: var(--white);
}

.o-problem--center .o-problem__title {
	color: var(--gold);
}

@media (max-width: 768px) {
	.o-problems {
		grid-template-columns: 1fr;
	}
	.o-problem {
		padding: 36px 28px;
	}
}

/* ---------------------------------------------------------------------
   12. METHOD FORMA — 5 letter blocks
   --------------------------------------------------------------------- */
.o-method {
	background: var(--white);
	overflow: hidden;
}

.o-forma {
	display: flex;
	flex-direction: column;
	gap: clamp(40px, 6vw, 80px);
	margin-top: clamp(64px, 9vw, 128px);
}

.o-forma__row {
	display: grid;
	grid-template-columns: minmax(140px, 220px) 1fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
	padding-block: clamp(24px, 4vw, 56px);
	border-top: 1px solid var(--line);
}

.o-forma__row:last-child {
	border-bottom: 1px solid var(--line);
}

.o-forma__letter {
	font-family: var(--font-display);
	font-size: clamp(96px, 14vw, 200px);
	line-height: 0.85;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	color: var(--ink);
	position: relative;
}

.o-forma__letter::after {
	content: '';
	position: absolute;
	bottom: 16px;
	right: -20px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--gold);
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
	transition-delay: 0.2s;
}

.o-forma__row.is-visible .o-forma__letter::after {
	opacity: 1;
	transform: scale(1);
}

.o-forma__content {
	padding-top: clamp(20px, 3vw, 48px);
}

.o-forma__name {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	margin-bottom: var(--s-3);
}

.o-forma__name strong {
	color: var(--gold);
	font-weight: inherit;
}

.o-forma__desc {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.4;
	color: var(--ink);
	max-width: 720px;
}

.o-method__closer {
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
	margin-top: clamp(56px, 8vw, 96px);
	max-width: 720px;
}

.o-method__closer .h-display {
	font-size: clamp(28px, 3.5vw, 40px);
}

@media (max-width: 768px) {
	.o-forma__row {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.o-forma__letter {
		font-size: 120px;
	}
}

/* ---------------------------------------------------------------------
   13. CASES — 5 case studies stacked
   --------------------------------------------------------------------- */
.o-cases {
	background: var(--white);
}

.o-cases__list {
	display: flex;
	flex-direction: column;
	gap: clamp(80px, 10vw, 160px);
	margin-top: clamp(64px, 9vw, 120px);
}

.o-case {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
	position: relative;
}

.o-case:nth-child(even) {
	direction: rtl;
}
.o-case:nth-child(even) > * {
	direction: ltr;
}

.o-case__visual {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--light-2);
	box-shadow: 0 30px 80px -40px rgba(19, 21, 21, 0.35);
}

.o-case__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease-out);
}

.o-case:hover .o-case__visual img {
	transform: scale(1.05);
}

.o-case__tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: var(--s-3);
}

.o-case__tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid var(--ink);
	font-family: var(--font-accent);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ink);
}

.o-case__title {
	font-family: var(--font-display);
	font-size: clamp(48px, 8vw, 120px);
	line-height: 0.9;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	margin-bottom: var(--s-3);
}

.o-case__title em {
	font-style: normal;
	color: var(--gold);
}

.o-case__subtitle {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.6vw, 36px);
	line-height: 1;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--s-4);
}

.o-case__did {
	margin-bottom: var(--s-5);
}

.o-case__label {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.6vw, 32px);
	line-height: 1;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: var(--s-2);
}

.o-case__text {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(17px, 1.8vw, 22px);
	line-height: 1.45;
	color: var(--ink);
	max-width: 560px;
}

.o-case__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-4);
	margin-top: var(--s-4);
	padding-top: var(--s-4);
	border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
	.o-case {
		grid-template-columns: 1fr;
		direction: ltr !important;
	}
	.o-case > * {
		direction: ltr !important;
	}
	.o-case__visual {
		aspect-ratio: 4 / 3;
	}
	.o-case__split {
		grid-template-columns: 1fr;
		gap: var(--s-3);
	}
}

/* Brand monograms fallback (when no image available) */
.o-mono {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: clamp(140px, 22vw, 280px);
	line-height: 0.85;
	letter-spacing: -0.07em;
	color: var(--gold);
	background: linear-gradient(160deg, var(--ink) 0%, #1f2424 100%);
}

.o-mono--green { background: linear-gradient(160deg, var(--green) 0%, #0f2a23 100%); color: var(--light); }
.o-mono--burgundy { background: linear-gradient(160deg, var(--burgundy) 0%, #340c0e 100%); color: var(--gold); }
.o-mono--cream { background: linear-gradient(160deg, var(--brown-soft) 0%, var(--brown) 100%); color: var(--ink); }
.o-mono--light { background: linear-gradient(160deg, var(--light-2) 0%, var(--light) 100%); color: var(--ink); }

/* ---------------------------------------------------------------------
   14. TESTIMONIALS — marquee
   --------------------------------------------------------------------- */
.o-testimonials {
	background: var(--light);
	padding-block: clamp(96px, 12vw, 160px);
	overflow: hidden;
}

.o-testimonials__header {
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
	margin-bottom: clamp(56px, 7vw, 96px);
}

.o-marquee {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.o-marquee__track {
	display: flex;
	gap: var(--s-4);
	animation: marquee 60s linear infinite;
	width: max-content;
}

.o-marquee:hover .o-marquee__track {
	animation-play-state: paused;
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.o-testimonial {
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
	flex: 0 0 460px;
	padding: 40px;
	background: var(--white);
	border-radius: var(--r-md);
	border: 1px solid rgba(19, 21, 21, 0.06);
}

.o-testimonial__eyebrow {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}

.o-testimonial__quote {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.45;
	color: var(--ink);
	flex: 1;
}

.o-testimonial__quote::before {
	content: '“';
	display: block;
	font-family: var(--font-display);
	font-size: 64px;
	line-height: 0.5;
	color: var(--gold);
	margin-bottom: 8px;
}

.o-testimonial__author {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	color: var(--ink);
	padding-top: var(--s-2);
	border-top: 1px solid var(--line);
}

@media (max-width: 480px) {
	.o-testimonial {
		flex-basis: 320px;
		padding: 28px;
	}
	.o-testimonial__quote {
		font-size: 18px;
	}
}

/* ---------------------------------------------------------------------
   15. BIG CTA section
   --------------------------------------------------------------------- */
.o-cta-big {
	background: var(--ink);
	color: var(--white);
	padding-block: clamp(120px, 16vw, 200px);
	text-align: center;
}

.o-cta-big .o-section__title {
	color: var(--white);
	margin-inline: auto;
}

.o-cta-big .o-section__title em {
	font-style: normal;
	color: var(--gold);
}

.o-cta-big__sub {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(22px, 2.5vw, 32px);
	line-height: 1.2;
	color: var(--white);
	max-width: 920px;
	margin: var(--s-4) auto;
}

.o-cta-big__note {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 20px;
	color: var(--gold);
	margin-top: var(--s-3);
}

.o-cta-big .o-btn--primary {
	background: var(--gold);
	color: var(--ink);
}
.o-cta-big .o-btn--primary:hover {
	background: var(--white);
	color: var(--ink);
}

/* ---------------------------------------------------------------------
   16. ABOUT
   --------------------------------------------------------------------- */
.o-about {
	background: var(--white);
}

.o-about__stats {
	display: grid;
	gap: var(--s-3);
	margin-top: clamp(48px, 6vw, 80px);
	max-width: 1100px;
}

.o-about__stat {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: var(--s-3);
	align-items: start;
	padding-block: var(--s-3);
	border-top: 1px solid var(--line);
}

.o-about__stat:last-of-type {
	border-bottom: 1px solid var(--line);
}

.o-about__stat-num {
	font-family: var(--font-display);
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--gold);
}

.o-about__stat-text {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 28px);
	line-height: 1.35;
	color: var(--ink);
}

.o-about__partners {
	margin-top: var(--s-6);
	max-width: 900px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 28px);
	line-height: 1.45;
	color: var(--ink);
}

.o-about__triad {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(16px, 3vw, 56px);
	margin-top: clamp(48px, 7vw, 96px);
	font-family: var(--font-accent);
	font-weight: 500;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: var(--ink);
}

.o-about__triad span {
	position: relative;
}

.o-about__triad span:not(:last-child)::after {
	content: '/';
	margin-left: clamp(8px, 1.5vw, 24px);
	color: var(--gold);
	font-weight: 600;
}

/* ---------------------------------------------------------------------
   17. LEISTUNGEN — service cards
   --------------------------------------------------------------------- */
.o-services {
	background: var(--light);
}

.o-services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: clamp(64px, 8vw, 96px);
	max-width: 1200px;
}

.o-service {
	position: relative;
	padding: clamp(36px, 4vw, 56px);
	background: var(--white);
	border-radius: var(--r-md);
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
	min-height: 240px;
	transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.o-service:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px -30px rgba(19, 21, 21, 0.2);
}

.o-service__index {
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}

.o-service__name {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.5vw, 40px);
	line-height: 0.95;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	color: var(--ink);
}

.o-service__desc {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(17px, 1.8vw, 22px);
	line-height: 1.4;
	color: var(--ink);
	max-width: 520px;
}

.o-service--last {
	grid-column: 1 / -1;
	max-width: 720px;
	justify-self: center;
	text-align: center;
	background: var(--ink);
	color: var(--white);
}

.o-service--last .o-service__name {
	color: var(--gold);
}
.o-service--last .o-service__desc {
	color: var(--light);
	margin-inline: auto;
}

@media (max-width: 768px) {
	.o-services__grid {
		grid-template-columns: 1fr;
	}
}

.o-services__closer {
	display: flex;
	flex-direction: column;
	gap: var(--s-2);
	margin-top: clamp(56px, 7vw, 96px);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(22px, 2.5vw, 32px);
	color: var(--ink);
	text-align: center;
}

/* ---------------------------------------------------------------------
   18. ABLAUF — 5 steps
   --------------------------------------------------------------------- */
.o-process {
	background: var(--white);
}

.o-process__steps {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: clamp(64px, 8vw, 96px);
}

.o-process__step {
	display: grid;
	grid-template-columns: minmax(180px, 280px) 1fr;
	gap: clamp(32px, 5vw, 96px);
	align-items: center;
	padding-block: clamp(32px, 4vw, 56px);
	border-top: 1px solid var(--line);
	transition: background 0.3s var(--ease-out);
}

.o-process__step:last-of-type {
	border-bottom: 1px solid var(--line);
}

.o-process__step:hover {
	background: var(--light-3);
}

.o-process__num {
	font-family: var(--font-display);
	font-size: clamp(80px, 12vw, 160px);
	line-height: 0.85;
	letter-spacing: -0.07em;
	color: var(--ink);
}

.o-process__step:hover .o-process__num {
	color: var(--gold);
}

.o-process__name {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 0.95;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	margin-bottom: var(--s-2);
}

.o-process__desc {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.4;
	color: var(--ink);
	max-width: 720px;
}

@media (max-width: 768px) {
	.o-process__step {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

.o-process__note {
	margin-top: clamp(48px, 6vw, 80px);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(20px, 2.3vw, 28px);
	line-height: 1.25;
	color: var(--ink);
	max-width: 720px;
}

/* ---------------------------------------------------------------------
   19. FAQ accordion
   --------------------------------------------------------------------- */
.o-faq {
	background: var(--white);
}

.o-faq__list {
	margin-top: clamp(56px, 7vw, 96px);
	max-width: 960px;
}

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

.o-faq__item:last-child {
	border-bottom: 1px solid var(--line);
}

.o-faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-3);
	padding: clamp(24px, 3vw, 36px) 0;
	text-align: left;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(18px, 2.2vw, 26px);
	line-height: 1.2;
	color: var(--ink);
	cursor: pointer;
	transition: color 0.25s var(--ease-out);
}

.o-faq__trigger:hover {
	color: var(--gold);
}

.o-faq__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
	position: relative;
}

.o-faq__icon::before,
.o-faq__icon::after {
	content: '';
	position: absolute;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.o-faq__icon::before {
	width: 14px;
	height: 2px;
}

.o-faq__icon::after {
	width: 2px;
	height: 14px;
}

.o-faq__item.is-open .o-faq__icon {
	background: var(--ink);
	border-color: var(--ink);
}

.o-faq__item.is-open .o-faq__icon::before,
.o-faq__item.is-open .o-faq__icon::after {
	background: var(--white);
}

.o-faq__item.is-open .o-faq__icon::after {
	transform: rotate(90deg);
}

.o-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s var(--ease-out);
}

.o-faq__panel-inner {
	overflow: hidden;
}

.o-faq__item.is-open .o-faq__panel {
	grid-template-rows: 1fr;
}

.o-faq__body {
	padding: 0 0 clamp(24px, 3vw, 36px);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(16px, 1.8vw, 20px);
	line-height: 1.5;
	color: var(--mute);
	max-width: 820px;
}

/* ---------------------------------------------------------------------
   20. FORM
   --------------------------------------------------------------------- */
.o-form-section {
	background: var(--ink);
	color: var(--white);
	padding-block: clamp(96px, 12vw, 160px);
}

.o-form-section .o-section__title {
	color: var(--white);
}

.o-form-section .o-section__title em {
	font-style: normal;
	color: var(--gold);
}

.o-form-section__lead {
	font-family: var(--font-accent);
	font-weight: 500;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.2;
	color: var(--gold);
	max-width: 720px;
	margin-bottom: clamp(48px, 6vw, 80px);
}

.o-form {
	display: grid;
	gap: var(--s-3);
	max-width: 720px;
}

.o-form__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.o-form__label {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.o-form__input,
.o-form__select,
.o-form__textarea {
	width: 100%;
	padding: 18px 20px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	font: 400 18px/1.4 var(--font-body);
	color: var(--white);
	transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.o-form__input:focus,
.o-form__select:focus,
.o-form__textarea:focus {
	outline: 0;
	border-color: var(--gold);
	background: rgba(193, 154, 72, 0.08);
}

.o-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'><path stroke='%23c19a48' stroke-width='2' d='m1 1 6 6 6-6'/></svg>");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 56px;
}

.o-form__select option {
	background: var(--ink);
	color: var(--white);
}

.o-form__textarea {
	resize: vertical;
	min-height: 140px;
	font-family: var(--font-body);
}

.o-form__submit {
	justify-self: start;
	margin-top: var(--s-3);
}

.o-form__msg {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	margin-top: var(--s-2);
}

.o-form__msg--success {
	color: var(--gold);
}

.o-form__msg--error {
	color: #ff7a7a;
}

.o-form-section__note {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(20px, 2.4vw, 32px);
	color: var(--white);
	margin-top: var(--s-5);
	max-width: 720px;
}

/* ---------------------------------------------------------------------
   21. FOOTER
   --------------------------------------------------------------------- */
.o-footer {
	background: var(--white);
	color: var(--ink);
	padding-block: clamp(80px, 10vw, 140px) clamp(32px, 4vw, 48px);
}

.o-footer__final {
	font-family: var(--font-display);
	font-size: clamp(40px, 8vw, 96px);
	line-height: 0.92;
	letter-spacing: -0.07em;
	text-transform: uppercase;
	margin-bottom: clamp(64px, 9vw, 120px);
	max-width: 1100px;
}

.o-footer__final em {
	font-style: normal;
	color: var(--gold);
}

.o-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: var(--s-5);
	padding-top: var(--s-6);
	border-top: 1px solid var(--line);
}

.o-footer__col h4 {
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mute);
	margin-bottom: var(--s-3);
}

.o-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.o-footer__nav a {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 18px;
	color: var(--ink);
	transition: color 0.25s var(--ease-out);
}

.o-footer__nav a:hover {
	color: var(--gold);
}

.o-footer__phone {
	display: inline-flex;
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1;
	letter-spacing: -0.06em;
	color: var(--gold);
	margin-top: 8px;
	transition: color 0.25s var(--ease-out);
}

.o-footer__phone:hover {
	color: var(--ink);
}

.o-footer__avail {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	color: var(--mute);
	margin-top: 12px;
}

.o-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--s-3);
	margin-top: var(--s-6);
	padding-top: var(--s-3);
	border-top: 1px solid var(--line);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 14px;
	color: var(--mute);
}

.o-footer__bottom-links {
	display: flex;
	gap: var(--s-3);
}

.o-footer__bottom-links a:hover {
	color: var(--gold);
}

@media (max-width: 768px) {
	.o-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--s-5);
	}
}

/* ---------------------------------------------------------------------
   22. ANIMATIONS — reveal on scroll
   --------------------------------------------------------------------- */
.o-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.o-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.o-reveal--delay-1 { transition-delay: 0.1s; }
.o-reveal--delay-2 { transition-delay: 0.2s; }
.o-reveal--delay-3 { transition-delay: 0.3s; }
.o-reveal--delay-4 { transition-delay: 0.4s; }

/* Stagger */
.o-stagger > * {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
	transition-delay: calc(var(--i, 0) * 80ms);
}

.o-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

/* Brand cubes (subtle) */
@keyframes float-y {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ---------------------------------------------------------------------
   23. SCROLLBAR (subtle)
   --------------------------------------------------------------------- */
body.one225 ::-webkit-scrollbar {
	width: 10px;
}
body.one225 ::-webkit-scrollbar-track {
	background: var(--white);
}
body.one225 ::-webkit-scrollbar-thumb {
	background: var(--line);
	border-radius: 10px;
}
body.one225 ::-webkit-scrollbar-thumb:hover {
	background: var(--gold);
}

/* ---------------------------------------------------------------------
   24. FOCUS STYLES (a11y)
   --------------------------------------------------------------------- */
body.one225 a:focus-visible,
body.one225 button:focus-visible,
body.one225 input:focus-visible,
body.one225 select:focus-visible,
body.one225 textarea:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 12px 18px;
	background: var(--ink);
	color: var(--white);
	font: 600 14px/1 var(--font-body);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.skip-link:focus {
	left: var(--gutter);
	top: 12px;
}

/* ---------------------------------------------------------------------
   25. MOBILE TWEAKS
   --------------------------------------------------------------------- */
@media (max-width: 480px) {
	.o-hero__tags {
		font-size: 16px;
		gap: 12px;
	}
	.o-hero__tags span + span::before {
		margin-right: 12px;
	}
	.o-section {
		padding-block: 64px;
	}
	.o-section__eyebrow {
		font-size: 11px;
		padding: 8px 16px;
	}
	.o-process__num {
		font-size: 96px;
	}
}

/* ============================================================
   CASE VISUALS — variants with real photos
   ============================================================ */
.o-case__visual {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink);
	aspect-ratio: 3 / 4;
}
.o-case__visual picture,
.o-case__visual picture img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .8s ease;
}
.o-case:hover .o-case__visual picture img { transform: scale(1.04); }
.o-case__visual--green   { background: linear-gradient(160deg, var(--green) 0%, #0f2a23 100%); }
.o-case__visual--burgundy{ background: linear-gradient(160deg, var(--burgundy) 0%, #340c0e 100%); }
.o-case__visual--ink     { background: linear-gradient(160deg, #1c1717 0%, #000 100%); }
.o-case__visual--light   { background: linear-gradient(160deg, var(--light-2, #ece8e0) 0%, var(--light) 100%); }
.o-case__visual--cream   { background: linear-gradient(160deg, #d0bba9 0%, #b89a7d 100%); }
.o-case__overlay-logo {
	position: absolute;
	left: 24px;
	top: 24px;
	width: 56px;
	height: auto;
	z-index: 2;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.o-case__visual--ink .o-case__overlay-logo,
.o-case__visual--burgundy .o-case__overlay-logo,
.o-case__visual--green .o-case__overlay-logo {
	filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

/* ============================================================
   HERO visual + ABOUT portrait
   ============================================================ */
.o-hero__visual {
	margin: clamp(48px, 8vw, 96px) 0 0;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16/7;
	max-height: 60vh;
}
.o-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.o-about__portrait {
	margin: 0 auto clamp(48px, 6vw, 80px);
	max-width: 480px;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 1/1;
}
.o-about__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}
@media (min-width: 900px) {
	.o-about__portrait {
		float: right;
		margin-left: clamp(48px, 6vw, 80px);
		shape-outside: inset(0 round var(--radius));
	}
}

/* ============================================================
   STATIC PAGES (Impressum / Datenschutz)
   ============================================================ */
.o-static {
	padding: clamp(96px, 12vw, 160px) 0 clamp(64px, 8vw, 96px);
	min-height: 60vh;
	background: var(--light);
}
.o-static .o-container--narrow { max-width: 800px; }
.o-static__title {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1;
	letter-spacing: -0.04em;
	margin: 0 0 clamp(32px, 5vw, 64px);
	color: var(--ink);
	text-transform: uppercase;
}
.o-static__body {
	font-family: 'Space Grotesk', system-ui, sans-serif;
	font-size: 18px;
	line-height: 1.7;
	color: var(--ink);
}
.o-static__body h2 {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-size: clamp(22px, 3vw, 28px);
	margin: 40px 0 16px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}
.o-static__body h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 28px 0 12px;
}
.o-static__body p { margin: 0 0 16px; }
.o-static__body a { color: var(--gold); text-decoration: underline; }
.o-static__body a:hover { text-decoration: none; }
