/*
Theme Name:        Feuerland
Theme URI:         https://feuerland.moorschmied.de
Description:       Cinematic Editorial Theme für die Doku-Plattform feuerland.moorschmied.de — Manufaktur Moorschmied. Multi-Page-Storytelling.
Author:            Manufaktur Moorschmied
Author URI:        https://moorschmied.de
Version:           2.0.0
License:           proprietär (intern)
Text Domain:       feuerland
*/

/* ==========================================================================
   1 — TOKEN-INHERITANCE + EIGENE TOKENS
   ========================================================================== */

:root {
	/* Moorschmied-Erbe (Typomeister v2) */
	--ms-text:      #2a2a2a;
	--ms-light:     #f5f3ef;
	--ms-gold:      #C67A3C;
	--ms-red:       #8B2D1A;
	--ms-deep:      #1a1a1a;

	/* Feuerland-spezifisch */
	--fl-night:     #0a0d12;
	--fl-paper:     #f0e8d4;
	--fl-paper-light: #faf6ec;
	--fl-bronze:    #8a6d3f;
	--fl-patina:    #b89968;
	--fl-ice:       #c5d4dc;
	--fl-fade:      rgba(255, 255, 255, 0.5);
	--fl-shadow:    0 1.5rem 3rem -1rem rgba(0, 0, 0, 0.35);

	/* Schriften */
	--ms-display:   "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
	--ms-body:      "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Skala (Major Third 1.25) */
	--scale-base:   clamp(1rem, 0.96rem + 0.22vw, 1.125rem);
	--step-sm:      0.875rem;
	--step-0:       1rem;
	--step-1:       1.25rem;
	--step-2:       1.5625rem;
	--step-3:       1.953rem;
	--step-4:       2.441rem;
	--step-5:       3.052rem;
	--step-6:       3.815rem;
	--step-7:       4.768rem;
	--step-8:       5.96rem;

	/* Spacing 8px-Basis */
	--space-2xs:    0.25rem;
	--space-xs:     0.5rem;
	--space-sm:     0.75rem;
	--space-md:     1rem;
	--space-lg:     1.5rem;
	--space-xl:     2.5rem;
	--space-2xl:    4rem;
	--space-3xl:    6rem;
	--space-4xl:    9rem;
	--space-5xl:    13rem;

	/* Lesebreiten */
	--measure:      62ch;
	--measure-narrow: 42ch;
	--measure-wide: 80ch;

	/* Container */
	--cont-max:     78rem;
	--cont-text:    44rem;
	--cont-edge:    clamp(1.25rem, 4vw, 3rem);
}

/* ==========================================================================
   2 — RESET / BASE
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	hanging-punctuation: first last;
}

body {
	margin: 0;
	font-family: var(--ms-body);
	font-size: var(--scale-base);
	line-height: 1.65;
	color: var(--ms-text);
	background: var(--fl-paper-light);
	font-feature-settings: "kern", "liga", "onum";
	text-rendering: optimizeLegibility;
}

img, picture, video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ms-red);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 0.2s;
}
a:hover { color: var(--ms-gold); }

/* ==========================================================================
   3 — TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
	font-family: var(--ms-display);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.005em;
	color: var(--ms-deep);
	margin: 0 0 var(--space-md) 0;
	text-wrap: balance;
}

h1 { font-size: clamp(var(--step-5), 7vw, var(--step-8)); }
h2 { font-size: clamp(var(--step-4), 5vw, var(--step-6)); margin-top: var(--space-3xl); }
h3 { font-size: clamp(var(--step-2), 3vw, var(--step-3)); margin-top: var(--space-2xl); }
h4 {
	font-size: var(--step-sm);
	font-family: var(--ms-body);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ms-gold);
	margin-bottom: var(--space-sm);
}

p {
	max-width: var(--measure);
	margin: 0 0 1.2em 0;
	text-wrap: pretty;
	hyphens: auto;
	-webkit-hyphens: auto;
}

em, i { font-style: italic; }
strong, b { font-weight: 700; }

/* Schiffsnamen + Werk-Titel kursiv */
.ship-name, .work-title { font-style: italic; }

/* ==========================================================================
   4 — LAYOUT-PRIMITIVES
   ========================================================================== */

.fl-container {
	max-width: var(--cont-max);
	margin-inline: auto;
	padding-inline: var(--cont-edge);
}

.fl-text {
	max-width: var(--cont-text);
	margin-inline: auto;
	padding-inline: var(--cont-edge);
}

/* ==========================================================================
   5 — SITE HEADER (minimal)
   ========================================================================== */

.fl-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: var(--space-lg) var(--cont-edge);
	color: #fff;
	pointer-events: none;
}

.fl-header__inner {
	max-width: var(--cont-max);
	margin-inline: auto;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.fl-brand {
	pointer-events: auto;
	color: #fff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fl-brand__title {
	font-family: var(--ms-display);
	font-size: var(--step-2);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.fl-brand__sub {
	font-size: var(--step-sm);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.75;
}

.fl-header--dark .fl-brand,
.fl-header--dark .fl-brand__title { color: var(--ms-deep); }
.fl-header--dark .fl-brand__sub { color: var(--ms-text); opacity: 0.6; }

/* ==========================================================================
   6 — HERO (full-bleed cinematic)
   ========================================================================== */

.fl-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	overflow: hidden;
	background: var(--fl-night);
	color: #fff;
	padding: var(--space-3xl) var(--cont-edge) var(--space-2xl);
	isolation: isolate;
}

.fl-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.fl-hero__media img,
.fl-hero__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fl-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.0) 25%, rgba(0,0,0,0.0) 55%, rgba(0,0,0,0.70) 100%),
		linear-gradient(90deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.0) 50%);
	z-index: -1;
}

.fl-hero__content {
	max-width: 56rem;
	position: relative;
}

.fl-hero__eyebrow {
	font-family: var(--ms-body);
	font-size: var(--step-sm);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ms-gold);
	margin: 0 0 var(--space-md) 0;
}

.fl-hero__title {
	color: #fff;
	font-size: clamp(var(--step-5), 7.5vw, var(--step-8));
	font-weight: 400;
	margin: 0 0 var(--space-md) 0;
	line-height: 1.05;
	max-width: 18ch;
}

.fl-hero__subline {
	font-family: var(--ms-display);
	font-style: italic;
	font-size: clamp(var(--step-1), 2.2vw, var(--step-2));
	color: rgba(255, 255, 255, 0.85);
	max-width: 38ch;
	margin: 0;
	line-height: 1.4;
}

.fl-hero__scroll {
	position: absolute;
	bottom: var(--space-lg);
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 4rem;
	background: rgba(255, 255, 255, 0.4);
	overflow: hidden;
}

.fl-hero__scroll::after {
	content: "";
	position: absolute;
	top: -100%;
	left: 0;
	width: 1px;
	height: 100%;
	background: var(--ms-gold);
	animation: scrollHint 2.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes scrollHint {
	0% { top: -100%; }
	100% { top: 100%; }
}

/* Hero-Variante: heller, für Pages ohne dunkles Bild */
.fl-hero--light { background: var(--fl-paper); color: var(--ms-deep); }
.fl-hero--light .fl-hero__title { color: var(--ms-deep); }
.fl-hero--light .fl-hero__subline { color: var(--ms-text); }

/* ==========================================================================
   7 — SECTION-RHYTHMUS
   ========================================================================== */

main { display: block; }

.fl-section {
	padding: var(--space-3xl) 0;
}

@media (min-width: 800px) {
	.fl-section { padding: var(--space-4xl) 0; }
}

.fl-section--tight { padding: var(--space-2xl) 0; }
@media (min-width: 800px) {
	.fl-section--tight { padding: var(--space-3xl) 0; }
}
.fl-section--dark { background: var(--fl-night); color: rgba(255,255,255,0.95); }
.fl-section--dark h2,
.fl-section--dark h3 { color: #fff; }
.fl-section--dark p { color: rgba(255,255,255,0.85); }
.fl-section--paper { background: var(--fl-paper-light); }
.fl-section--cream { background: var(--fl-paper); }

/* ==========================================================================
   8 — LEAD MIT DROP-CAP
   ========================================================================== */

.fl-lead {
	font-size: clamp(var(--step-1), 1.6vw, var(--step-2));
	line-height: 1.55;
	max-width: var(--measure);
	margin-inline: auto;
	color: var(--ms-text);
}

.fl-lead p { max-width: none; margin-bottom: 1em; }

.fl-lead p:first-of-type::first-letter {
	font-family: var(--ms-display);
	font-size: 5em;
	float: left;
	line-height: 0.85;
	padding-right: 0.1em;
	padding-top: 0.05em;
	color: var(--ms-gold);
	font-weight: 400;
	font-style: normal;
}

/* ==========================================================================
   9 — PULL QUOTE
   ========================================================================== */

.fl-pullquote {
	margin: var(--space-3xl) auto;
	max-width: 50rem;
	padding-inline: var(--cont-edge);
	text-align: center;
	position: relative;
}

.fl-pullquote::before {
	content: "„";
	display: block;
	font-family: var(--ms-display);
	font-size: 5rem;
	color: var(--ms-gold);
	line-height: 0.6;
	margin-bottom: var(--space-md);
}

.fl-pullquote__text {
	font-family: var(--ms-display);
	font-style: italic;
	font-size: clamp(var(--step-2), 3vw, var(--step-4));
	font-weight: 400;
	color: var(--ms-deep);
	line-height: 1.3;
	margin: 0 0 var(--space-md) 0;
	max-width: none;
	text-wrap: balance;
}

.fl-pullquote__source {
	font-family: var(--ms-body);
	font-size: var(--step-sm);
	font-style: italic;
	color: var(--ms-text);
	opacity: 0.75;
	max-width: none;
	margin: 0;
}

/* Pullquote auf dunklem Hintergrund */
.fl-section--dark .fl-pullquote__text { color: #fff; }
.fl-section--dark .fl-pullquote__source { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   10 — TWO-COL ASYMMETRISCH
   ========================================================================== */

.fl-twocol {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-2xl);
	max-width: var(--cont-max);
	margin-inline: auto;
	padding-inline: var(--cont-edge);
}

@media (min-width: 900px) {
	.fl-twocol { grid-template-columns: 1.4fr 1fr; gap: var(--space-3xl); }
	.fl-twocol--reverse { grid-template-columns: 1fr 1.4fr; }
	.fl-twocol--equal { grid-template-columns: 1fr 1fr; }
}

.fl-twocol p { max-width: none; }

/* ==========================================================================
   11 — FAKTENBLOCK
   ========================================================================== */

.fl-fact {
	background: var(--ms-deep);
	color: rgba(255,255,255,0.95);
	padding: var(--space-xl);
	font-family: var(--ms-body);
	font-size: var(--step-sm);
	line-height: 1.7;
	border-left: 3px solid var(--ms-gold);
}

.fl-fact h4 { color: var(--ms-gold); margin-top: 0; }
.fl-fact dt { font-weight: 600; opacity: 0.7; }
.fl-fact dd {
	margin: 0 0 var(--space-sm) 0;
	color: #fff;
	font-family: var(--ms-display);
	font-size: var(--step-1);
}

/* ==========================================================================
   12 — INLINE FIGURE / CAPTION
   ========================================================================== */

.fl-figure {
	margin: var(--space-3xl) 0;
	width: 100%;
}

.fl-figure--full {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	max-width: 100vw;
}

.fl-figure img {
	width: 100%;
	height: auto;
	display: block;
}

.fl-caption {
	font-family: var(--ms-body);
	font-style: italic;
	font-size: var(--step-sm);
	color: rgba(42,42,42,0.7);
	max-width: var(--cont-text);
	margin: var(--space-md) auto 0;
	padding-inline: var(--cont-edge);
	line-height: 1.5;
}

.fl-section--dark .fl-caption { color: rgba(255,255,255,0.65); }

/* Pendant-Pair (zwei Bilder nebeneinander) */
.fl-pendant {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
	max-width: var(--cont-max);
	margin: var(--space-3xl) auto;
	padding-inline: var(--cont-edge);
}

@media (min-width: 700px) {
	.fl-pendant { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

.fl-pendant figure { margin: 0; }
.fl-pendant .fl-caption {
	max-width: 100%;
	padding-inline: 0;
	margin-top: var(--space-sm);
}

/* ==========================================================================
   13 — TIMELINE (vertikal)
   ========================================================================== */

.fl-timeline {
	max-width: var(--cont-text);
	margin: var(--space-2xl) auto;
	padding-inline: var(--cont-edge);
	position: relative;
}

.fl-timeline::before {
	content: "";
	position: absolute;
	left: calc(var(--cont-edge) + 4.5rem);
	top: 0.5rem;
	bottom: 0.5rem;
	width: 1px;
	background: var(--ms-gold);
	opacity: 0.4;
}

.fl-timeline__row {
	display: grid;
	grid-template-columns: 5rem 1fr;
	gap: var(--space-lg);
	padding: var(--space-md) 0;
	align-items: baseline;
	position: relative;
}

.fl-timeline__row::before {
	content: "";
	position: absolute;
	left: 4.55rem;
	top: 1.25rem;
	width: 0.6rem;
	height: 0.6rem;
	background: var(--ms-gold);
	border-radius: 50%;
	transform: translateX(-50%);
}

.fl-timeline__year {
	font-family: var(--ms-display);
	font-size: var(--step-2);
	color: var(--ms-gold);
	font-weight: 400;
	line-height: 1;
}

.fl-timeline__event {
	font-family: var(--ms-body);
	font-size: var(--step-0);
	color: var(--ms-text);
	line-height: 1.5;
}

/* ==========================================================================
   14 — STORY-CARDS (Hub-Page)
   ========================================================================== */

.fl-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	max-width: var(--cont-max);
	margin-inline: auto;
	padding-inline: var(--cont-edge);
}

@media (min-width: 700px) { .fl-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .fl-cards { grid-template-columns: repeat(3, 1fr); } }

/* Featured-Card variant: First card spans full width as banner */
.fl-card--featured { grid-column: 1 / -1; }
@media (min-width: 1100px) {
	.fl-card--featured { display: grid; grid-template-columns: 1.4fr 1fr; }
	.fl-card--featured .fl-card__media { aspect-ratio: auto; height: 100%; min-height: 28rem; }
	.fl-card--featured .fl-card__body { padding: var(--space-2xl) var(--space-2xl) var(--space-xl); justify-content: center; }
	.fl-card--featured .fl-card__title { font-size: var(--step-5); }
	.fl-card--featured .fl-card__teaser { font-size: var(--step-1); line-height: 1.5; }
}

.fl-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	color: var(--ms-deep);
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.4s, box-shadow 0.4s;
	box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(0,0,0,0.12);
}

.fl-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 1.5rem 3rem -0.75rem rgba(0,0,0,0.25);
}

.fl-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--ms-deep);
}

.fl-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}

.fl-card:hover .fl-card__media img { transform: scale(1.04); }

.fl-card__body {
	flex: 1;
	padding: var(--space-lg) var(--space-lg) var(--space-xl);
	display: flex;
	flex-direction: column;
}

.fl-card__eyebrow {
	font-size: var(--step-sm);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ms-gold);
	margin: 0 0 var(--space-xs) 0;
	font-weight: 600;
}

.fl-card__title {
	font-family: var(--ms-display);
	font-size: var(--step-3);
	font-weight: 400;
	margin: 0 0 var(--space-sm) 0;
	color: var(--ms-deep);
	line-height: 1.15;
}

.fl-card__teaser {
	font-size: var(--step-0);
	line-height: 1.55;
	margin: 0 0 var(--space-md) 0;
	color: var(--ms-text);
	flex: 1;
	max-width: none;
}

.fl-card__more {
	font-family: var(--ms-body);
	font-size: var(--step-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ms-red);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.fl-card__more::after {
	content: "→";
	transition: transform 0.3s;
}

.fl-card:hover .fl-card__more::after { transform: translateX(4px); }

/* ==========================================================================
   15 — PEOPLE-CARDS (Mitwirkende)
   ========================================================================== */

.fl-people {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	max-width: var(--cont-max);
	margin-inline: auto;
	padding-inline: var(--cont-edge);
}

@media (min-width: 700px) { .fl-people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .fl-people { grid-template-columns: repeat(3, 1fr); } }

.fl-person {
	background: #fff;
	padding: var(--space-xl);
	border-top: 3px solid var(--ms-gold);
}

.fl-person h3 {
	font-family: var(--ms-display);
	font-size: var(--step-2);
	margin: 0 0 var(--space-2xs) 0;
	font-weight: 500;
}

.fl-person__role {
	font-family: var(--ms-body);
	font-size: var(--step-sm);
	color: var(--ms-gold);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: var(--space-md);
	font-weight: 600;
}

.fl-person p { margin: 0; max-width: none; font-size: var(--step-0); }

/* ==========================================================================
   16 — NEXT-LINK (Inter-Page-Navigation)
   ========================================================================== */

.fl-next {
	max-width: var(--cont-text);
	margin: var(--space-3xl) auto var(--space-2xl);
	padding: var(--space-2xl) var(--cont-edge);
	border-top: 1px solid rgba(42,42,42,0.15);
	text-align: center;
}

.fl-next__label {
	font-family: var(--ms-body);
	font-size: var(--step-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ms-text);
	opacity: 0.55;
	margin: 0 0 var(--space-md) 0;
}

.fl-next__link {
	font-family: var(--ms-display);
	font-size: var(--step-3);
	color: var(--ms-deep);
	text-decoration: none;
	font-weight: 400;
}

.fl-next__link:hover { color: var(--ms-gold); }

.fl-next__link::after {
	content: " →";
	color: var(--ms-gold);
}

/* ==========================================================================
   17 — FOOTER
   ========================================================================== */

.fl-footer {
	background: var(--ms-deep);
	color: rgba(255,255,255,0.7);
	padding: var(--space-3xl) var(--cont-edge) var(--space-2xl);
	font-size: var(--step-sm);
}

.fl-footer__inner {
	max-width: var(--cont-max);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
}

@media (min-width: 800px) {
	.fl-footer__inner { grid-template-columns: 1.2fr 2fr; }
}

.fl-footer__brand {
	font-family: var(--ms-display);
	font-size: var(--step-2);
	color: #fff;
	margin: 0 0 var(--space-xs) 0;
}

.fl-footer__site-index {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-sm) var(--space-lg);
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 600px) { .fl-footer__site-index { grid-template-columns: repeat(3, 1fr); } }

.fl-footer__site-index a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
}

.fl-footer__site-index a:hover { color: var(--ms-gold); }

.fl-footer__legal {
	margin-top: var(--space-2xl);
	padding-top: var(--space-md);
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: var(--step-sm);
	opacity: 0.6;
}

/* ==========================================================================
   18 — FORMS
   ========================================================================== */

.fl-form {
	display: grid;
	gap: var(--space-md);
	max-width: 36rem;
	margin-inline: auto;
}

.fl-form label {
	display: block;
	font-size: var(--step-sm);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ms-text);
	margin-bottom: var(--space-2xs);
}

.fl-form input,
.fl-form select,
.fl-form textarea {
	width: 100%;
	font-family: var(--ms-body);
	font-size: var(--step-0);
	padding: var(--space-sm) var(--space-md);
	border: 1px solid rgba(42,42,42,0.25);
	background: #fff;
	color: var(--ms-text);
	transition: border-color 0.2s;
}

.fl-form input:focus,
.fl-form select:focus,
.fl-form textarea:focus {
	outline: none;
	border-color: var(--ms-gold);
	box-shadow: 0 0 0 3px rgba(198, 122, 60, 0.15);
}

.fl-form button {
	background: var(--ms-deep);
	color: #fff;
	border: none;
	padding: var(--space-md) var(--space-2xl);
	font-family: var(--ms-body);
	font-size: var(--step-0);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
	justify-self: start;
	margin-top: var(--space-md);
}

.fl-form button:hover { background: var(--ms-gold); }

.fl-honeypot {
	position: absolute !important;
	left: -9999px !important;
	visibility: hidden !important;
}

/* ==========================================================================
   19 — DETAILS / FAQ
   ========================================================================== */

.fl-faq {
	max-width: var(--cont-text);
	margin-inline: auto;
}

.fl-faq details {
	border-bottom: 1px solid rgba(42,42,42,0.12);
}

.fl-faq summary {
	cursor: pointer;
	padding: var(--space-md) 0;
	font-family: var(--ms-display);
	font-size: var(--step-1);
	font-weight: 500;
	color: var(--ms-deep);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-md);
}

.fl-faq summary::-webkit-details-marker { display: none; }

.fl-faq summary::after {
	content: "+";
	font-family: var(--ms-display);
	font-size: var(--step-3);
	color: var(--ms-gold);
	transition: transform 0.3s;
	flex-shrink: 0;
}

.fl-faq details[open] summary::after { transform: rotate(45deg); }

.fl-faq .fl-faq__answer {
	padding: 0 0 var(--space-lg) 0;
}

.fl-faq .fl-faq__answer p { max-width: var(--measure); }

/* ==========================================================================
   20 — VERIFY-NOTE / DISCLAIMER
   ========================================================================== */

.fl-verify {
	max-width: var(--cont-text);
	margin: var(--space-xl) auto;
	padding: var(--space-md) var(--space-lg);
	background: rgba(198, 122, 60, 0.08);
	border-left: 2px solid var(--ms-gold);
	font-size: var(--step-sm);
	font-style: italic;
	color: var(--ms-text);
}

.fl-verify p { max-width: none; margin: 0; }

/* ==========================================================================
   21 — ACCESSIBILITY HELPERS
   ========================================================================== */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.screen-reader-text:focus {
	background-color: var(--ms-deep);
	clip: auto;
	clip-path: none;
	color: var(--ms-gold);
	display: block;
	font-size: var(--step-0);
	height: auto;
	left: 5px;
	line-height: normal;
	padding: var(--space-sm) var(--space-md);
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ==========================================================================
   22 — PRINT
   ========================================================================== */

@media print {
	.fl-hero { min-height: auto; padding: var(--space-md); background: #fff; color: var(--ms-deep); }
	.fl-hero__media { display: none; }
	.fl-hero__title { color: var(--ms-deep); }
	.fl-section--dark { background: #fff; color: var(--ms-deep); }
	.fl-footer, .fl-form, .fl-hero__scroll { display: none; }
	.fl-pullquote { page-break-inside: avoid; }
}
