/* ==========================================================================
   CARPATHIAN RESERVE — Homepage v1 / theme v2.1
   Cinematic dark + gold, editorial serif, restrained interactions.
   Table of contents:
     1.  Design tokens
     2.  Reset & base
     3.  Typography helpers (eyebrow, headings, lead)
     4.  Layout (container, sections)
     5.  Buttons
     6.  Header + navigation (transparent → sticky)
     7.  Mobile nav
     8.  Hero
     9.  Services strip
     10. Promise / More Than a Hunt
     11. Featured experiences (ivory)
     12. How It Works
     13. Pricing + Trophy split
     14. Brand values strip
     15. Stats band
     16. Final CTA
     17. Footer
     18. Blog / page / prose
     19. Reveal animations & motion
     20. Responsive
     21. Experience pages (Red Stag …) — incl. its own responsive rules
   ========================================================================== */

/* 1. DESIGN TOKENS ========================================================= */
:root {
	/* Cool, misty dark — blue-teal slate in the style of the hero photo
	   (desaturated, premium, not a saturated forest green) */
	--forest-deep: #0b171c;
	--forest:      #0e1d23;
	--forest-2:    #13272e;
	--green-brand: #16262c;
	--night:       #070f13;
	--hero-bg:     #0e1f28;

	/* Gold */
	--gold:        #c9a24e;
	--gold-bright: #d4af37;
	--gold-soft:   #e4c078;
	--gold-pale:   #f2dca0;
	--gold-deep:   #b07f34;
	--grad-gold:   linear-gradient(160deg, #f2dca0 0%, #e4c078 30%, #cfa055 55%, #c7994f 76%, #b07f34 100%);

	/* Neutrals */
	--ivory:       #f3ead7;
	--cream:       #f4ead0;
	--ink:         #232c26;   /* text on ivory */
	--ink-soft:    #55605a;

	/* Text on dark */
	--tx:          #ece6d7;
	--tx-muted:    rgba(236, 230, 215, 0.66);
	--tx-faint:    rgba(236, 230, 215, 0.42);
	--hair:        rgba(201, 162, 78, 0.28);   /* gold hairline */
	--hair-soft:   rgba(236, 230, 215, 0.12);

	/* Type */
	--font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-caps:  "Cinzel", Georgia, serif;
	--font-sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Rhythm */
	--container: 1280px;
	--gutter: clamp(20px, 5vw, 64px);
	--section-y: clamp(64px, 9vw, 130px);
	--radius: 3px;

	--header-h: 168px;
	--header-h-stuck: 78px;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75);
}

/* 2. RESET & 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; } }

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.7;
	color: var(--tx);
	background: var(--forest-deep);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: rgba(201, 162, 78, 0.3); color: #fff; }

:focus-visible {
	outline: 2px solid var(--gold-bright);
	outline-offset: 3px;
	border-radius: 2px;
}

.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;
}

.cr-skip-link {
	position: fixed;
	left: 50%; top: -60px;
	transform: translateX(-50%);
	z-index: 2000;
	background: var(--gold); color: var(--night);
	padding: 10px 20px; border-radius: var(--radius);
	font-family: var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px;
	transition: top 0.25s var(--ease);
}
.cr-skip-link:focus { top: 12px; }

/* 3. TYPOGRAPHY HELPERS ==================================================== */
.cr-eyebrow {
	font-family: var(--font-caps);
	font-weight: 500;
	font-size: clamp(14px, 1.25vw, 17px); /* owner-approved size+tracking "B" (17 Aug 2026) */
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1.1em;
}
.cr-eyebrow--dark { color: var(--gold-deep); }

.cr-h2 {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: clamp(30px, 4.6vw, 54px);
	line-height: 1.06;
	letter-spacing: 0.005em;
	color: var(--tx);
}
.cr-h2--dark { color: var(--ink); }
.cr-h2__accent { color: var(--gold); font-style: italic; }
.cr-h2--dark .cr-h2__accent { color: var(--gold-deep); }

.cr-h3 {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.1;
	color: var(--tx);
}
.cr-h3--dark { color: var(--ink); }

.cr-lead {
	font-size: clamp(16px, 1.35vw, 18px);
	line-height: 1.8;
	color: var(--tx-muted);
	max-width: 54ch;
}

.cr-section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5vw, 66px); }
.cr-section-head .cr-h2 { margin: 0; }

/* 4. LAYOUT ================================================================ */
.cr-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-inline: var(--gutter);
}

.cr-section--dark        { background: var(--forest); }
.cr-section--forest      { background: var(--forest-2); }
.cr-section--forest-deep { background: var(--forest-deep); }
.cr-section--ivory       { background: var(--ivory); color: var(--ink); }

/* Thin gold hairline between stacked dark sections */
.cr-section--dark, .cr-section--forest, .cr-section--forest-deep { position: relative; }

/* 5. BUTTONS =============================================================== */
.cr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 16px 32px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
	will-change: transform;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}
.cr-btn:hover { transform: translateY(-2px); }

.cr-btn--gold {
	background: var(--grad-gold);
	color: #2a1e08;
	box-shadow: 0 14px 30px -14px rgba(201, 162, 78, 0.7);
}
.cr-btn--gold:hover { box-shadow: 0 20px 40px -14px rgba(201, 162, 78, 0.85); color: #241a06; }

.cr-btn--outline {
	background: transparent;
	color: var(--gold);
	border-color: rgba(201, 162, 78, 0.55);
}
.cr-btn--outline:hover { border-color: var(--gold); background: rgba(201, 162, 78, 0.1); color: var(--gold-pale); }

.cr-btn--ghost {
	background: rgba(255, 255, 255, 0.04);
	color: var(--tx);
	border-color: rgba(236, 230, 215, 0.35);
	backdrop-filter: blur(2px);
}
.cr-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--tx); }

.cr-btn--dark { color: var(--ink); border-color: rgba(35, 44, 38, 0.4); }
.cr-btn--dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: rgba(176, 127, 52, 0.08); }

.cr-btn--sm { padding: 12px 24px; font-size: 12px; }
.cr-btn--lg { padding: 19px 42px; font-size: 14px; }
.cr-btn--block { width: 100%; }

/* 6. HEADER =============================================================== */
.cr-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
	border-bottom: 1px solid transparent;
}
.cr-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 14px var(--gutter) 10px;
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 40px);
	transition: min-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.cr-header.is-stuck .cr-header__inner { padding-block: 6px; }

/* Transparent overlay on the homepage hero — no background band, no border
   (the hero scrim provides nav contrast). A border only appears once stuck. */
.cr-has-transparent-header .cr-header {
	background: transparent;
	border-bottom-color: transparent;
}
/* Inner pages: solid header from the start; push content below it */
body:not(.cr-has-transparent-header) .cr-header {
	background: var(--forest-deep);
	border-bottom-color: var(--hair-soft);
}
body:not(.cr-has-transparent-header) .cr-site-main { padding-top: var(--header-h); }

/* Stuck / scrolled state */
.cr-header.is-stuck {
	background: rgba(11, 24, 31, 0.94);
	backdrop-filter: blur(10px);
	box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.8);
	border-bottom-color: var(--hair);
}
.cr-header.is-stuck .cr-header__inner { min-height: var(--header-h-stuck); }

/* Brand + logo swap */
.cr-header__brand { display: flex; align-items: center; margin-right: auto; }
.cr-brand { display: inline-flex; align-items: center; }
.cr-logo { width: auto; }
.cr-logo--full    { height: clamp(108px, 10vw, 146px); transition: height 0.5s var(--ease), opacity 0.4s var(--ease); }
.cr-logo--compact { height: 50px; position: absolute; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }

.cr-header.is-stuck .cr-logo--full    { opacity: 0; height: 0; pointer-events: none; }
.cr-header.is-stuck .cr-logo--compact { opacity: 1; position: static; pointer-events: auto; }

/* Custom-logo fallback (Customizer) */
.cr-brand .custom-logo { height: clamp(58px, 7vw, 88px); width: auto; }

/* Navigation */
.cr-nav__menu { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.cr-nav__menu a {
	position: relative;
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tx);
	padding: 8px 2px;
	transition: color 0.3s var(--ease);
}
.cr-nav__menu a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%; bottom: 0;
	height: 1px;
	background: var(--grad-gold);
	transition: right 0.4s var(--ease);
}
.cr-nav__menu a:hover,
.cr-nav__menu .current-menu-item > a,
.cr-nav__menu .current_page_item > a { color: var(--gold-pale); }
.cr-nav__menu a:hover::after,
.cr-nav__menu .current-menu-item > a::after,
.cr-nav__menu .current_page_item > a::after { right: 0; }

/* dropdowns */
.cr-nav__menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 220px;
	background: rgba(11, 24, 30, 0.98);
	border: 1px solid var(--hair);
	padding: 8px 0;
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
	backdrop-filter: blur(8px);
}
.cr-nav__menu .menu-item-has-children { position: relative; }
.cr-nav__menu .menu-item-has-children:hover > .sub-menu,
.cr-nav__menu .menu-item-has-children:focus-within > .sub-menu,
.cr-nav__menu .menu-item-has-children.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.cr-nav__menu .sub-menu a { display: block; padding: 11px 22px; letter-spacing: 0.08em; color: var(--tx-muted); }
.cr-nav__menu .sub-menu a:hover { color: var(--gold-pale); }
.cr-nav__menu .sub-menu a::after { display: none; }
.cr-nav__menu .menu-item-has-children.is-open .cr-nav__caret,
.cr-nav__menu .menu-item-has-children:hover .cr-nav__caret { transform: translateY(2px); }

.cr-header__cta { display: flex; align-items: center; }

/* Dropdown caret on nav items that have children */
.cr-nav__caret { display: inline-block; width: 0; height: 0; margin-left: 7px; vertical-align: middle; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4px solid currentColor; opacity: 0.65; transition: transform 0.3s var(--ease); }
.cr-nav__menu a:hover .cr-nav__caret { opacity: 1; transform: translateY(2px); }

/* Burger */
.cr-burger { display: none; width: 46px; height: 46px; border: 1px solid rgba(201, 162, 78, 0.55); border-radius: var(--radius); background: rgba(6, 21, 15, 0.55); align-items: center; justify-content: center; }
.cr-header.is-stuck .cr-burger { background: transparent; border-color: var(--hair); }
.cr-burger__box { position: relative; width: 22px; height: 14px; display: block; }
.cr-burger__line, .cr-burger__box::before, .cr-burger__box::after {
	content: ""; position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--gold); transition: transform 0.35s var(--ease), opacity 0.2s var(--ease); border-radius: 2px;
}
.cr-burger__line { top: 50%; transform: translateY(-50%); }
.cr-burger__box::before { top: 0; }
.cr-burger__box::after  { bottom: 0; }
.cr-burger[aria-expanded="true"] .cr-burger__line { opacity: 0; }
.cr-burger[aria-expanded="true"] .cr-burger__box::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.cr-burger[aria-expanded="true"] .cr-burger__box::after  { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* 7. MOBILE NAV =========================================================== */
.cr-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(5, 11, 8, 0.97);
	backdrop-filter: blur(14px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}
.cr-mobile-nav.is-open { opacity: 1; }
.cr-mobile-nav[hidden] { display: none; }
.cr-mobile-nav__panel { text-align: center; padding: 40px; width: min(440px, 90vw); }
.cr-mobile-nav__menu { display: flex; flex-direction: column; gap: 6px; margin-bottom: 34px; }
.cr-mobile-nav__menu a {
	display: block;
	font-family: var(--font-serif);
	font-size: 28px;
	color: var(--tx);
	padding: 10px 0;
	transition: color 0.3s var(--ease);
}
.cr-mobile-nav__menu a:hover { color: var(--gold); }
.cr-mobile-nav__menu .sub-menu { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease); }
.cr-mobile-nav__menu .menu-item-has-children.is-open > .sub-menu { max-height: 460px; opacity: 1; margin-top: 4px; }
.cr-mobile-nav__menu .sub-menu a { font-size: 18px; color: var(--tx-muted); font-family: var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; }
.cr-mobile-nav__menu .cr-nav__caret { border-top-color: currentColor; }

/* 8. HERO ================================================================= */
.cr-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	/* Cool, misty blue-slate base — the photo sits on the right and dissolves
	   into this on the left, where the headline lives. */
	background: linear-gradient(102deg, #12242e 0%, #0e1f28 48%, #0a181f 100%);
}
/* Full-bleed hero photograph. The asset itself (hero-wide.jpeg) already
   contains the composition: real photo on the right (stag + spruces), a
   blurred/darkened mirrored-forest continuation on the left for the headline,
   mist extended to the very top. No CSS masking needed. */
.cr-hero__media {
	position: absolute; inset: 0;
	z-index: -2; overflow: hidden;
}
.cr-hero__img {
	position: absolute; inset: 0; z-index: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 62% 100%;         /* keep stag/trees framed on narrower screens */
	transform-origin: 62% 60%;
	/* slow, subtle "breathing" zoom in/out */
	animation: cr-heropan 26s ease-in-out infinite alternate;
}
@keyframes cr-heropan {
	from { transform: scale(1.0); }
	to   { transform: scale(1.06); }
}
.cr-hero__scrim {
	position: absolute; inset: 0; z-index: 1;
	background:
		/* gentle reinforcement only — the wide asset already carries the look */
		linear-gradient(90deg, rgba(8, 16, 21, 0.35) 0%, rgba(8, 16, 21, 0.12) 30%, rgba(8, 16, 21, 0) 52%),
		linear-gradient(0deg, rgba(8, 18, 24, 0.45) 0%, rgba(8, 18, 24, 0) 30%);
}
.cr-hero__vignette {
	position: absolute; inset: 0; z-index: 2; pointer-events: none;
	box-shadow: inset 0 0 200px 36px rgba(0, 0, 0, 0.35);
}
.cr-hero__inner { position: relative; width: 100%; padding-top: calc(var(--header-h) * 0.42); }
.cr-hero__content { max-width: 620px; }

.cr-hero__title {
	font-family: var(--font-serif);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 0.97;
	font-size: clamp(52px, 8.6vw, 116px);
	margin: 0;
	/* Warm champagne-gold, matching the reference (both lines) */
	color: #e2c896;
	background: linear-gradient(180deg, #f3e0b0 0%, #dcbd82 46%, #c69c55 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.55));
}
.cr-hero__line { display: block; }

.cr-hero__rule { display: flex; align-items: center; gap: 12px; margin: 26px 0 22px; color: var(--gold); }
.cr-hero__rule span { height: 1px; width: 60px; background: linear-gradient(90deg, var(--gold), transparent); }
.cr-hero__rule span:last-child { background: linear-gradient(270deg, var(--gold), transparent); }
.cr-hero__rule i { width: 7px; height: 7px; transform: rotate(45deg); border: 1px solid var(--gold); }

.cr-hero__lead {
	font-family: var(--font-serif);
	font-size: clamp(19px, 2.1vw, 24px);
	font-style: italic;
	line-height: 1.55;
	color: rgba(236, 230, 215, 0.9);
	max-width: 42ch;
	margin-bottom: 34px;
}
.cr-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.cr-hero__scroll {
	position: absolute;
	left: 50%; bottom: 26px;
	transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	color: var(--tx-muted);
	font-family: var(--font-caps);
	font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
}
.cr-hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.cr-hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-pale); animation: cr-scrolldot 2.2s var(--ease) infinite; }

@keyframes cr-scrolldot { 0% { top: -50%; } 60%, 100% { top: 120%; } }

/* 9. SERVICES ============================================================= */
.cr-services { padding-block: clamp(48px, 6vw, 84px); border-bottom: 1px solid var(--hair-soft); }
.cr-services__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: clamp(20px, 2vw, 34px);
}
.cr-service {
	text-align: center;
	padding: 12px clamp(6px, 1vw, 16px);
	position: relative;
}
.cr-service:not(:last-child)::after {
	content: ""; position: absolute; right: calc(clamp(20px, 2vw, 34px) / -2); top: 18%; bottom: 18%;
	width: 1px; background: var(--hair-soft);
}
.cr-service__icon { color: var(--gold); display: inline-flex; margin-bottom: 16px; }
.cr-service__icon svg { width: 46px; height: 46px; transition: transform 0.5s var(--ease); }
.cr-service:hover .cr-service__icon svg { transform: translateY(-4px) scale(1.06); }
.cr-service__title {
	font-family: var(--font-serif);
	font-size: 20px;
	line-height: 1.2;
	color: var(--tx);
	margin-bottom: 8px;
}
.cr-service__desc { font-size: 14px; line-height: 1.6; color: var(--tx-muted); margin: 0; }

/* 10. PROMISE ============================================================= */
.cr-promise { padding-block: var(--section-y); }
.cr-promise__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(36px, 5vw, 88px);
	align-items: center;
}
.cr-promise__media { position: relative; }
.cr-promise__frame { position: relative; border: 1px solid var(--hair); padding: 12px; }
.cr-promise__frame::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--hair-soft); pointer-events: none; z-index: 2; }
.cr-promise__img { width: 100%; height: clamp(360px, 46vw, 560px); object-fit: cover; object-position: 60% 50%; filter: saturate(1.02); }

/* Lodge photo placeholder (until a licensed interior photo is added) */
.cr-promise__ph { position: relative; width: 100%; height: clamp(360px, 46vw, 560px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: radial-gradient(130% 110% at 50% 0%, rgba(24,46,56,0.55) 0%, #0e1f28 55%, #0a181f 100%); }
.cr-promise__ph-mark { height: clamp(72px, 8vw, 100px); width: auto; opacity: 0.5; }
.cr-promise__ph-label { font-family: var(--font-caps); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--tx-faint); }

/* Partner / association strip (placeholder marks) */
.cr-assoc { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.cr-assoc__mark { width: 46px; height: 46px; border: 1px solid var(--hair); border-radius: 50%; display: block; position: relative; opacity: 0.6; }
.cr-assoc__mark::after { content: ""; position: absolute; inset: 12px; border: 1px solid var(--hair-soft); border-radius: 50%; }
.cr-assoc__label { font-family: var(--font-caps); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--tx-faint); margin-left: 6px; }

.cr-quote {
	position: absolute;
	right: clamp(-24px, -1.5vw, -8px);
	bottom: clamp(-40px, -3vw, -20px);
	width: min(300px, 78%);
	margin: 0;
	background: linear-gradient(160deg, rgba(6, 21, 15, 0.96), rgba(18, 48, 32, 0.96));
	border: 1px solid var(--hair);
	padding: 30px 28px 26px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(4px);
}
.cr-quote__mark { font-family: var(--font-serif); font-size: 62px; line-height: 0.4; color: var(--gold); display: block; height: 26px; }
.cr-quote__text { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--tx); margin: 0 0 14px; }
.cr-quote__cite { font-family: var(--font-caps); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.cr-promise__body { }
.cr-checklist { margin: 26px 0 30px; display: grid; gap: 14px; }
.cr-checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--tx-muted); font-size: 16px; }
.cr-checklist--tight { margin: 18px 0 26px; gap: 10px; }
.cr-check { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 2px; }

/* 11. FEATURED (ivory) ==================================================== */
.cr-featured { padding-block: var(--section-y); }
.cr-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(14px, 1.5vw, 22px);
}
.cr-card { }
.cr-card__link {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--green-brand);
	isolation: isolate;
}
.cr-card__bg {
	position: absolute; inset: 0; z-index: 0;
	background: radial-gradient(120% 90% at 50% 0%, #1c3527 0%, #0c1f16 60%, #06150f 100%);
	transition: transform 0.7s var(--ease);
}
.cr-card--photo .cr-card__bg {
	background-image: var(--card-img);
	background-size: cover;
	background-position: center;
}
.cr-card__link:hover .cr-card__bg { transform: scale(1.07); }
.cr-card__silhouette {
	position: absolute; inset: 0; z-index: 1;
	display: flex; align-items: center; justify-content: center;
	color: rgba(201, 162, 78, 0.42);
	transition: transform 0.7s var(--ease), color 0.5s var(--ease);
}
.cr-card__silhouette svg { width: 44%; height: 44%; }
.cr-card__link:hover .cr-card__silhouette { transform: scale(1.06) translateY(-4px); color: rgba(201, 162, 78, 0.6); }
.cr-card__shade {
	position: absolute; inset: 0; z-index: 2;
	background: linear-gradient(0deg, rgba(5, 11, 8, 0.92) 0%, rgba(5, 11, 8, 0.35) 40%, rgba(5, 11, 8, 0.05) 70%);
}
.cr-card__meta { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 22px 20px; text-align: center; }
.cr-card__title { display: block; font-family: var(--font-serif); font-size: clamp(18px, 1.5vw, 22px); letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.cr-card__tag { display: block; font-size: 12px; letter-spacing: 0.06em; color: var(--gold-pale); margin-top: 4px; }
.cr-card__link::after {
	content: ""; position: absolute; z-index: 4; inset: 10px; border: 1px solid transparent;
	transition: border-color 0.5s var(--ease); pointer-events: none; border-radius: 2px;
}
.cr-card__link:hover::after { border-color: rgba(201, 162, 78, 0.5); }

.cr-featured__cta { text-align: center; margin-top: clamp(34px, 4vw, 54px); }

/* 12. HOW IT WORKS ======================================================= */
.cr-how { padding-block: var(--section-y); }
.cr-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(16px, 2vw, 30px);
}
/* Connecting dashed track — decorative, drawn as a pseudo-element so the
   <ol> keeps a valid content model (li children only). */
.cr-steps::before {
	content: "";
	position: absolute; top: 34px; left: 10%; right: 10%; height: 1px;
	background: repeating-linear-gradient(90deg, var(--hair) 0 8px, transparent 8px 16px);
	z-index: 0;
}
.cr-step { position: relative; z-index: 1; text-align: center; }
.cr-step__badge {
	position: relative;
	width: 68px; height: 68px;
	margin: 0 auto 20px;
	display: grid; place-items: center;
	border: 1px solid var(--hair);
	border-radius: 50%;
	background: var(--forest-2);
	color: var(--gold);
	transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), background 0.5s var(--ease);
}
.cr-step:hover .cr-step__badge { border-color: var(--gold); transform: translateY(-3px); background: var(--forest); }
.cr-step__num {
	position: absolute; top: -8px; right: -8px;
	width: 24px; height: 24px; border-radius: 50%;
	background: var(--grad-gold); color: #241a06;
	font-family: var(--font-caps); font-size: 12px; font-weight: 600;
	display: grid; place-items: center;
}
.cr-step__icon svg { width: 30px; height: 30px; }
.cr-step__title { font-family: var(--font-serif); font-size: 21px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tx); margin-bottom: 8px; }
.cr-step__desc { font-size: 14px; line-height: 1.6; color: var(--tx-muted); margin: 0; padding: 0 6px; }

/* 13. PRICING + TROPHY SPLIT ============================================= */
.cr-split { display: grid; grid-template-columns: 1fr 1fr; }
.cr-split__pane { position: relative; display: flex; align-items: center; overflow: hidden; padding-block: var(--section-y); min-height: 420px; }
.cr-split__inner { position: relative; z-index: 3; width: 100%; max-width: 560px; margin-inline: auto; padding-inline: var(--gutter); }
.cr-split__pane--cream { background: var(--cream); color: var(--ink); }
.cr-split__pane--cream .cr-split__lead { color: var(--ink-soft); }
.cr-split__pane--dark { background: var(--green-brand); }
.cr-split__bg {
	position: absolute; inset: 0; z-index: 0;
	background: radial-gradient(120% 120% at 80% 20%, #1d3626 0%, #0d2016 55%, #06150f 100%);
}
.cr-split__pane--photo .cr-split__bg { background-image: var(--card-img); background-size: cover; background-position: center; }
.cr-split__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6, 21, 15, 0.85), rgba(6, 21, 15, 0.5)); }
.cr-split__icon { display: inline-flex; color: var(--gold); margin: 4px 0 18px; }
.cr-split__icon svg { width: 44px; height: 44px; }
.cr-split__icon--dark { color: var(--gold-deep); }
.cr-split__lead { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--tx-muted); margin-bottom: 26px; }
.cr-split__pane--cream .cr-h3 { margin-bottom: 4px; }

/* 14. BRAND VALUES ======================================================= */
.cr-values { padding-block: clamp(40px, 5vw, 68px); border-top: 1px solid var(--hair-soft); border-bottom: 1px solid var(--hair-soft); }
.cr-values__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2vw, 30px); }
.cr-value { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; position: relative; }
.cr-value:not(:last-child)::after { content: ""; position: absolute; right: calc(clamp(14px, 2vw, 30px) / -2); top: 20%; bottom: 20%; width: 1px; background: var(--hair-soft); }
.cr-value__icon { color: var(--gold); }
.cr-value__icon svg { width: 40px; height: 40px; }
.cr-value__title { font-family: var(--font-caps); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tx-muted); line-height: 1.4; }

/* 15. STATS ============================================================== */
.cr-stats { padding-block: clamp(46px, 6vw, 78px); }
.cr-stats__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2vw, 30px); }
.cr-stat { text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cr-stat:not(:last-child)::after { content: ""; position: absolute; right: calc(clamp(16px, 2vw, 30px) / -2); top: 16%; bottom: 16%; width: 1px; background: var(--hair-soft); }
.cr-stat__icon { color: var(--gold); opacity: 0.9; }
.cr-stat__icon svg { width: 34px; height: 34px; }
.cr-stat__num { font-family: var(--font-serif); font-weight: 600; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--gold-pale); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cr-stat__num--word { text-transform: uppercase; font-size: clamp(26px, 2.6vw, 36px); letter-spacing: 0.04em; }
.cr-stat__label { font-family: var(--font-caps); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tx-muted); }

/* 16. FINAL CTA ========================================================== */
.cr-cta { position: relative; padding-block: clamp(90px, 13vw, 190px); text-align: center; overflow: hidden; isolation: isolate; }
.cr-cta__bg { position: absolute; inset: 0; z-index: -2; background-image: var(--cta-bg); background-size: cover; background-position: center; filter: grayscale(0.2) brightness(0.5); transform: scale(1.05); }
.cr-cta__shade { position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 120% at 50% 50%, rgba(6, 21, 15, 0.55) 0%, rgba(6, 21, 15, 0.88) 75%); }
.cr-cta__inner { max-width: 820px; margin: 0 auto; }
.cr-cta__ornament { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--gold); margin-bottom: 26px; }
.cr-cta__ornament span { height: 1px; width: 70px; background: linear-gradient(90deg, transparent, var(--gold)); }
.cr-cta__ornament span:last-child { background: linear-gradient(270deg, transparent, var(--gold)); }
.cr-cta__ornament i { width: 8px; height: 8px; transform: rotate(45deg); border: 1px solid var(--gold); }
.cr-cta__title { font-family: var(--font-serif); font-size: clamp(30px, 4.6vw, 56px); line-height: 1.12; color: #fff; margin: 0 0 20px; }
.cr-cta__sub { font-size: clamp(16px, 1.4vw, 18px); color: var(--tx-muted); max-width: 60ch; margin: 0 auto 36px; }
.cr-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* 17. FOOTER ============================================================= */
.cr-footer { position: relative; background: var(--night); color: var(--tx); overflow: hidden; }
.cr-footer__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(closest-side, rgba(201, 162, 78, 0.1), transparent); pointer-events: none; }
.cr-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.4fr 0.9fr;
	gap: clamp(28px, 3vw, 54px);
	padding-block: clamp(56px, 7vw, 96px);
	align-items: start;
}
.cr-footer__logo { height: 96px; width: auto; margin-bottom: 20px; }
.cr-footer__tagline { font-size: 14.5px; line-height: 1.7; color: var(--tx-muted); max-width: 34ch; }
.cr-social { display: flex; gap: 12px; margin-top: 22px; }
.cr-social__link { width: 40px; height: 40px; border: 1px solid var(--hair); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.cr-social__link svg { width: 20px; height: 20px; fill: currentColor; }
.cr-social__link:hover { background: rgba(201, 162, 78, 0.12); border-color: var(--gold); transform: translateY(-3px); }

.cr-footer__heading { font-family: var(--font-caps); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.cr-footer__heading--news { margin-top: 30px; }
.cr-footer__links { display: grid; gap: 11px; }
.cr-footer__links a { font-size: 14.5px; color: var(--tx-muted); transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.cr-footer__links a:hover { color: var(--gold-pale); padding-left: 4px; }
.cr-footer__links--contact li { display: flex; align-items: center; gap: 10px; color: var(--tx-muted); font-size: 14.5px; }
.cr-i { width: 18px; height: 18px; flex: none; color: var(--gold); }
.cr-footer__hint { font-size: 12.5px; color: var(--tx-faint); margin-top: 10px; }

.cr-newsletter { display: flex; border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; max-width: 320px; min-width: 0; }
.cr-newsletter__input { flex: 1; min-width: 0; background: transparent; border: 0; padding: 12px 14px; color: var(--tx); font-family: var(--font-sans); font-size: 14px; }
.cr-newsletter__input::placeholder { color: var(--tx-faint); }
.cr-newsletter__input:focus { outline: none; }
.cr-newsletter__btn { background: var(--grad-gold); color: #241a06; border: 0; padding: 0 18px; font-size: 18px; transition: filter 0.3s var(--ease); }
.cr-newsletter__btn:hover { filter: brightness(1.08); }

.cr-footer__map { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gold); }
.cr-romania { width: 100%; max-width: 180px; height: auto; }
.cr-romania__pin { fill: var(--gold); }
.cr-romania__ring { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.5; animation: cr-pulse 3s ease-out infinite; transform-origin: 94px 55px; }
.cr-footer__maplabel { font-family: var(--font-caps); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tx-muted); }
@keyframes cr-pulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }

.cr-footer__bar { border-top: 1px solid var(--hair-soft); }
.cr-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; flex-wrap: wrap; }
.cr-footer__copy { margin: 0; font-size: 13px; color: var(--tx-faint); }
.cr-footer__legal { display: flex; gap: 24px; }
.cr-footer__legal a { font-size: 13px; color: var(--tx-muted); transition: color 0.3s var(--ease); }
.cr-footer__legal a:hover { color: var(--gold); }

/* 18. BLOG / PAGE / PROSE ================================================ */
.cr-page { min-height: 60vh; padding-block: var(--section-y); }
.cr-page__inner { width: 100%; }
.cr-page__inner--narrow { max-width: 800px; margin-inline: auto; }
.cr-postlist { display: grid; gap: 40px; }
.cr-postcard { border-bottom: 1px solid var(--hair-soft); padding-bottom: 36px; }
.cr-postcard__thumb { display: block; margin-bottom: 20px; overflow: hidden; border-radius: var(--radius); }
.cr-postcard__thumb img { transition: transform 0.7s var(--ease); }
.cr-postcard__thumb:hover img { transform: scale(1.05); }
.cr-postcard__title { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.cr-postcard__title a:hover { color: var(--gold); }
.cr-postcard__excerpt { color: var(--tx-muted); margin-bottom: 18px; }
.cr-pagination { margin-top: 48px; }
.cr-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 10px; margin: 0 4px; border: 1px solid var(--hair-soft); color: var(--tx-muted); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.cr-pagination .page-numbers.current, .cr-pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.cr-article__thumb { margin-bottom: 30px; border-radius: var(--radius); overflow: hidden; }
.cr-prose { font-size: 17px; line-height: 1.85; color: var(--tx-muted); }
.cr-prose h2, .cr-prose h3 { font-family: var(--font-serif); color: var(--tx); margin: 1.6em 0 0.5em; }
.cr-prose h2 { font-size: 1.9em; }
.cr-prose h3 { font-size: 1.5em; }
.cr-prose a { color: var(--gold); border-bottom: 1px solid var(--hair); }
.cr-prose a:hover { color: var(--gold-pale); }
.cr-prose img { border-radius: var(--radius); margin: 1.4em 0; }
.cr-prose blockquote { border-left: 2px solid var(--gold); padding-left: 24px; margin: 1.6em 0; font-family: var(--font-serif); font-style: italic; font-size: 1.3em; color: var(--tx); }
.cr-article__foot { margin-top: 40px; }
.cr-tags a { display: inline-block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--hair-soft); border-radius: 40px; margin: 0 6px 6px 0; color: var(--tx-muted); }

/* 19. REVEAL & MOTION ==================================================== */
/* Hidden state applies only under html.js (set inline in wp_head), so a
   visitor without JavaScript still sees a fully visible, static page. */
html.js .cr-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); will-change: opacity, transform; }
html.js .cr-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
	html.js .cr-reveal { opacity: 1; transform: none; transition: none; }
	.cr-hero__img { animation: none; }
}

/* 20. RESPONSIVE ========================================================= */

/* Header → mobile. The full 6-item nav + stacked logo + CTA needs ~1200px;
   below that we switch to the burger so the CTA is never clipped. */
@media (max-width: 1200px) {
	:root { --header-h: 108px; }
	.cr-nav, .cr-header__cta { display: none; }
	.cr-burger { display: inline-flex; }
	.cr-logo--full { height: clamp(58px, 8vw, 74px); }
	.cr-header.is-stuck .cr-logo--compact { height: 36px; }
}

@media (max-width: 1180px) {
	.cr-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; }
	.cr-footer__map { grid-column: 1 / -1; flex-direction: row; justify-content: center; gap: 20px; margin-top: 8px; }
	.cr-romania { max-width: 130px; }
}

@media (max-width: 1024px) {
	.cr-services__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
	.cr-service:nth-child(3n)::after { display: none; }
	.cr-cards { grid-template-columns: repeat(3, 1fr); }
	.cr-cards .cr-card:nth-child(n + 4) { } /* keep all */
	.cr-values__row { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
	.cr-value:nth-child(3n)::after { display: none; }
	.cr-stats__row { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
	.cr-stat:nth-child(3n)::after { display: none; }
}

@media (max-width: 900px) {
	/* Mobile: frame the stag area of the wide asset, stronger scrim for text */
	.cr-hero__img { object-position: 62% 78%; }
	.cr-hero__scrim {
		background:
			linear-gradient(180deg, rgba(8, 18, 24, 0.6) 0%, rgba(8, 18, 24, 0.15) 34%, rgba(8, 18, 24, 0.9) 100%),
			linear-gradient(90deg, rgba(8, 18, 24, 0.7) 0%, rgba(8, 18, 24, 0.2) 62%, rgba(8, 18, 24, 0) 90%);
	}

	/* Footer collapses to two columns before it gets cramped at tablet width */
	.cr-footer__grid { grid-template-columns: 1fr 1fr; }
	.cr-footer__brand { grid-column: 1 / -1; }

	.cr-promise__grid { grid-template-columns: 1fr; }
	.cr-promise__media { margin-bottom: 46px; }
	.cr-quote { position: relative; right: auto; bottom: auto; width: auto; margin-top: -28px; margin-inline: 18px; }

	.cr-steps { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
	.cr-steps::before { display: none; }

	.cr-split { grid-template-columns: 1fr; }
	.cr-split__pane { min-height: auto; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.cr-services__grid { grid-template-columns: repeat(2, 1fr); }
	.cr-service:nth-child(3n)::after { display: block; }
	.cr-service:nth-child(2n)::after { display: none; }
	.cr-cards { grid-template-columns: repeat(2, 1fr); }
	.cr-values__row { grid-template-columns: repeat(2, 1fr); }
	.cr-value:nth-child(3n)::after { display: block; }
	.cr-value:nth-child(2n)::after { display: none; }
	.cr-value:last-child { grid-column: 1 / -1; }
	.cr-value:last-child::after { display: none; }
	.cr-stats__row { grid-template-columns: repeat(2, 1fr); }
	.cr-stat:nth-child(3n)::after { display: block; }
	.cr-stat:nth-child(2n)::after { display: none; }
	.cr-hero__actions .cr-btn, .cr-cta__actions .cr-btn { width: 100%; }
	.cr-footer__grid { grid-template-columns: 1fr 1fr; }
	.cr-footer__brand { grid-column: 1 / -1; }
	.cr-footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
	.cr-services__grid { grid-template-columns: 1fr; }
	.cr-service::after { display: none !important; }
	.cr-cards { grid-template-columns: 1fr; }
	.cr-card__link { aspect-ratio: 16 / 10; }
	.cr-steps { grid-template-columns: 1fr; }
	.cr-values__row { grid-template-columns: 1fr 1fr; }
	.cr-stats__row { grid-template-columns: 1fr 1fr; }
	.cr-footer__legal { gap: 16px; }
}

/* 21. EXPERIENCE PAGES ==================================================== */
/* Shared components for the experience detail pages (Red Stag, …). The page
   reuses the homepage design system; only what's genuinely new lives here. */

/* Page hero: SPLIT style (owner-approved "V3") — no full-bleed photo. Dark
   palette background, text left, gold-framed photo right. Deliberately
   distinct from the homepage; shared style for all experience pages. */
.cr-xhero {
	position: relative;
	background: linear-gradient(115deg, #12242e 0%, #0e1f28 55%, #0a181f 100%);
	padding-top: calc(var(--header-h) + clamp(16px, 3vw, 40px));
	padding-bottom: clamp(44px, 6vw, 84px);
	overflow: hidden;
}
.cr-xhero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--hair-soft); }
.cr-xhero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 88px); align-items: center; }
.cr-hero__title--exp {
	text-transform: none;
	letter-spacing: 0.01em;
	line-height: 1.05;
	font-size: clamp(38px, 4.8vw, 70px);
}
.cr-xhero__lead { margin-bottom: 28px; }
.cr-xhero__media { position: relative; }
.cr-xhero__media::before { content: ""; position: absolute; top: -22px; right: -22px; width: 110px; height: 110px; border-top: 1px solid var(--hair); border-right: 1px solid var(--hair); }
.cr-xhero__frame { border: 1px solid var(--hair); padding: 12px; position: relative; }
.cr-xhero__frame::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--hair-soft); pointer-events: none; z-index: 2; }
.cr-xhero__img { width: 100%; height: clamp(340px, 40vw, 500px); object-fit: cover; object-position: 50% 55%; display: block; }
.cr-xhero__caption { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; font-family: var(--font-caps); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tx-faint); }
.cr-xhero__caption::before { content: ""; width: 44px; height: 1px; background: var(--hair); flex: none; }

/* At-a-glance: 4 quick facts + a dedicated hunting-season band ("variant C") */
.cr-facts { padding-block: clamp(46px, 6vw, 80px); border-top: 1px solid var(--hair-soft); border-bottom: 1px solid var(--hair-soft); }
.cr-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2vw, 34px); margin-bottom: clamp(36px, 4vw, 56px); }
.cr-fact { position: relative; display: flex; flex-direction: column; gap: 8px; text-align: center; padding: 4px clamp(4px, 0.8vw, 12px); }
.cr-fact:not(:last-child)::after { content: ""; position: absolute; right: calc(clamp(20px, 2vw, 34px) / -2); top: 12%; bottom: 12%; width: 1px; background: var(--hair-soft); }
.cr-fact__label { font-family: var(--font-caps); font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.cr-fact__value { font-family: var(--font-serif); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3; color: var(--tx); }
.cr-fact__note { font-size: 12.5px; line-height: 1.55; color: var(--tx-muted); }

.cr-season { position: relative; border: 1px solid var(--hair); padding: clamp(26px, 3vw, 42px) clamp(18px, 3vw, 40px); max-width: 980px; margin-inline: auto; }
.cr-season__label { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--forest-2); padding: 0 18px; font-family: var(--font-caps); font-size: 14.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); white-space: nowrap; line-height: 1.6; }
.cr-season__dates { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 30px); text-align: center; }
.cr-season__item { position: relative; }
.cr-season__item:not(:last-child)::after { content: ""; position: absolute; right: calc(clamp(16px, 2vw, 30px) / -2); top: 14%; bottom: 14%; width: 1px; background: var(--hair-soft); }
.cr-season__cat { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-muted); margin-bottom: 8px; }
/* Dates in the clean sans face — the serif's old-style numerals read oddly (owner) */
.cr-season__range { font-family: var(--font-sans); font-weight: 400; font-size: clamp(15.5px, 1.4vw, 18px); letter-spacing: 0.04em; color: var(--tx); }

/* Centered narrative block (the rut) */
.cr-rut { padding-block: var(--section-y); }
.cr-narrative { max-width: 720px; margin-inline: auto; }
.cr-narrative p { font-size: clamp(16px, 1.35vw, 18px); line-height: 1.8; color: var(--tx-muted); margin-bottom: 1.25em; }
.cr-narrative p:last-child { margin-bottom: 0; }

/* Video in the gold frame (Come Alive section) */
.cr-video { width: 100%; height: clamp(360px, 46vw, 560px); object-fit: cover; display: block; background: #000; }
.cr-video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.cr-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Coordination section (text-only) + the include-list */
.cr-coordinate { max-width: 880px; }
.cr-exp-subhead { font-family: var(--font-serif); font-size: clamp(20px, 2vw, 26px); color: var(--tx); margin: 20px 0 4px; }
.cr-checklist--cols { grid-template-columns: 1fr 1fr; column-gap: clamp(18px, 2vw, 32px); }
.cr-checklist--cols li { font-size: 15px; }

/* Trophy & CIC band */
.cr-trophyband { padding-block: var(--section-y); border-top: 1px solid var(--hair-soft); }
.cr-trophyband__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.cr-trophyband__icon { display: inline-flex; color: var(--gold); margin-bottom: 18px; }
.cr-trophyband__icon svg { width: 48px; height: 48px; }
.cr-trophyband .cr-h2 { margin-bottom: 22px; }
.cr-trophyband__lead { margin-inline: auto; }
.cr-trophyband .cr-btn { margin-top: 14px; }

/* Pricing (ivory) */
.cr-pricing { padding-block: var(--section-y); }
.cr-pricing__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.cr-pricing__figure { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: clamp(28px, 4vw, 46px) 0 20px; }
.cr-pricing__from { font-family: var(--font-caps); font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }
.cr-pricing__amount { font-family: var(--font-serif); font-weight: 600; font-size: clamp(58px, 8vw, 104px); line-height: 1; color: var(--ink); }
.cr-pricing__range { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--ink-soft); max-width: 62ch; margin: 0 auto 1em; }
.cr-pricing__fine { font-size: 14px; line-height: 1.7; font-weight: 500; color: var(--ink-soft); max-width: 68ch; margin: 0 auto 0.9em; }

/* Journey steps: longer editorial titles than the homepage variant */
.cr-step__title--long { text-transform: none; letter-spacing: 0.01em; font-size: 19px; }

/* Final CTA eyebrow (above the ornament) */
.cr-cta .cr-eyebrow { margin-bottom: 0.9em; }

/* Experience pages — responsive */
@media (max-width: 1024px) {
	.cr-facts__grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
	.cr-fact:not(:last-child)::after { display: none; }
}
@media (max-width: 900px) {
	.cr-xhero__grid { grid-template-columns: 1fr; gap: 40px; }
	.cr-xhero__media::before { display: none; }
	.cr-xhero__img { height: clamp(300px, 52vw, 420px); }
}
@media (max-width: 680px) {
	.cr-checklist--cols { grid-template-columns: 1fr; }
	.cr-season__dates { grid-template-columns: 1fr; gap: 22px; }
	.cr-season__item:not(:last-child)::after { right: 10%; left: 10%; top: auto; bottom: -12px; width: auto; height: 1px; }
}
@media (max-width: 560px) {
	.cr-facts__grid { grid-template-columns: 1fr; }
}
