/* ═══════════════════════════════════════════════════════════════
   OT 224 Rottweil — Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── Fonts ──────────────────────────────────────────────────── */

@font-face {
	font-family: 'Inter';
	src: url('/assets/fonts/Inter.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Fraunces';
	src: url('/assets/fonts/Fraunces.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Fraunces';
	src: url('/assets/fonts/Fraunces-Italic.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* ─── Design Tokens ──────────────────────────────────────────── */

:root {
	--ot-bg:          #0a0a0a;
	--ot-bg-elev:     #141414;
	--ot-surface:     #f7f5f0;
	--ot-surface-2:   #efece4;
	--ot-ink:         #111111;
	--ot-ink-mute:    #5a5a5a;
	--ot-ink-faint:   #9a9a9a;
	--ot-accent:      #c9a227;
	--ot-accent-soft: rgba(201,162,39,.10);
	--ot-accent-deep: #a0811c;
	--ot-rule-dark:   rgba(255,255,255,.12);
	--ot-rule-light:  rgba(0,0,0,.10);
	--ot-on-dark:     #f7f5f0;
	--ot-on-dark-mute:#9a968e;

	--ot-shadow: 0 10px 40px -10px rgba(0,0,0,.30);

	--container:      1240px;
	--gap:            clamp(1rem, 2vw, 1.5rem);

	--radius:         14px;
	--radius-lg:      22px;

	--ease:           cubic-bezier(.22,.61,.36,1);
}

/* ─── Reset ──────────────────────────────────────────────────── */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	font-size: 17px;
	line-height: 1.55;
	color: var(--ot-ink);
	background: var(--ot-surface);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-feature-settings: 'ss01', 'cv11';
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible {
	outline: 2px solid var(--ot-accent);
	outline-offset: 3px;
	border-radius: 2px;
}

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

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

/* ─── Utilities ──────────────────────────────────────────────── */

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ot-ink);
	color: var(--ot-on-dark);
	padding: .75rem 1rem;
	z-index: 999;
}
.skip:focus { left: 1rem; top: 1rem; }

.kicker {
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ot-ink-mute);
	margin: 0 0 1.25rem;
	display: inline-flex;
	align-items: center;
	gap: .6em;
}
.kicker::before {
	content: '';
	width: 2rem;
	height: 1px;
	background: currentColor;
	opacity: .5;
}
.kicker--light { color: var(--ot-on-dark-mute); }

.muted { color: var(--ot-ink-faint); }

/* ─── Typography ─────────────────────────────────────────────── */

.display {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-weight: 450;
	font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
	font-size: clamp(2.4rem, 5.6vw, 5.2rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 0 2rem;
	color: inherit;
	text-wrap: balance;
}

.display em {
	font-style: italic;
	font-weight: 380;
	font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
	color: var(--ot-accent);
}

.eyebrow {
	font-size: .82rem;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--ot-on-dark-mute);
	margin: 0 0 2rem;
}

.prose p {
	margin: 0 0 1.1em;
	max-width: 62ch;
	color: var(--ot-ink-mute);
	font-size: 1.05rem;
	line-height: 1.7;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ot-ink); font-weight: 600; }

/* ─── Buttons ────────────────────────────────────────────────── */

.btn {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	padding: .95rem 1.6rem;
	border-radius: 999px;
	font-weight: 500;
	font-size: .95rem;
	letter-spacing: .01em;
	transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
	background: var(--ot-on-dark);
	color: var(--ot-bg);
}
.btn--primary:hover { background: var(--ot-accent); color: var(--ot-bg); }
.btn--ghost {
	color: var(--ot-on-dark);
	border: 1px solid var(--ot-rule-dark);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }

/* hell auf dunkel switchen */
.section--light .btn--primary { background: var(--ot-ink); color: var(--ot-on-dark); }
.section--light .btn--primary:hover { background: var(--ot-accent); }


/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */

.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 1rem 0;
	color: var(--ot-on-dark);
	background: transparent;
	transition: background .3s var(--ease), backdrop-filter .3s var(--ot-ease), border-color .3s var(--ease);
	border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
	background: rgba(10,10,10,.72);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom-color: var(--ot-rule-dark);
}

.page-legal .nav {
	background: rgba(10,10,10,.85);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom-color: var(--ot-rule-dark);
}

.nav__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2.5rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.nav__brand {
	display: inline-flex;
	align-items: center;
	gap: .85rem;
}
.brand-mark {
	display: block;
	width: auto;
	height: 44px;
	object-fit: contain;
	object-position: left center;
}
.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.brand-text__line1 {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: .02em;
}
.brand-text__line2 {
	font-size: .74rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ot-on-dark-mute);
}

.nav__links {
	display: none;
	gap: 2rem;
	align-items: center;
	font-size: .92rem;
}
.nav__links a {
	position: relative;
	padding: .25rem 0;
	color: var(--ot-on-dark);
	opacity: .82;
	transition: opacity .2s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
	content: '';
	position: absolute;
	left: 0; right: 100%;
	bottom: -4px;
	height: 1px;
	background: var(--ot-accent);
	transition: right .25s var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
	padding: .5rem 1.15rem !important;
	border: 1px solid var(--ot-rule-dark);
	border-radius: 999px;
	opacity: 1 !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--ot-on-dark); color: var(--ot-bg); border-color: var(--ot-on-dark); }

.nav__toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 10px;
	margin: -10px -10px -10px 0;
}
.nav__toggle span {
	display: block;
	width: 22px; height: 1.5px;
	background: currentColor;
	transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav__mobile {
	display: none;
	flex-direction: column;
	padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
	gap: 1rem;
	border-top: 1px solid var(--ot-rule-dark);
	background: rgba(10,10,10,.95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.nav__mobile.is-open { display: flex; }

.nav__mobile a {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.6rem;
	padding: .35rem 0;
}

@media (min-width: 1024px) {
	.nav__links { display: inline-flex; }
	.nav__toggle { display: none; }
	.nav__mobile, .nav__mobile.is-open { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
	position: relative;
	min-height: 100svh;
	min-height: 100vh;
	background: var(--ot-bg);
	color: var(--ot-on-dark);
	display: flex;
	align-items: center;
	padding: 7rem 0 4rem;
	overflow: hidden;
	isolation: isolate;
}

/* Wappen prominent oben im Hero */
.hero__crest {
	display: block;
	width: auto;
	height: clamp(140px, 22vw, 230px);
	margin: 0 0 2.25rem;
	filter: drop-shadow(0 6px 30px rgba(0,0,0,.5)) drop-shadow(0 0 8px rgba(201,162,39,.12));
	transition: transform .6s var(--ease);
}
.hero__crest:hover { transform: translateY(-3px) rotate(-0.8deg); }

/* Lateinisches Motto — zweizeilige dekorative Linie */
.hero__motto {
	margin: 0 0 2.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-weight: 380;
	font-size: clamp(.95rem, 1.3vw, 1.1rem);
	letter-spacing: .04em;
	color: var(--ot-accent);
	max-width: 36rem;
}
.hero__motto::before,
.hero__motto::after {
	content: '';
	flex: 1 1 2rem;
	max-width: 3rem;
	height: 1px;
	background: currentColor;
	opacity: .45;
}
.hero__motto span { white-space: nowrap; }

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 80% 60% at 85% 15%, rgba(201,162,39,.12), transparent 60%),
		radial-gradient(ellipse 100% 80% at 10% 90%, rgba(255,255,255,.03), transparent 55%),
		linear-gradient(180deg, #0e0e0e 0%, #080808 100%);
}
.hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(transparent 0%, var(--ot-bg) 95%);
	opacity: .55;
}

.hero__inner {
	position: relative;
	width: 100%;
}

.hero__title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 380;
	font-variation-settings: 'opsz' 144, 'SOFT' 40, 'WONK' 0;
	font-size: clamp(3.4rem, 11.5vw, 10rem);
	line-height: .94;
	letter-spacing: -0.035em;
	margin: 0 0 2.2rem;
	text-wrap: balance;
	max-width: 14ch;
}
.hero__title em {
	font-style: italic;
	font-weight: 380;
	font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
	color: var(--ot-accent);
}

.hero__lede {
	font-size: clamp(1.08rem, 1.5vw, 1.32rem);
	line-height: 1.55;
	color: var(--ot-on-dark-mute);
	max-width: 48ch;
	margin: 0 0 2.75rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1rem;
	align-items: center;
}

.hero__scroll {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 30px; height: 48px;
	border: 1px solid var(--ot-rule-dark);
	border-radius: 999px;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding-top: 8px;
	color: var(--ot-on-dark-mute);
}
.hero__scroll span {
	display: block;
	width: 2px; height: 8px;
	background: currentColor;
	border-radius: 2px;
	animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
	0%,100% { transform: translateY(0); opacity: .4; }
	50%     { transform: translateY(12px); opacity: 1; }
}
@media (min-width: 1024px) {
	.hero__scroll { display: flex; }
}


/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.section {
	padding: clamp(5rem, 11vw, 9rem) 0;
	position: relative;
}
.section--light {
	background: var(--ot-surface);
	color: var(--ot-ink);
}
.section--dark {
	background: var(--ot-bg);
	color: var(--ot-on-dark);
}
.section--dark .prose p { color: var(--ot-on-dark-mute); }
.section--dark .prose strong { color: var(--ot-on-dark); }

.section-head {
	max-width: 48rem;
	margin: 0 0 clamp(3rem, 6vw, 5rem);
}
.section-head__lede {
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--ot-ink-mute);
	max-width: 56ch;
	margin: 1.5rem 0 0;
}
.section--dark .section-head__lede { color: var(--ot-on-dark-mute); }

/* 12-col Grid (Desktop), stack auf Mobile */
.grid-12 {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem) var(--gap);
	align-items: start;
}
.col-span-5, .col-span-6, .col-span-7, .col-span-12 {
	grid-column: 1 / -1;
}
@media (min-width: 960px) {
	.col-span-5  { grid-column: span 5; }
	.col-span-6  { grid-column: span 6; }
	.col-span-7  { grid-column: span 7; }
	.col-span-12 { grid-column: 1 / -1; }
}


/* ─── Facts box (Über uns) ───────────────────────────────────── */

.facts {
	background: var(--ot-surface-2);
	border: 1px solid var(--ot-rule-light);
	border-radius: var(--radius-lg);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	margin-top: 1.5rem;
}
.facts__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem 2.5rem;
	margin: 0;
}
@media (min-width: 560px) { .facts__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .facts__list { grid-template-columns: repeat(3, 1fr); } }

.facts__list > div {
	border-top: 1px solid var(--ot-rule-light);
	padding-top: 1rem;
}
.facts__list dt {
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ot-ink-mute);
	margin-bottom: .35rem;
}
.facts__list dd {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 450;
	margin: 0;
	color: var(--ot-ink);
}


/* ─── Values (4er-Grid) ──────────────────────────────────────── */

.values {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border-top: 1px solid var(--ot-rule-dark);
}
@media (min-width: 640px)  { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }

.value {
	padding: clamp(2rem, 3vw, 2.75rem) 1.75rem;
	border-right: 1px solid var(--ot-rule-dark);
	border-bottom: 1px solid var(--ot-rule-dark);
}
@media (min-width: 640px)  { .value:nth-child(2n)  { border-right: 0; } }
@media (min-width: 1024px) {
	.value:nth-child(2n)  { border-right: 1px solid var(--ot-rule-dark); }
	.value:last-child     { border-right: 0; }
	.value                { border-bottom: 0; }
}

.value__num {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-size: 1.1rem;
	color: var(--ot-accent);
	display: block;
	margin-bottom: 1.75rem;
	letter-spacing: .05em;
}
.value h3 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 420;
	font-size: clamp(1.75rem, 2.8vw, 2.3rem);
	letter-spacing: -0.02em;
	margin: 0 0 .9rem;
	color: var(--ot-on-dark);
}
.value p {
	font-size: .98rem;
	line-height: 1.6;
	color: var(--ot-on-dark-mute);
	margin: 0;
	max-width: 28ch;
}


/* ─── Pillars (3er-Grid) ─────────────────────────────────────── */

.pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
	background: #fff;
	border: 1px solid var(--ot-rule-light);
	border-radius: var(--radius-lg);
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pillar:hover {
	transform: translateY(-4px);
	border-color: rgba(0,0,0,.18);
	box-shadow: var(--ot-shadow);
}
.pillar__cover {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ot-bg);
}
.pillar__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(14%) saturate(.92) contrast(1.04);
	transition: transform .8s var(--ease), filter .8s var(--ease);
}
.pillar__cover::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.28));
	pointer-events: none;
}
.pillar:hover .pillar__cover img {
	transform: scale(1.04);
	filter: grayscale(0%) saturate(1) contrast(1.04);
}
.pillar__body {
	padding: clamp(2rem, 3vw, 2.75rem);
	display: flex;
	flex-direction: column;
	flex: 1;
}
.pillar__mark {
	font-family: 'Fraunces', Georgia, serif;
	font-size: .95rem;
	font-weight: 500;
	color: var(--ot-accent);
	margin-bottom: 2.5rem;
	letter-spacing: .08em;
}
.pillar h3 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 420;
	font-size: clamp(1.5rem, 2.2vw, 1.85rem);
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 0 0 1rem;
	color: var(--ot-ink);
}
.pillar p {
	margin: 0;
	color: var(--ot-ink-mute);
	font-size: 1rem;
	line-height: 1.65;
}


/* ─── Familie ────────────────────────────────────────────────── */

.family {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 720px)  { .family { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .family { grid-template-columns: repeat(4, 1fr); } }

.family__item {
	padding: clamp(1.75rem, 2.5vw, 2.25rem);
	border: 1px solid var(--ot-rule-dark);
	border-radius: var(--radius-lg);
	background: var(--ot-bg-elev);
	display: flex;
	flex-direction: column;
	transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.family__item:hover {
	border-color: rgba(255,255,255,.35);
	transform: translateY(-3px);
}
.family__tag {
	font-size: .7rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ot-accent);
	margin-bottom: 1.75rem;
}
.family__item h3 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 450;
	font-size: 1.55rem;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 .85rem;
}
.family__item p {
	font-size: .95rem;
	line-height: 1.55;
	color: var(--ot-on-dark-mute);
	margin: 0 0 1.5rem;
	flex: 1;
}
.family__item a {
	font-size: .88rem;
	font-weight: 500;
	color: var(--ot-on-dark);
	padding-top: 1rem;
	border-top: 1px solid var(--ot-rule-dark);
	transition: color .2s var(--ease);
}
.family__item a:hover { color: var(--ot-accent); }


/* ─── Join section ───────────────────────────────────────────── */

.section--join {
	background:
		radial-gradient(ellipse 70% 90% at 50% 50%, var(--ot-accent-soft), transparent 70%),
		var(--ot-surface);
	color: var(--ot-ink);
	padding: clamp(5rem, 11vw, 9rem) 0;
	text-align: center;
}
.join {
	max-width: 44rem;
	margin: 0 auto;
}
.join .kicker { justify-content: center; color: var(--ot-accent); }
.join .kicker::before { background: var(--ot-accent); opacity: 1; }
.join__lede {
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--ot-ink-mute);
	margin: 1.5rem auto 2.5rem;
	max-width: 40rem;
}


/* ─── Contact ────────────────────────────────────────────────── */

.contact__list {
	margin: 0;
	display: grid;
	gap: 1.5rem;
}
.contact__list > div {
	padding: 1.25rem 0;
	border-top: 1px solid var(--ot-rule-dark);
}
.contact__list > div:last-child { border-bottom: 1px solid var(--ot-rule-dark); }
.contact__list dt {
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ot-on-dark-mute);
	margin-bottom: .45rem;
}
.contact__list dd {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.4rem;
	font-weight: 420;
	margin: 0;
}
.contact__list dd a { color: var(--ot-on-dark); }
.contact__list dd a:hover { color: var(--ot-accent); }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
	background: #050505;
	color: var(--ot-on-dark);
	padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem;
	border-top: 1px solid var(--ot-rule-dark);
}
.footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 720px) {
	.footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
	.footer__meta  { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
	.footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
	.footer__meta  { grid-column: auto; text-align: right; }
}

.footer__brand .brand-mark {
	height: 56px;
	margin-bottom: 1rem;
}
.footer__brand p {
	margin: 0 0 .4rem;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.05rem;
}
.footer__brand p.muted {
	font-style: italic;
	color: var(--ot-on-dark-mute);
	font-size: .95rem;
}

.footer__nav h4 {
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ot-on-dark-mute);
	margin: 0 0 1rem;
}
.footer__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: .55rem;
}
.footer__nav a {
	color: var(--ot-on-dark);
	opacity: .82;
	font-size: .95rem;
	transition: opacity .2s var(--ease), color .2s var(--ease);
}
.footer__nav a:hover { opacity: 1; color: var(--ot-accent); }

.footer__meta p {
	margin: 0 0 .35rem;
	font-size: .88rem;
	color: var(--ot-on-dark-mute);
}
.footer__credits {
	font-size: .78rem !important;
	opacity: .7;
	margin-top: 1rem !important;
}
.footer__credits a { text-decoration: underline; text-decoration-color: var(--ot-rule-dark); text-underline-offset: 3px; }
.footer__credits a:hover { text-decoration-color: var(--ot-accent); color: var(--ot-accent); }


/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
   ═══════════════════════════════════════════════════════════════ */

.page-legal { background: var(--ot-surface); }

.legal {
	padding: 10rem 0 5rem;
}
.legal__inner {
	max-width: 48rem;
}
.legal .display {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	margin-bottom: 3rem;
}
.legal .prose h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 450;
	font-size: clamp(1.3rem, 2vw, 1.55rem);
	letter-spacing: -0.01em;
	margin: 3rem 0 1rem;
	color: var(--ot-ink);
}
.legal .prose h2:first-child { margin-top: 0; }
.legal .prose ul {
	margin: 0 0 1.5rem;
	padding-left: 1.25rem;
}
.legal .prose ul li {
	margin-bottom: .5rem;
	color: var(--ot-ink-mute);
	line-height: 1.65;
}
.legal .prose hr {
	border: 0;
	border-top: 1px solid var(--ot-rule-light);
	margin: 3rem 0;
}
.legal .prose code {
	background: var(--ot-surface-2);
	padding: .1em .45em;
	border-radius: 4px;
	font-size: .92em;
}
.legal__back {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--ot-rule-light);
}
.legal__back a {
	font-weight: 500;
	color: var(--ot-accent);
}


/* ═══════════════════════════════════════════════════════════════
   REVEAL / SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

.reveal {
	opacity: 0;
	transform: translateY(1.5rem);
	transition:
		opacity .8s var(--ease) var(--d, 0s),
		transform .8s var(--ease) var(--d, 0s);
	will-change: transform, opacity;
}
.reveal.in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	.reveal { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}
