.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-5);
}

.container-narrow {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: 0 var(--space-5);
}

.eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	color: var(--text-tertiary);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: var(--space-3);
}

.eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--togkf-red);
}

.eyebrow.on-dark {
	color: rgba(255, 255, 255, 0.7);
}

.hero-eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: var(--space-4);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.hero-eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--togkf-red);
}

.display {
	font-family: 'Fraunces', Georgia, serif;
	font-variation-settings: "SOFT" 30, "opsz" 144;
	font-size: clamp(40px, 6.2vw, 88px);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 0 0 var(--space-4);
}

.display em {
	font-style: italic;
	font-variation-settings: "SOFT" 100, "opsz" 144;
	color: var(--togkf-red);
}

.display-hero {
	font-family: 'Fraunces', Georgia, serif;
	color: var(--surface-white);
	font-variation-settings: "SOFT" 50, "opsz" 144;
	font-size: clamp(42px, 5.8vw, 100px);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.035em;
	margin: 0;
	max-width: 14ch;
}

.lead {
	font-family: 'Manrope', sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--text-secondary);
	max-width: 56ch;
	margin: 0 0 var(--space-4);
}

.body {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-secondary);
	max-width: 56ch;
	margin: 0 0 var(--space-3);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
	border: 1px solid transparent;
	min-height: 52px;
	box-sizing: border-box;
	text-decoration: none;
}

.btn::after {
	content: "\2192";
	font-size: 14px;
	transition: transform 220ms ease;
}

.btn:hover::after {
	transform: translateX(4px);
}

.btn-primary {
	background: var(--togkf-red);
	color: #fff;
	border-color: var(--togkf-red);
}

.btn-primary:hover {
	background: var(--togkf-red-hover);
	border-color: var(--togkf-red-hover);
}

.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border-color: var(--text-primary);
}

.btn-outline:hover {
	background: var(--togkf-red);
	color: #fff;
	border-color: var(--togkf-red);
}

.btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
	background: #fff;
	color: var(--surface-cinema);
	border-color: #fff;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-primary);
	padding-bottom: 4px;
	border-bottom: 1px solid var(--text-primary);
	transition: color 220ms ease, border-color 220ms ease, gap 220ms ease;
	text-decoration: none;
}

.link-arrow::after {
	content: "\2192";
	transition: transform 220ms ease;
}

.link-arrow:hover {
	color: var(--togkf-red);
	border-color: var(--togkf-red);
	gap: 14px;
}

@media (max-width:800px) /* responsive */ {
	.container,
	.container-narrow {
		padding-left: var(--space-3);
		padding-right: var(--space-3);
	}
}

/* ---- Section layout ---- */

.section-block {
	padding: var(--space-8) 0;
	position: relative;
}

.surface-paper {
	background: var(--surface-paper);
}

.section-num {
	position: absolute;
	top: var(--space-7);
	left: var(--space-5);
	font-family: 'Fraunces', Georgia, serif;
	font-variation-settings: "SOFT" 0, "opsz" 144;
	font-weight: 300;
	font-style: italic;
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--togkf-red);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	pointer-events: none;
}

.h-section {
	font-family: 'Fraunces', Georgia, serif;
	font-variation-settings: "SOFT" 30, "opsz" 96;
	font-size: clamp(34px, 4.8vw, 64px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.022em;
	margin: 0 0 var(--space-4);
}

.h-section em {
	font-style: italic;
	font-variation-settings: "SOFT" 100, "opsz" 96;
	color: var(--togkf-red);
}

.split {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: var(--space-7);
	align-items: center;
}

.split.reverse {
	grid-template-columns: 7fr 5fr;
}

.split.reverse > :first-child {
	order: 2;
}

.frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--surface-paper-2);
}

.frame.ratio-square    { aspect-ratio: 1 / 1; }
.frame.ratio-portrait  { aspect-ratio: 4 / 5; }
.frame.ratio-landscape { aspect-ratio: 16 / 9; }
.frame.ratio-wide      { aspect-ratio: 21 / 9; }
.frame.ratio-tall      { aspect-ratio: 3 / 4; }

.frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1200ms cubic-bezier(.2, .7, .2, 1);
}

.frame:hover img {
	transform: scale(1.04);
}

.frame::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.18);
	pointer-events: none;
}

.frame-caption {
	margin-top: var(--space-2);
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-variation-settings: "SOFT" 50;
	font-size: 13px;
	color: var(--text-tertiary);
	letter-spacing: 0.2px;
}

.frame-caption::before {
	content: "— ";
	color: var(--togkf-red);
}

.drop-cap::first-letter {
	font-family: 'Fraunces', Georgia, serif;
	font-variation-settings: "SOFT" 0, "opsz" 144;
	font-weight: 500;
	font-size: 5.4em;
	line-height: 0.85;
	float: left;
	padding: 6px 14px 0 0;
	color: var(--togkf-red);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 900ms ease-out, transform 900ms ease-out;
}

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

.reveal.delay-1 { transition-delay: 120ms; }
.reveal.delay-2 { transition-delay: 240ms; }
.reveal.delay-3 { transition-delay: 360ms; }

/* ---- Full-bleed cinematic ---- */

.full-bleed {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	background: var(--surface-cinema);
	color: #fff;
}

.full-bleed .section-num {
	color: rgba(255, 255, 255, 0.45);
	z-index: 3;
}

.full-bleed .frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: unset;
}

.full-bleed .frame::after {
	box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.4);
}

.full-bleed-overlay {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: flex-end;
	padding-bottom: var(--space-7);
}

.full-bleed-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.75) 100%);
	z-index: -1;
}

.full-bleed .display {
	color: #fff;
}

.full-bleed .lead {
	color: rgba(255, 255, 255, 0.78);
}

@media (max-width:800px) /* responsive */ {
	.split,
	.split.reverse {
		grid-template-columns: 1fr;
		gap: var(--space-5);
	}
	.split.reverse > :first-child {
		order: 0;
	}
	.section-num {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---- Split text block ---- */

.split .text-block {
	max-width: 52ch;
}

/* =========================================================
   Pull quote — dark full-bleed, centered
   ========================================================= */

.pull-quote-section {
	background: var(--surface-cinema);
	padding: var(--space-8) 0;
	position: relative;
	overflow: hidden;
}

.pull-quote-section::before {
	content: "„";
	position: absolute;
	top: -0.15em;
	left: var(--space-5);
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-variation-settings: "SOFT" 100, "opsz" 144;
	font-size: clamp(200px, 28vw, 380px);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.04);
	line-height: 1;
	pointer-events: none;
}

.pull-quote {
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-variation-settings: "SOFT" 80, "opsz" 96;
	font-size: clamp(26px, 3.8vw, 52px);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.018em;
	color: rgba(255, 255, 255, 0.92);
	max-width: 26ch;
	margin: 0 0 var(--space-5);
}

.pull-quote em {
	color: var(--togkf-red);
	font-variation-settings: "SOFT" 100;
}

.pull-quote-attribution {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.pull-quote-attribution::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--togkf-red);
}

/* =========================================================
   Page Hero — cinematic banner for inner pages
   ========================================================= */
.page-hero {
	position: relative;
	height: 85vh;
	min-height: 420px;
	background: var(--surface-cinema);
	color: #fff;
	overflow: hidden;
}
.page-hero-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.page-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.page-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.78) 100%),
		radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.35) 100%);
}
.page-hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: var(--space-6);
}
.page-hero-content .container {
	width: 100%;
	flex-basis: auto !important;
}
.page-hero .hero-eyebrow {
	opacity: 0;
	transform: translateY(20px);
	animation: rise 900ms 200ms ease-out forwards;
}
.page-hero .display-hero {
	opacity: 0;
	transform: translateY(40px);
	animation: rise 1100ms 400ms ease-out forwards;
}

/* ---- Keyframes ---- */

@keyframes rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =========================================================
   Legal Content
   ========================================================= */

.legal-content {
	padding: var(--space-7) 0 var(--space-8);
}

.legal-shell {
	float: none;
	width: 100%;
	max-width: var(--container-narrow);
	margin: 0 auto;
}

.legal-intro {
	margin-bottom: var(--space-7);
	padding-bottom: var(--space-6);
	border-bottom: 1px solid var(--border-subtle);
}

.legal-intro-inner {
	float: none;
	width: 100%;
}

.legal-intro-copy p {
	margin: 0;
	max-width: 66ch;
	font-family: 'Manrope', sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-secondary);
}

.legal-section {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: var(--space-2) var(--space-6);
	padding: var(--space-5) 0;
	border-bottom: 1px solid var(--border-subtle);
}

.legal-section:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.legal-shell > .legal-section:nth-last-child(2) {
	border-bottom: none;
	padding-bottom: 0;
}

.legal-section-label-col,
.legal-section-body-col {
	float: none;
	width: auto;
}

.legal-section-label {
	padding-top: 4px;
}

.legal-section-label p {
	margin: 0;
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-variation-settings: "SOFT" 80, "opsz" 24;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--togkf-red);
}

.legal-section-body-col {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.legal-section > .bottom,
.legal-section-body-col > .bottom,
.legal-shell > .bottom {
	display: none;
}

.legal-text p,
.legal-address p {
	margin: 0;
	max-width: 68ch;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-secondary);
}

.legal-text a,
.legal-address a {
	color: var(--togkf-red);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 200ms ease, color 200ms ease;
}

.legal-text a:hover,
.legal-address a:hover {
	border-bottom-color: var(--togkf-red);
}

.legal-subtitle p {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--text-primary);
}

@media (max-width:800px) /* responsive */ {
	.legal-section {
		grid-template-columns: 1fr;
		gap: var(--space-2);
	}
}
