/*
Theme Name: Unique Germany — Passion Play 2030
Theme URI: https://uniquegermany.de/
Author: Unique Germany
Author URI: https://uniquegermany.de/
Description: Trade portal for the Oberammergau Passion Play 2030 in the Unique Germany brand. Built from the CTI Booking & Conditions, Booking Procedure and FAQ documents. Creates all pages, the primary menu and the booking request form on activation. No external requests, no page builder, no tracking.
Version: 3.2.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ctipp
Tags: travel, one-column, custom-menu, custom-logo, translation-ready, accessibility-ready
*/

/* ==========================================================================
   Tokens
   The palette is sampled from the Unique Germany mark: a bronze-to-gold
   gradient on white. The dark surface is a warm charcoal rather than a navy,
   so gold stays the only chromatic accent on the page.
   ========================================================================== */

:root {
	--white: #fff;
	--paper: #faf7f2;
	--paper-2: #f2ece3;
	--ink: #1e1b18;
	--ink-soft: #5a534b;
	--ink-faint: #8d857a;

	--gold-dark: #8f5613;
	--gold: #c77e22;
	--gold-mid: #e08e28;
	--gold-light: #f39d30;
	--gold-tint: #fdf3e6;
	--gold-line: rgba(199, 126, 34, .32);

	--char: #23201c;
	--char-2: #2e2a25;

	--f-display: "Avenir Next", Avenir, "Century Gothic", "URW Gothic", "Segoe UI", system-ui, sans-serif;
	--f-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--f-data: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

	--grad: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold-light) 42%, var(--gold-mid) 70%, var(--gold-dark) 100%);

	--wrap: 1180px;
	--wrap-narrow: 760px;
	--gap: clamp(2.5rem, 6vw, 6rem);
	--radius: 0;
	--header-h: 76px;
	--rule: 1px solid rgba(30, 27, 24, .14);
	--rule-dark: 1px solid rgba(255, 255, 255, .16);
}

/* ==========================================================================
   Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--f-body);
	font-size: 17px;
	line-height: 1.66;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { text-decoration-color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 1rem; top: -100px; z-index: 999;
	background: var(--gold-dark); color: var(--white);
	padding: .75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

/* ==========================================================================
   Type — headings run light and wide, the way the wordmark is drawn
   ========================================================================== */

h1, h2, h3, h4 {
	font-family: var(--f-display);
	font-weight: 400;
	line-height: 1.16;
	letter-spacing: -.01em;
	margin: 0 0 .5em;
}
.h-xl { font-size: clamp(2.4rem, 5.4vw, 4.1rem); line-height: 1.06; }
.h-lg { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.h-md { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

p { margin: 0 0 1.1em; }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: var(--ink-soft); }

/* The eyebrow follows the reference site: a small uppercase label above every
   section heading, prefixed here with the tilted frame from the mark. */
.eyebrow {
	display: flex; align-items: center; gap: .7rem;
	font-family: var(--f-data);
	font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold); margin: 0 0 1rem;
}
.eyebrow::before {
	content: ""; flex: 0 0 auto;
	width: 9px; height: 9px;
	border: 1.5px solid var(--gold);
	transform: rotate(15.5deg);
}

.num { font-family: var(--f-data); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Tilted frame — the logo's own construction: a square frame rotated 15.45
   degrees (measured off the artwork) with the content sitting straight
   inside it. The frame must clear the photograph's corners, so it runs 32%
   wider and 84% taller than the image; .hero__frame reserves the room its
   rotated bounding box needs, and its bottom padding keeps the photo credit
   out from under the frame.
   ========================================================================== */

.hero__frame { padding: 30% 21% 33%; }

.framed { position: relative; display: block; isolation: isolate; }
.framed::before {
	content: "";
	position: absolute;
	inset: -42% -18%;
	border: clamp(3px, .5vw, 6px) solid var(--gold);
	transform: rotate(-15.45deg);
	z-index: -1;
	pointer-events: none;
}
@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
	.framed::before {
		border-color: transparent;
		background: var(--grad) border-box;
		-webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
		-webkit-mask-composite: xor;
		mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
		mask-composite: exclude;
	}
}

/* On a phone the rotated frame would shrink the photo to a thumbnail, so it
   straightens out and tightens up. */
@media (max-width: 640px) {
	.hero__frame { padding: 7% 6% 8%; }
	.framed::before { inset: -6%; transform: none; border-width: 3px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-block;
	font: 600 .8rem/1 var(--f-body);
	letter-spacing: .14em; text-transform: uppercase;
	padding: 1.05rem 1.9rem;
	border: 1px solid var(--gold);
	border-radius: var(--radius);
	text-decoration: none; cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--gold-dark); }
.btn--ghost:hover { background: var(--gold-tint); }
.btn--lg { padding: 1.15rem 2.3rem; font-size: .84rem; }

.band--char .btn--ghost, .cta--dark .btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, .45); }
.band--char .btn--ghost:hover, .cta--dark .btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--gold-light); }

/* ==========================================================================
   Site header — light, like the reference site, on a gold hairline
   ========================================================================== */

.siteheader {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .96);
	-webkit-backdrop-filter: saturate(140%) blur(6px);
	backdrop-filter: saturate(140%) blur(6px);
	border-bottom: 1px solid var(--gold-line);
}
.siteheader__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; margin-right: auto; }
.brand__name {
	font-family: var(--f-display); font-weight: 500; line-height: 1.1;
	font-size: clamp(1.05rem, 2vw, 1.28rem);
	letter-spacing: .13em; text-transform: uppercase;
	color: var(--gold-dark);
}
.brand img { height: 40px; width: auto; }

.nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav a {
	font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
	text-decoration: none; color: var(--ink-soft);
	padding: .4rem 0; border-bottom: 1px solid transparent;
}
.nav a:hover, .nav .current-menu-item > a { color: var(--gold-dark); border-bottom-color: var(--gold); }

.navtoggle {
	display: none; background: none; border: 1px solid var(--gold-line); color: var(--gold-dark);
	padding: .55rem .85rem; cursor: pointer;
	font: 600 .72rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase;
}
@media (max-width: 1120px) {
	.navtoggle { display: block; order: 3; }
	.siteheader .btn { order: 2; }
	.nav { order: 4; flex-basis: 100%; display: none; border-top: 1px solid var(--gold-line); padding: .75rem 0 1.15rem; }
	.nav.is-open { display: block; }
	.nav ul { flex-direction: column; gap: .1rem; }
	.nav a { display: block; padding: .65rem 0; border-bottom: 0; }
	.siteheader__inner { flex-wrap: wrap; padding-block: .8rem; }
}

/* ==========================================================================
   Decade rule — informational: the play runs once every ten years
   ========================================================================== */

.decade { display: flex; align-items: flex-end; margin: 2.1rem 0 2.4rem; max-width: 29rem; }
.decade__tick { flex: 1; position: relative; padding-top: 1.1rem; }
.decade__tick i { display: block; height: 1px; background: rgba(30, 27, 24, .22); position: relative; }
.decade__tick i::before { content: ""; position: absolute; left: 0; bottom: 0; width: 1px; height: 8px; background: rgba(30, 27, 24, .22); }
.decade__tick b { display: block; margin-top: .5rem; font: 400 .66rem/1 var(--f-data); letter-spacing: .12em; color: var(--ink-faint); }
.decade__tick.is-now { flex: 0 0 auto; padding-right: .2rem; }
.decade__tick.is-now i { background: var(--gold); height: 2px; width: 34px; }
.decade__tick.is-now i::before { height: 14px; width: 2px; background: var(--gold); }
.decade__tick.is-now b { color: var(--gold-dark); font-weight: 700; font-size: .78rem; }

.decade--light .decade__tick b { color: var(--ink-faint); }
.decade--dark .decade__tick i,
.decade--dark .decade__tick i::before { background: rgba(255, 255, 255, .26); }
.decade--dark .decade__tick b { color: rgba(255, 255, 255, .55); }
.decade--dark .decade__tick.is-now i,
.decade--dark .decade__tick.is-now i::before { background: var(--gold-light); }
.decade--dark .decade__tick.is-now b { color: var(--gold-light); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { background: var(--paper); }
.hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; min-height: 80vh; }
.hero__text {
	padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 4.5rem) clamp(3rem, 6vw, 5rem) 0;
	width: min(100%, calc(var(--wrap) / 2 + 1.25rem));
	margin-left: auto;
}
.hero__h { margin-bottom: .35em; }
.hero__h em { font-style: normal; display: block; color: var(--gold-dark); font-weight: 500; }
.hero__meta {
	font-family: var(--f-data);
	font-size: clamp(.9rem, 1.2vw, 1.05rem);
	line-height: 1.55;
	color: var(--ink-soft);
	margin-bottom: 1.7rem;
	padding-left: 1.05rem;
	border-left: 3px solid var(--gold);
	max-width: 36rem;
}
.hero__meta b {
	font-weight: 700;
	font-size: 1.1em;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold-dark);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.hero__media { position: relative; padding: 0 clamp(.5rem, 1.5vw, 1.5rem); }
.hero__media img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; object-position: 58% 50%; }
.hero__credit { margin: 0 0 1.5rem; font: 400 .66rem/1.5 var(--f-data); letter-spacing: .06em; color: var(--ink-faint); }

@media (max-width: 940px) {
	.hero__grid { grid-template-columns: 1fr; min-height: 0; }
	.hero__media { order: -1; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; padding-inline: 0; }
	.hero__text { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; padding: 2.5rem 0 3rem; }
}

/* Facts strip */
.facts { background: var(--char); color: rgba(255, 255, 255, .85); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts__item { padding: 1.7rem 1.4rem; border-left: 1px solid rgba(255, 255, 255, .12); }
.facts__item:first-child { border-left: 0; padding-left: 0; }
.facts__k { font: 400 .62rem/1 var(--f-data); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 .6rem; }
.facts__v { font-family: var(--f-display); font-size: 1.08rem; line-height: 1.3; margin: 0; color: var(--white); }
@media (max-width: 820px) {
	.facts__grid { grid-template-columns: repeat(2, 1fr); }
	.facts__item { border-left: 0; padding-inline: 0 1rem; }
	.facts__item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
}

/* ==========================================================================
   Trade-only notice — Unique Germany sells to advisors, not to operators
   ========================================================================== */

.tradebar { background: var(--gold-tint); border-bottom: 1px solid var(--gold-line); }
.tradebar__inner {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem;
	padding-block: .95rem; font-size: .87rem; color: var(--ink-soft);
}
.tradebar__k {
	font: 600 .64rem/1 var(--f-data); letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold-dark); flex: 0 0 auto;
}
.tradebar p { margin: 0; }

/* ==========================================================================
   Bands
   ========================================================================== */

.band { padding-block: var(--gap); }
.band--white { background: var(--white); }
.band--paper { background: var(--paper); }
.band--char { background: var(--char); color: rgba(255, 255, 255, .82); }
.band--char h1, .band--char h2, .band--char h3 { color: var(--white); }
.band--char .eyebrow { color: var(--gold-light); }
.band--char .eyebrow::before { border-color: var(--gold-light); }
.band--char .lede, .band--char .sectionhead__lede { color: rgba(255, 255, 255, .72); }
.band--char a { color: var(--white); }

.sectionhead { max-width: 44rem; margin-bottom: 2.6rem; }
.sectionhead__h { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .35em; }
.sectionhead__lede { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-soft); margin: 0; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split--reverse .split__media { order: -1; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.cols-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.5rem, 3vw, 2.75rem); }
.cols-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }

/* Figures */
.fig { margin: 0; }
.fig figcaption { font: 400 .68rem/1.5 var(--f-data); letter-spacing: .06em; color: var(--ink-faint); margin-top: .85rem; }
.band--char .fig figcaption { color: rgba(255, 255, 255, .48); }
.fig--wide img { width: 100%; }
.fig--plate { background: var(--white); padding: 1.4rem; border: 1px solid var(--gold-line); }

/* Lists */
.ticklist { list-style: none; margin: 0; padding: 0; }
.ticklist li { position: relative; padding-left: 1.6rem; margin-bottom: .6rem; }
.ticklist li::before {
	content: ""; position: absolute; left: 0; top: .55em;
	width: 7px; height: 7px; border: 1.5px solid var(--gold); transform: rotate(15.5deg);
}
.band--char .ticklist li::before { border-color: var(--gold-light); }

/* ==========================================================================
   Tables — hairlines and a gold rule instead of a filled header bar
   ========================================================================== */

.tablewrap { overflow-x: auto; margin: 0 0 1.5rem; }
.datatable { width: 100%; border-collapse: collapse; font-size: .93rem; }
.datatable caption {
	text-align: left; font: 600 .7rem/1 var(--f-data);
	letter-spacing: .22em; text-transform: uppercase; color: var(--gold); padding-bottom: .9rem;
}
.datatable th, .datatable td { padding: .82rem .9rem; text-align: left; vertical-align: top; }
.datatable thead th {
	background: var(--white);
	color: var(--gold-dark);
	font: 600 .68rem/1.3 var(--f-body); letter-spacing: .16em; text-transform: uppercase;
	border-bottom: 2px solid var(--gold);
	position: sticky; top: var(--header-h); z-index: 2;
}
.datatable tbody th { font-weight: 600; }
.datatable tbody tr { border-bottom: var(--rule); }
.datatable tbody tr:nth-child(even) { background: var(--paper); }
.datatable .num { font-family: var(--f-data); font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.datatable thead th.num { text-align: right; }

.band--char .datatable { color: rgba(255, 255, 255, .88); }
.band--char .datatable thead th { background: var(--char); color: var(--gold-light); }
.band--char .datatable tbody tr { border-bottom-color: rgba(255, 255, 255, .14); }
.band--char .datatable tbody tr:nth-child(even) { background: rgba(255, 255, 255, .05); }

@media (max-width: 1120px) { .datatable thead th { position: static; } }

/* ==========================================================================
   Callouts
   ========================================================================== */

.callout { border-left: 2px solid var(--gold); background: var(--gold-tint); padding: 1.15rem 1.4rem; margin: 1.5rem 0; }
.callout__label { font: 600 .66rem/1 var(--f-data); letter-spacing: .22em; text-transform: uppercase; margin: 0 0 .6rem; color: var(--gold-dark); }
.callout__body { font-size: .95rem; }
.callout__body > :last-child { margin-bottom: 0; }
.callout--tip { border-left-color: var(--gold); background: var(--gold-tint); }
.callout--warn { border-left-color: var(--ink); background: var(--paper-2); }
.callout--warn .callout__label { color: var(--ink); }

.band--char .callout { background: rgba(255, 255, 255, .06); border-left-color: var(--gold-light); }
.band--char .callout__label { color: var(--gold-light); }
.band--char .callout--warn { border-left-color: rgba(255, 255, 255, .5); }
.band--char .callout--warn .callout__label { color: rgba(255, 255, 255, .82); }

/* ==========================================================================
   Package cards
   ========================================================================== */

.pkg { background: var(--white); border: 1px solid var(--gold-line); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; }
.pkg__code { font: 400 .64rem/1 var(--f-data); letter-spacing: .24em; color: var(--gold); margin: 0 0 .8rem; }
.pkg__h { font-size: 1.5rem; margin-bottom: .3rem; }
.pkg__timing { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.pkg__aud { font-size: .94rem; padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: var(--rule); }
.pkg--alt { border-top: 2px solid var(--gold); }
.pkg .ticklist { font-size: .92rem; }
.pkg__rate {
	margin: 1.4rem 0 0; padding-top: 1.15rem; border-top: 2px solid var(--gold);
	font: 600 .72rem/1 var(--f-data); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark);
}
.band--char .pkg { background: var(--char-2); border-color: rgba(255, 255, 255, .16); }
.band--char .pkg__rate { color: var(--gold-light); }

/* Zones */
.zone { background: var(--white); border: 1px solid var(--gold-line); padding: clamp(1.5rem, 3vw, 2.1rem); }
.zone__n { font: 600 .66rem/1 var(--f-data); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin: 0 0 .7rem; }
.zone__h { font-size: 1.4rem; margin-bottom: .4rem; }
.zone__lede { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.1rem; }
.band--char .zone { background: var(--char-2); border-color: rgba(255, 255, 255, .16); }

/* ==========================================================================
   Date lists
   ========================================================================== */

.datelist { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.75rem 1.5rem; }
.datelist__month { break-inside: avoid; }
.datelist__h {
	font: 600 .66rem/1 var(--f-data); letter-spacing: .22em; text-transform: uppercase;
	padding-bottom: .65rem; margin: 0 0 .85rem; border-bottom: 2px solid var(--gold);
}
.band--char .datelist__h { color: var(--gold-light); }
.datelist__ul { list-style: none; margin: 0; padding: 0; font-family: var(--f-data); font-size: .83rem; }
.datelist__ul li { padding: .3rem 0; border-bottom: 1px solid rgba(30, 27, 24, .08); }
.band--char .datelist__ul li { border-bottom-color: rgba(255, 255, 255, .1); }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps__item {
	counter-increment: step;
	display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.5rem;
	padding: 1.8rem 0; border-top: var(--rule);
}
.steps__item:last-child { border-bottom: var(--rule); }
.steps__item::before {
	content: counter(step, decimal-leading-zero);
	font: 400 1.5rem/1 var(--f-data); color: var(--gold); padding-top: .15rem;
}
.steps__h { font-size: 1.18rem; margin-bottom: .35em; }
.steps__b { margin: 0; color: var(--ink-soft); }
.steps__item .callout { margin-bottom: 0; }
.band--char .steps__item { border-color: rgba(255, 255, 255, .14); }
.band--char .steps__b { color: rgba(255, 255, 255, .74); }
@media (max-width: 640px) { .steps__item { grid-template-columns: 1fr; gap: .5rem; } }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faqgroup { margin-bottom: 3rem; }
.faqgroup__h {
	font: 600 .7rem/1 var(--f-data); letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold); padding-bottom: .8rem; margin: 0 0 .5rem; border-bottom: 2px solid var(--gold);
}
.faq { border-bottom: var(--rule); }
.faq > summary {
	cursor: pointer; list-style: none; position: relative;
	padding: 1.2rem 2.5rem 1.2rem 0;
	font-family: var(--f-display); font-size: 1.06rem; line-height: 1.4;
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::after {
	content: ""; position: absolute; right: .5rem; top: 1.45rem;
	width: 9px; height: 9px; border: 1.5px solid var(--gold);
	transform: rotate(15.5deg); transition: transform .22s ease, background-color .22s ease;
}
.faq[open] > summary::after { transform: rotate(60.5deg); background: var(--gold); }
.faq > summary:hover { color: var(--gold-dark); }
.faq__a { padding: 0 2.5rem 1.5rem 0; font-size: .96rem; color: var(--ink-soft); }
.faq__a > :last-child { margin-bottom: 0; }

/* ==========================================================================
   Form
   ========================================================================== */

.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; }
.field { display: grid; gap: .45rem; }
.field label { font: 600 .66rem/1 var(--f-data); letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.field .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
	font: 400 1rem/1.5 var(--f-body);
	padding: .85rem .95rem;
	border: 1px solid rgba(30, 27, 24, .22);
	border-radius: var(--radius);
	background: var(--white); color: var(--ink); width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field__hint { font-size: .82rem; color: var(--ink-faint); margin: 0; }
.form__hp { position: absolute; left: -9999px; }

.notice { padding: 1rem 1.3rem; margin-bottom: 2rem; border-left: 2px solid; font-size: .95rem; }
.notice--ok { border-color: #4d7a3a; background: rgba(77, 122, 58, .1); }
.notice--err { border-color: #a8412a; background: rgba(168, 65, 42, .09); }

/* ==========================================================================
   Partner networks
   ========================================================================== */

.partners { border-top: 1px solid var(--gold-line); }
.partners__text { max-width: 34rem; }
.partners__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.partners__h { font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1.3; margin-bottom: .5em; max-width: 22em; }
.partners__p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.partners__logos {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start;
	gap: clamp(1.75rem, 4vw, 3.25rem);
}
.partners__logos img { max-height: 62px; width: auto; }
.partners__logos li:first-child img { max-height: 74px; }
.band--char .partners__logos img { filter: brightness(0) invert(1); opacity: .9; }
@media (max-width: 880px) {
	.partners__inner { grid-template-columns: 1fr; }
	.partners__logos { gap: 2rem; }
	.partners__logos img { max-height: 52px; }
	.partners__logos li:first-child img { max-height: 62px; }
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta { padding-block: clamp(2.75rem, 5vw, 4.25rem); }
.cta--light { background: var(--paper); border-top: 1px solid var(--gold-line); }
.cta--dark { background: var(--char); color: var(--white); }
.cta--dark .cta__h { color: var(--white); }
.cta--dark .cta__p { color: rgba(255, 255, 255, .74); }
.cta__inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.cta__h { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: .3em; }
.cta__p { max-width: 40rem; margin: 0; color: var(--ink-soft); }

/* ==========================================================================
   Page header
   ========================================================================== */

.pagehead { background: var(--paper); padding-block: clamp(2.75rem, 6vw, 4.75rem); border-bottom: 1px solid var(--gold-line); }
.pagehead__h { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: .3em; }
.pagehead__lede { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 46rem; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.sitefooter { background: var(--char); color: rgba(255, 255, 255, .7); padding-block: clamp(2.75rem, 5vw, 4rem) 2rem; font-size: .9rem; }
.sitefooter a { color: rgba(255, 255, 255, .82); }
.sitefooter a:hover { color: var(--gold-light); }
.sitefooter__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: var(--rule-dark); }
.sitefooter__h { font: 600 .66rem/1 var(--f-data); letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 1.1rem; }
.sitefooter ul { list-style: none; margin: 0; padding: 0; }
.sitefooter li { margin-bottom: .55rem; }
.sitefooter__logo { width: 124px; height: auto; margin-bottom: 1.2rem; }
.sitefooter__logo img { width: 124px; height: auto; }
.sitefooter__partners { color: var(--gold-light); font-size: .84rem; }
.sitefooter__legal { display: flex; flex-wrap: wrap; gap: .9rem 2rem; justify-content: space-between; padding-top: 1.7rem; font-size: .78rem; color: rgba(255, 255, 255, .48); }
.sitefooter__disclaimer { color: var(--gold-light); font-weight: 600; }
@media (max-width: 780px) { .sitefooter__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   Reveal
   ========================================================================== */

.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Editor content
   ========================================================================== */

.entry-content { max-width: var(--wrap-narrow); }
.entry-content h2 { font-size: 1.8rem; margin-top: 2em; }
.entry-content h3 { font-size: 1.35rem; margin-top: 1.8em; }
.entry-content ul, .entry-content ol { padding-left: 1.25rem; }
.entry-content li { margin-bottom: .45rem; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: .75rem .8rem; border-bottom: var(--rule); text-align: left; }
