/**
 * Casa Rispo — main stylesheet.
 *
 * Organised as a small design system: tokens first, then primitives, then
 * components, then page compositions. Everything is driven by custom
 * properties so the palette and rhythm can be retuned in one place.
 *
 * 01. Design tokens
 * 02. Reset and base
 * 03. Accessibility primitives
 * 04. Typography
 * 05. Layout
 * 06. Section headers
 * 07. Buttons
 * 08. Badges, pills and meta
 * 09. Cards
 * 10. Feature lists, icon boxes and specs
 * 11. Steps and timeline
 * 12. Accordion
 * 13. Tabs
 * 14. Reviews and quotes
 * 15. Media, figures and decorative shapes
 * 16. Breadcrumb and pagination
 * 17. Alerts and toasts
 * 18. Social links and language switcher
 * 19. Header and navigation
 * 20. Footer
 * 21. Hero
 * 22. Page compositions
 * 23. Floating WhatsApp button
 * 24. Editorial content, blog, comments, widgets
 * 25. WordPress core classes
 * 26. Motion and reveal
 * 27. Print and reduced motion
 */

/* ==========================================================================
   01. Design tokens
   ========================================================================== */

:root {
	/* Brand palette — mirrored in theme.json for the block editor. */
	--color-primary: #163b2b;
	--color-primary-light: #2f5d46;
	--color-accent: #d8a928;
	--color-accent-light: #f6e7a6;
	--color-background: #ffffff;
	--color-background-alt: #f7f3ea;
	--color-text: #1e1e1e;
	--color-text-muted: #666666;

	/* Derived tones used for depth, hairlines and washes. */
	--color-primary-deep: #0e2a1d;
	--color-primary-8: rgba(22, 59, 43, 0.08);
	--color-primary-12: rgba(22, 59, 43, 0.12);
	--color-primary-20: rgba(22, 59, 43, 0.2);
	--color-primary-60: rgba(22, 59, 43, 0.6);
	--color-accent-30: rgba(216, 169, 40, 0.3);
	--color-accent-wash: rgba(246, 231, 166, 0.35);
	--color-line: rgba(22, 59, 43, 0.14);
	--color-line-soft: rgba(22, 59, 43, 0.08);
	--color-on-dark: rgba(255, 255, 255, 0.82);
	--color-on-dark-muted: rgba(255, 255, 255, 0.6);

	/* Semantic states. */
	--color-success: #2f6b46;
	--color-error: #a3342a;
	--color-warning: #9a6f14;
	--color-info: #2f5d46;

	/* Typography. */
	--font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
	--font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--text-xs: 0.8125rem;
	--text-sm: 0.9375rem;
	--text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
	--text-lg: clamp(1.125rem, 1.06rem + 0.32vw, 1.375rem);
	--text-xl: clamp(1.5rem, 1.3rem + 0.9vw, 2.125rem);
	--text-2xl: clamp(2rem, 1.55rem + 2vw, 3.25rem);
	--text-3xl: clamp(2.5rem, 1.6rem + 4vw, 5rem);
	--text-hero: clamp(2.85rem, 1.5rem + 5.6vw, 6rem);

	--tracking-wide: 0.08em;
	--tracking-eyebrow: 0.2em;
	--leading-tight: 1.06;
	--leading-snug: 1.24;
	--leading-body: 1.75;

	/* Spacing scale. */
	--space-3xs: 0.25rem;
	--space-2xs: 0.5rem;
	--space-xs: 0.75rem;
	--space-sm: 1rem;
	--space-md: clamp(1.25rem, 2.4vw, 2rem);
	--space-lg: clamp(2rem, 4vw, 3.25rem);
	--space-xl: clamp(3rem, 6vw, 5rem);
	--space-2xl: clamp(4rem, 9vw, 8rem);
	--space-3xl: clamp(5rem, 12vw, 11rem);

	/* Layout. */
	--container: 1280px;
	--container-wide: 1520px;
	--container-narrow: 780px;
	--container-text: 62ch;
	--gutter: clamp(1.25rem, 5vw, 4rem);
	--section-y: clamp(3.25rem, 6.5vw, 7rem);
	--header-height: 84px;

	/* Shape. */
	--radius-xs: 2px;
	--radius-sm: 3px;
	--radius-md: 6px;
	--radius-lg: 14px;
	--radius-pill: 999px;
	--arch: 50% 50% var(--radius-sm) var(--radius-sm) / 26% 26% var(--radius-sm) var(--radius-sm);

	/* Elevation — kept deliberately soft; the design leans on space, not shadow. */
	--shadow-soft: 0 2px 8px rgba(22, 59, 43, 0.05), 0 12px 32px rgba(22, 59, 43, 0.07);
	--shadow-raised: 0 6px 18px rgba(22, 59, 43, 0.09), 0 24px 56px rgba(22, 59, 43, 0.11);
	--shadow-header: 0 1px 0 rgba(22, 59, 43, 0.08), 0 8px 28px rgba(22, 59, 43, 0.07);

	/* Motion. */
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--dur-fast: 180ms;
	--dur: 320ms;
	--dur-slow: 640ms;

	--z-header: 900;
	--z-overlay: 950;
	--z-menu: 1000;
	--z-modal: 1100;
	--z-toast: 1200;
}

/* ==========================================================================
   02. Reset and base
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--leading-body);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.cr-no-scroll {
	overflow: hidden;
	/* Preserved by JS so the page does not jump when the mobile menu opens. */
	position: relative;
}

img,
picture,
video,
canvas,
svg,
iframe {
	display: block;
	max-width: 100%;
}

img,
video {
	height: auto;
}

svg {
	fill: currentColor;
}

/* A CSS rule beats a presentation attribute, so the line above was quietly
   filling in every outline icon that asks not to be filled. */
svg[fill="none"] {
	fill: none;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

button {
	background: none;
	border: 0;
	cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

hr {
	border: 0;
	border-top: 1px solid var(--color-line);
	margin: var(--space-lg) 0;
}

::selection {
	background-color: var(--color-accent-light);
	color: var(--color-primary);
}

/* ==========================================================================
   03. Accessibility primitives
   ========================================================================== */

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

.screen-reader-text:focus,
.cr-skip-link:focus {
	background-color: var(--color-primary);
	border-radius: var(--radius-sm);
	clip-path: none;
	color: #fff;
	display: block;
	font-size: var(--text-sm);
	font-weight: 600;
	height: auto;
	left: 1rem;
	line-height: 1;
	padding: 1rem 1.5rem;
	text-decoration: none;
	top: 1rem;
	width: auto;
	z-index: var(--z-toast);
}

/* A single, consistent focus ring across every interactive element. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
	border-radius: var(--radius-xs);
}

.cr-on-dark :where(a, button):focus-visible,
.cr-hero :where(a, button):focus-visible,
.cr-footer :where(a, button):focus-visible {
	outline-color: var(--color-accent-light);
}

/* ==========================================================================
   04. Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
.cr-display {
	font-family: var(--font-display);
	font-weight: 300;
	color: var(--color-primary);
	line-height: var(--leading-tight);
	letter-spacing: -0.012em;
	margin: 0 0 var(--space-sm);
}

h1 {
	font-size: var(--text-3xl);
}

h2 {
	font-size: var(--text-2xl);
	line-height: 1.08;
}

h3 {
	font-size: var(--text-xl);
	font-weight: 400;
	line-height: var(--leading-snug);
}

h4 {
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 1.3;
}

h5,
h6 {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--color-primary);
	margin: 0 0 var(--space-2xs);
}

h6 {
	color: var(--color-accent);
}

p {
	margin: 0 0 var(--space-sm);
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--dur) var(--ease);
}

a:hover {
	color: var(--color-accent);
}

strong,
b {
	font-weight: 600;
}

small {
	font-size: var(--text-xs);
}

blockquote {
	margin: var(--space-lg) 0;
	padding-left: var(--space-md);
	border-left: 2px solid var(--color-accent);
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-style: italic;
	line-height: 1.5;
	color: var(--color-primary);
}

/* Lead paragraph used at the top of editorial sections. */
.cr-lead {
	font-size: var(--text-base);
	line-height: 1.58;
	color: var(--color-text);
}

.cr-muted {
	color: var(--color-text-muted);
}

.cr-text-center {
	text-align: center;
}

.cr-measure {
	max-width: var(--container-text);
}

.cr-measure--center {
	margin-inline: auto;
}

/* Animated underline for inline editorial links. */
.cr-link {
	position: relative;
	display: inline-block;
	color: var(--color-primary);
	font-weight: 500;
}

.cr-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background-color: currentColor;
	transform: scaleX(1);
	transform-origin: right center;
	transition: transform var(--dur) var(--ease);
}

.cr-link:hover::after,
.cr-link:focus-visible::after {
	transform: scaleX(0);
}

/* Link with an arrow that slides on hover. */
.cr-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.cr-link-arrow .cr-icon {
	transition: transform var(--dur) var(--ease);
}

.cr-link-arrow:hover .cr-icon,
.cr-link-arrow:focus-visible .cr-icon {
	transform: translateX(5px);
}

/* ==========================================================================
   05. Layout
   ========================================================================== */

.cr-container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.cr-container--wide {
	max-width: calc(var(--container-wide) + var(--gutter) * 2);
}

.cr-container--narrow {
	max-width: calc(var(--container-narrow) + var(--gutter) * 2);
}

.cr-container--flush {
	padding-inline: 0;
}

.cr-section {
	padding-block: var(--section-y);
	position: relative;
}

.cr-section--tight {
	padding-block: calc(var(--section-y) * 0.62);
}

.cr-section--flush-top {
	padding-top: 0;
}

.cr-section--flush-bottom {
	padding-bottom: 0;
}

.cr-section--alt {
	background-color: var(--color-background-alt);
}

.cr-section--wash {
	background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-alt) 100%);
}

.cr-section--dark {
	background-color: var(--color-primary);
	color: var(--color-on-dark);
}

.cr-section--dark :where(h1, h2, h3, h4, h5) {
	color: #fff;
}

.cr-section--dark h6,
.cr-section--dark .cr-eyebrow {
	color: var(--color-accent);
}

.cr-section--dark a:not(.cr-btn) {
	color: #fff;
}

.cr-section--dark a:not(.cr-btn):hover {
	color: var(--color-accent-light);
}

/* Generic responsive grids. */
.cr-grid {
	display: grid;
	gap: var(--space-lg);
}

.cr-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.cr-grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.cr-grid--4 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.cr-grid--tight {
	gap: var(--space-md);
}

/* Two-column media + text split. */
.cr-split {
	display: grid;
	gap: var(--space-xl);
	align-items: center;
}

@media (min-width: 992px) {
	.cr-split {
		grid-template-columns: 1fr 1fr;
		gap: clamp(3rem, 6vw, 6rem);
	}

	.cr-split--media-right .cr-split__media {
		order: 2;
	}

	.cr-split--wide-text {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.cr-split--wide-media {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.cr-split__body > * + * {
	margin-top: var(--space-sm);
}

.cr-stack > * + * {
	margin-top: var(--space-sm);
}

.cr-stack--lg > * + * {
	margin-top: var(--space-md);
}

.cr-cluster {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	align-items: center;
}

.cr-cluster--center {
	justify-content: center;
}

/* ==========================================================================
   06. Section headers
   ========================================================================== */

.cr-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 var(--space-sm);
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--color-accent);
}

.cr-eyebrow::before {
	content: "";
	width: 2rem;
	height: 1px;
	background-color: currentColor;
	flex: none;
}

.cr-eyebrow--center {
	justify-content: center;
}

.cr-eyebrow--center::after {
	content: "";
	width: 2rem;
	height: 1px;
	background-color: currentColor;
	flex: none;
}

.cr-section-head {
	max-width: 42rem;
	margin-bottom: var(--space-lg);
}

.cr-section-head--center {
	margin-inline: auto;
	text-align: center;
}

.cr-section-head__title {
	margin-bottom: var(--space-sm);
}

.cr-section-head__text {
	color: var(--color-text-muted);
	font-size: var(--text-base);
	line-height: 1.55;
	margin: 0;
}

/* Header with a title on the left and a link on the right. */
.cr-section-head--split {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-md);
	max-width: none;
}

.cr-section-head--split > div {
	max-width: 40rem;
}

/* Ornamental divider: hairline + lemon dot. */
.cr-rule {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin: var(--space-md) 0;
	color: var(--color-accent);
}

.cr-rule::before,
.cr-rule::after {
	content: "";
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, transparent, var(--color-accent-30), transparent);
}

.cr-rule__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: currentColor;
	flex: none;
}

/* ==========================================================================
   07. Buttons
   ========================================================================== */

.cr-btn {
	--btn-bg: var(--color-primary);
	--btn-color: #fff;
	--btn-border: var(--color-primary);
	--btn-bg-hover: var(--color-accent);
	--btn-color-hover: var(--color-primary);
	--btn-border-hover: var(--color-accent);

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7em;
	padding: 1.05rem 2.25rem;
	min-height: 48px;
	border: 1px solid var(--btn-border);
	border-radius: var(--radius-xs);
	background-color: var(--btn-bg);
	color: var(--btn-color);
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.11em;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color var(--dur) var(--ease),
		color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		transform var(--dur) var(--ease);
}

.cr-btn:hover,
.cr-btn:focus-visible {
	background-color: var(--btn-bg-hover);
	color: var(--btn-color-hover);
	border-color: var(--btn-border-hover);
	transform: translateY(-2px);
}

.cr-btn:active {
	transform: translateY(0);
}

.cr-btn[disabled],
.cr-btn[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
	transform: none;
}

.cr-btn.is-loading {
	color: transparent;
	pointer-events: none;
}

.cr-btn.is-loading::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	color: var(--btn-color);
	animation: cr-spin 700ms linear infinite;
}

@keyframes cr-spin {
	to {
		transform: rotate(360deg);
	}
}

.cr-btn--secondary {
	--btn-bg: var(--color-accent);
	--btn-color: var(--color-primary);
	--btn-border: var(--color-accent);
	--btn-bg-hover: var(--color-primary);
	--btn-color-hover: #fff;
	--btn-border-hover: var(--color-primary);
}

.cr-btn--outline {
	--btn-bg: transparent;
	--btn-color: var(--color-primary);
	--btn-border: var(--color-primary-20);
	--btn-bg-hover: var(--color-primary);
	--btn-color-hover: #fff;
	--btn-border-hover: var(--color-primary);
}

.cr-btn--ghost {
	--btn-bg: transparent;
	--btn-color: #fff;
	--btn-border: rgba(255, 255, 255, 0.45);
	--btn-bg-hover: #fff;
	--btn-color-hover: var(--color-primary);
	--btn-border-hover: #fff;
}

.cr-btn--whatsapp {
	--btn-bg: #128c7e;
	--btn-color: #fff;
	--btn-border: #128c7e;
	--btn-bg-hover: #0d6d62;
	--btn-color-hover: #fff;
	--btn-border-hover: #0d6d62;
}

.cr-btn--sm {
	padding: 0.75rem 1.4rem;
	min-height: 40px;
	font-size: 0.72rem;
}

.cr-btn--lg {
	padding: 1.25rem 2.75rem;
	min-height: 56px;
}

.cr-btn--block {
	width: 100%;
}

.cr-btn .cr-icon {
	flex: none;
}

/* Small circular control (slider arrows, lightbox controls). */
.cr-circle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	background-color: transparent;
	color: var(--color-primary);
	transition:
		background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.cr-circle-btn:hover:not([disabled]),
.cr-circle-btn:focus-visible {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.cr-circle-btn[disabled] {
	opacity: 0.3;
	cursor: default;
}

/* ==========================================================================
   08. Badges, pills and meta
   ========================================================================== */

.cr-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	padding: 0.42em 0.9em;
	border-radius: var(--radius-pill);
	background-color: var(--color-accent);
	color: var(--color-primary);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.cr-badge--soft {
	background-color: var(--color-accent-light);
}

.cr-badge--outline {
	background-color: transparent;
	border: 1px solid var(--color-line);
	color: var(--color-primary);
}

.cr-badge--dark {
	background-color: var(--color-primary);
	color: #fff;
}

.cr-badge--muted {
	background-color: var(--color-background-alt);
	color: var(--color-text-muted);
}

.cr-badge--floating {
	position: absolute;
	top: var(--space-sm);
	left: var(--space-sm);
	z-index: 2;
	box-shadow: 0 4px 14px rgba(22, 59, 43, 0.18);
}

.cr-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 1.25rem;
	font-size: var(--text-xs);
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
}

.cr-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.cr-meta__item .cr-icon {
	color: var(--color-accent);
	flex: none;
}

/* Star rating. */
.cr-rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--color-accent);
}

.cr-rating .cr-icon {
	fill: currentColor;
	stroke: none;
}

.cr-rating .cr-icon--empty {
	color: var(--color-line);
}

/* ==========================================================================
   09. Cards
   ========================================================================== */

.cr-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var(--color-background);
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition:
		border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease),
		transform var(--dur) var(--ease);
}

.cr-card:hover {
	border-color: var(--color-line);
	box-shadow: var(--shadow-soft);
	transform: translateY(-4px);
}

.cr-card__media {
	position: relative;
	overflow: hidden;
	background-color: var(--color-background-alt);
	aspect-ratio: 4 / 3;
}

.cr-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--ease-out);
}

.cr-card:hover .cr-card__media img {
	transform: scale(1.055);
}

.cr-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: var(--space-2xs);
	padding: var(--space-md);
}

.cr-card__title {
	font-size: var(--text-xl);
	margin: 0;
}

.cr-card__title a {
	color: inherit;
}

.cr-card__title a:hover {
	color: var(--color-accent);
}

.cr-card__text {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: 1.68;
	margin: 0;
}

.cr-grid > .cr-card {
	height: 100%;
}

.cr-card--experience .cr-card__text {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	min-height: calc(4 * 1.68em);
}

.cr-card__footer {
	margin-top: auto;
	padding-top: var(--space-sm);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2xs);
}

/* Full-card link overlay: keeps the whole card clickable while preserving
   real, focusable anchors for keyboard and screen-reader users. */
.cr-card__link-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.cr-card__body > *,
.cr-card__footer > * {
	position: relative;
	z-index: 2;
}

/* Large editorial experience card. */
.cr-experience-card {
	display: grid;
	gap: 0;
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius-sm);
	overflow: hidden;
	background-color: var(--color-background);
}

@media (min-width: 768px) {
	.cr-experience-card {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}

	.cr-experience-card--reverse .cr-experience-card__media {
		order: 2;
	}
}

.cr-experience-card__media {
	position: relative;
	overflow: hidden;
	background-color: var(--color-background-alt);
	min-height: 280px;
}

.cr-experience-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1000ms var(--ease-out);
}

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

.cr-experience-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding: clamp(1.75rem, 3.5vw, 3.25rem);
}

.cr-experience-card__title {
	margin: 0;
	font-size: var(--text-2xl);
}

.cr-experience-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	padding-block: var(--space-xs);
	border-block: 1px solid var(--color-line-soft);
}

/* Compact card used for gallery/review previews. */
.cr-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-sm);
	background-color: var(--color-background-alt);
	aspect-ratio: 1 / 1;
}

.cr-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:
		transform 900ms var(--ease-out),
		filter var(--dur) var(--ease);
}

.cr-tile:hover img,
.cr-tile:focus-visible img {
	transform: scale(1.06);
}

.cr-tile__veil {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: var(--space-sm);
	background: linear-gradient(180deg, transparent 45%, rgba(14, 42, 29, 0.72) 100%);
	color: #fff;
	font-size: var(--text-xs);
	letter-spacing: 0.06em;
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
}

.cr-tile:hover .cr-tile__veil,
.cr-tile:focus-visible .cr-tile__veil {
	opacity: 1;
}

/* ==========================================================================
   10. Feature lists, icon boxes and specs
   ========================================================================== */

.cr-icon-box {
	display: flex;
	flex-direction: column;
	gap: var(--space-2xs);
	padding: var(--space-md);
	border-top: 1px solid var(--color-line);
	background-color: transparent;
}

.cr-icon-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: var(--space-2xs);
	border-radius: 50%;
	background-color: var(--color-accent-wash);
	color: var(--color-primary);
}

.cr-icon-box__title {
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-primary);
	margin: 0;
}

.cr-icon-box__text {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: 1.68;
	margin: 0;
}

/* Checklist of included / excluded items. */
.cr-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.cr-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: var(--text-sm);
	line-height: 1.6;
}

.cr-checklist .cr-icon {
	flex: none;
	margin-top: 0.25em;
	color: var(--color-primary-light);
}

.cr-checklist--excluded .cr-icon {
	color: var(--color-text-muted);
}

.cr-checklist--excluded li {
	color: var(--color-text-muted);
}

/* Key/value specification list (duration, price, guests…). */
.cr-specs {
	display: grid;
	gap: 0;
	margin: 0;
	border-top: 1px solid var(--color-line-soft);
}

.cr-specs__row {
	display: grid;
	grid-template-columns: minmax(9rem, 34%) 1fr;
	gap: var(--space-sm);
	padding-block: 0.95rem;
	border-bottom: 1px solid var(--color-line-soft);
	align-items: baseline;
}

.cr-specs__key {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin: 0;
}

.cr-specs__key .cr-icon {
	color: var(--color-accent);
	flex: none;
}

.cr-specs__value {
	margin: 0;
	font-size: var(--text-sm);
	color: var(--color-text);
}

/* Stat row. */
.cr-stats {
	display: grid;
	gap: var(--space-md);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
	text-align: center;
}

.cr-stat__value {
	display: block;
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 300;
	line-height: 1;
	color: var(--color-primary);
}

.cr-section--dark .cr-stat__value {
	color: var(--color-accent);
}

.cr-stat__label {
	display: block;
	margin-top: 0.6rem;
	font-size: var(--text-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.cr-section--dark .cr-stat__label {
	color: var(--color-on-dark-muted);
}

/* Menu (food) listing. */
.cr-menu-course {
	padding-block: var(--space-md);
	border-bottom: 1px solid var(--color-line-soft);
}

.cr-menu-course:last-child {
	border-bottom: 0;
}

.cr-menu-course__label {
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0 0 0.5rem;
}

.cr-menu-course__title {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 400;
	color: var(--color-primary);
	margin: 0 0 0.35rem;
}

.cr-menu-course__text {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	margin: 0;
}

.cr-menu-tabs__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: var(--space-lg);
}

.cr-menu-tabs__tab {
	padding: 0.62rem 1.15rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-pill);
	background-color: transparent;
	color: var(--color-text-muted);
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.cr-menu-tabs__tab:hover {
	border-color: var(--color-primary-20);
	color: var(--color-primary);
}

.cr-menu-tabs__tab[aria-selected="true"] {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-on-primary);
}

.cr-menu-tabs__note {
	margin-top: var(--space-md);
}

/* ==========================================================================
   11. Steps and timeline
   ========================================================================== */

.cr-steps {
	display: grid;
	gap: var(--space-lg);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	counter-reset: cr-step;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-step {
	position: relative;
	counter-increment: cr-step;
	padding-top: var(--space-md);
	border-top: 1px solid var(--color-line);
}

.cr-step::before {
	content: counter(cr-step, decimal-leading-zero);
	display: block;
	margin-bottom: 0.75rem;
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 300;
	line-height: 1;
	color: var(--color-accent);
}

.cr-step__title {
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-primary);
	margin: 0 0 0.4rem;
}

.cr-step__text {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: 1.66;
	margin: 0;
}

.cr-section--dark .cr-step {
	border-top-color: rgba(255, 255, 255, 0.2);
}

.cr-section--dark .cr-step__title {
	color: #fff;
}

.cr-section--dark .cr-step__text {
	color: var(--color-on-dark-muted);
}

/* Vertical timeline (experience programme). */
.cr-timeline {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0 0 0 var(--space-lg);
}

.cr-timeline::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 0.6rem;
	bottom: 0.6rem;
	width: 1px;
	background: linear-gradient(180deg, var(--color-accent), var(--color-line));
}

.cr-timeline__item {
	position: relative;
	padding-bottom: var(--space-lg);
}

.cr-timeline__item:last-child {
	padding-bottom: 0;
}

.cr-timeline__item::before {
	content: "";
	position: absolute;
	left: calc(var(--space-lg) * -1);
	top: 0.55rem;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: var(--color-background);
	border: 2px solid var(--color-accent);
}

.cr-timeline__time {
	display: block;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.3rem;
}

.cr-timeline__title {
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-primary);
	margin: 0 0 0.35rem;
}

.cr-timeline__text {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	margin: 0;
}

.cr-section--alt .cr-timeline__item::before {
	background-color: var(--color-background-alt);
}

/* ==========================================================================
   12. Accordion
   ========================================================================== */

.cr-accordion {
	border-top: 1px solid var(--color-line);
}

.cr-accordion__item {
	border-bottom: 1px solid var(--color-line);
}

.cr-accordion__trigger {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-sm);
	width: 100%;
	padding: 1.35rem 0;
	background: none;
	border: 0;
	text-align: left;
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 1.35;
	color: var(--color-primary);
	cursor: pointer;
	transition: color var(--dur) var(--ease);
}

.cr-accordion__trigger:hover {
	color: var(--color-primary-light);
}

.cr-accordion__icon {
	position: relative;
	flex: none;
	width: 22px;
	height: 22px;
	margin-top: 0.28em;
	color: var(--color-accent);
}

.cr-accordion__icon::before,
.cr-accordion__icon::after {
	content: "";
	position: absolute;
	background-color: currentColor;
	transition: transform var(--dur) var(--ease);
}

.cr-accordion__icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 1.5px;
	transform: translateY(-50%);
}

.cr-accordion__icon::after {
	left: 50%;
	top: 0;
	width: 1.5px;
	height: 100%;
	transform: translateX(-50%) scaleY(1);
}

.cr-accordion__trigger[aria-expanded="true"] .cr-accordion__icon::after {
	transform: translateX(-50%) scaleY(0);
}

.cr-accordion__panel {
	overflow: hidden;
	height: 0;
	transition: height var(--dur) var(--ease);
}

.cr-accordion__panel[hidden] {
	display: block;
	height: 0;
}

.cr-accordion__panel-inner {
	padding: 0 0 1.5rem;
	max-width: var(--container-text);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: 1.75;
}

.cr-accordion__panel-inner > *:first-child {
	margin-top: 0;
}

/* ==========================================================================
   13. Tabs / filters
   ========================================================================== */

.cr-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: var(--space-lg);
}

.cr-filter {
	padding: 0.62rem 1.15rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-pill);
	background-color: transparent;
	color: var(--color-text-muted);
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	transition:
		background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.cr-filter:hover {
	border-color: var(--color-primary-20);
	color: var(--color-primary);
}

.cr-filter[aria-pressed="true"],
.cr-filter.is-active {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* ==========================================================================
   14. Reviews and quotes
   ========================================================================== */

.cr-review {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	height: 100%;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background-color: var(--color-background);
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius-sm);
}

.cr-review__quote-mark {
	color: var(--color-accent);
	opacity: 0.9;
}

.cr-review__text {
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-style: italic;
	line-height: 1.5;
	color: var(--color-primary);
	margin: 0;
}

.cr-review__footer {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: auto;
	padding-top: var(--space-sm);
	border-top: 1px solid var(--color-line-soft);
}

.cr-review__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
	background-color: var(--color-background-alt);
}

.cr-review__avatar--initial {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-accent-wash);
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 500;
}

.cr-review__name {
	display: block;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.3;
}

.cr-review__origin {
	display: block;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.cr-review__source {
	margin-left: auto;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.cr-google-reviews-badge {
	margin-top: var(--space-md);
	font-size: var(--text-sm);
}

.cr-google-reviews-badge a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--color-text-muted);
	text-decoration: none;
}

.cr-google-reviews-badge a:hover,
.cr-google-reviews-badge a:focus {
	color: var(--color-primary);
}

.cr-google-reviews-embed__title {
	margin: 0 0 var(--space-sm);
	font-size: var(--text-lg);
}

.cr-google-reviews-embed__frame {
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-surface-alt);
	box-shadow: var(--shadow-sm);
}

.cr-google-reviews-embed__frame iframe {
	display: block;
	width: 100%;
	min-height: 420px;
	border: 0;
}

.cr-google-reviews-embed .cr-google-reviews-badge {
	margin-top: var(--space-sm);
}

/* Trustindex Google reviews widget */
.cr-trustindex-reviews {
	position: relative;
}

.cr-trustindex-reviews .ti-widget.ti-goog {
	overflow: visible;
}

.cr-trustindex-reviews .ti-widget.ti-goog .ti-reviews-container {
	touch-action: none;
}

.cr-trustindex-reviews .ti-widget.ti-goog .ti-controls {
	display: block;
}

.cr-trustindex-reviews .ti-widget.ti-goog .ti-controls-line {
	display: none !important;
}

/* Review carousel — arrow-controlled, one card per step (no native scroll). */
.cr-slider {
	position: relative;
}

.cr-slider__viewport {
	position: relative;
}

.cr-slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: min(88%, 30rem);
	gap: var(--space-md);
	overflow: hidden;
	scroll-behavior: smooth;
	padding-bottom: var(--space-sm);
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.cr-slider__track::-webkit-scrollbar {
	display: none;
}

.cr-slider__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.6rem;
	margin-top: var(--space-md);
}

.cr-slider__status {
	margin-right: auto;
	font-size: var(--text-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.cr-slider__track {
		grid-auto-columns: min(46%, 30rem);
	}
}

@media (min-width: 1200px) {
	.cr-slider__track {
		grid-auto-columns: min(32%, 30rem);
	}
}

/* ==========================================================================
   15. Media, figures and decorative shapes
   ========================================================================== */

.cr-media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-sm);
	background-color: var(--color-background-alt);
}

.cr-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-media--arch {
	border-radius: var(--arch);
}

.cr-media--portrait {
	aspect-ratio: 4 / 5;
}

.cr-media--landscape {
	aspect-ratio: 3 / 2;
}

.cr-media--square {
	aspect-ratio: 1 / 1;
}

/* Stacked / offset image pair used in editorial splits. */
.cr-media-pair {
	position: relative;
	padding-bottom: clamp(2rem, 8vw, 5rem);
	padding-right: clamp(2rem, 8vw, 5rem);
}

.cr-media-pair__main {
	border-radius: var(--radius-sm);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background-color: var(--color-background-alt);
}

.cr-media-pair__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-media-pair__inset {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 52%;
	max-width: 18rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 6px solid var(--color-background);
	border-radius: var(--radius-sm);
	background-color: var(--color-background-alt);
	box-shadow: var(--shadow-soft);
}

.cr-media-pair__inset img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-section--alt .cr-media-pair__inset {
	border-color: var(--color-background-alt);
}

/* Caption overlay used on large single images. */
.cr-figure {
	margin: 0;
}

.cr-figure figcaption,
.cr-caption {
	margin-top: 0.7rem;
	font-size: var(--text-xs);
	letter-spacing: 0.03em;
	color: var(--color-text-muted);
}

/* Subtle decorative leaf watermark. */
.cr-ornament {
	position: absolute;
	pointer-events: none;
	color: var(--color-accent);
	opacity: 0.12;
	z-index: 0;
}

.cr-ornament--top-right {
	top: -1.5rem;
	right: 0;
}

.cr-ornament--bottom-left {
	bottom: -1.5rem;
	left: 0;
	transform: scaleX(-1);
}

/* ==========================================================================
   16. Breadcrumb and pagination
   ========================================================================== */

.cr-breadcrumb {
	font-size: var(--text-xs);
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
}

.cr-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.cr-breadcrumb li:not(:last-child)::after {
	content: "/";
	color: var(--color-line);
}

.cr-breadcrumb a {
	color: var(--color-text-muted);
}

.cr-breadcrumb a:hover {
	color: var(--color-primary);
}

.cr-breadcrumb [aria-current="page"] {
	color: var(--color-primary);
}

.cr-breadcrumb--on-dark,
.cr-breadcrumb--on-dark a {
	color: var(--color-on-dark-muted);
}

.cr-breadcrumb--on-dark a:hover,
.cr-breadcrumb--on-dark [aria-current="page"] {
	color: #fff;
}

.cr-breadcrumb--on-dark li:not(:last-child)::after {
	color: rgba(255, 255, 255, 0.35);
}

.cr-pagination {
	margin-top: var(--space-xl);
}

.cr-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

.cr-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding-inline: 0.6rem;
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius-xs);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	transition:
		background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.cr-pagination .page-numbers:hover {
	border-color: var(--color-primary-20);
	color: var(--color-primary);
}

.cr-pagination .page-numbers.current {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.cr-pagination .page-numbers.dots {
	border-color: transparent;
}

/* Previous / next post navigation. */
.cr-post-nav {
	display: grid;
	gap: var(--space-md);
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-line);
}

@media (min-width: 768px) {
	.cr-post-nav {
		grid-template-columns: 1fr 1fr;
	}

	.cr-post-nav__next {
		text-align: right;
	}
}

.cr-post-nav__label {
	display: block;
	font-size: var(--text-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.35rem;
}

.cr-post-nav__title {
	font-family: var(--font-display);
	font-size: var(--text-lg);
	color: var(--color-primary);
}

/* ==========================================================================
   17. Alerts and toasts
   ========================================================================== */

.cr-alert {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	border: 1px solid var(--color-line);
	border-left-width: 3px;
	border-radius: var(--radius-xs);
	background-color: var(--color-background-alt);
	font-size: var(--text-sm);
	line-height: 1.6;
}

.cr-alert .cr-icon {
	flex: none;
	margin-top: 0.15em;
}

.cr-alert--success {
	border-left-color: var(--color-success);
	background-color: rgba(47, 107, 70, 0.07);
	color: var(--color-success);
}

.cr-alert--error {
	border-left-color: var(--color-error);
	background-color: rgba(163, 52, 42, 0.06);
	color: var(--color-error);
}

.cr-alert--info {
	border-left-color: var(--color-info);
	color: var(--color-primary);
}

.cr-alert--warning {
	border-left-color: var(--color-warning);
	background-color: rgba(216, 169, 40, 0.1);
	color: var(--color-warning);
}

.cr-toast-region {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: var(--z-toast);
	display: grid;
	gap: 0.5rem;
	max-width: min(24rem, calc(100vw - 2rem));
	pointer-events: none;
}

.cr-toast {
	padding: 0.9rem 1.15rem;
	border-radius: var(--radius-sm);
	background-color: var(--color-primary);
	color: #fff;
	font-size: var(--text-sm);
	box-shadow: var(--shadow-raised);
	pointer-events: auto;
	animation: cr-toast-in var(--dur) var(--ease-out) both;
}

@keyframes cr-toast-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
}

/* ==========================================================================
   18. Social links and language switcher
   ========================================================================== */

.cr-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	color: var(--color-primary);
	transition:
		background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		color var(--dur) var(--ease),
		transform var(--dur) var(--ease);
}

.cr-social__link:hover,
.cr-social__link:focus-visible {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-primary);
	transform: translateY(-2px);
}

.cr-footer .cr-social__link,
.cr-section--dark .cr-social__link {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.cr-footer .cr-social__link:hover,
.cr-section--dark .cr-social__link:hover {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-primary);
}

/* Language switcher — inline pills, deliberately discreet. */
.cr-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	font-size: var(--text-xs);
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.cr-lang__item {
	position: relative;
}

.cr-lang__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 34px;
	padding-inline: 0.35rem;
	border-radius: var(--radius-xs);
	color: inherit;
	font-weight: 500;
	opacity: 0.62;
	transition:
		opacity var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.cr-lang__link:hover {
	opacity: 1;
}

.cr-lang__item.is-current .cr-lang__link {
	opacity: 1;
	font-weight: 600;
	color: var(--color-accent);
}

.cr-lang__sep {
	opacity: 0.3;
	user-select: none;
}

.cr-lang--stacked {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	font-size: var(--text-sm);
	text-transform: none;
	letter-spacing: 0.02em;
}

.cr-lang--stacked .cr-lang__sep {
	display: none;
}

.cr-lang--stacked .cr-lang__link {
	justify-content: flex-start;
	min-height: 44px;
	width: 100%;
}

/* ==========================================================================
   19. Header and navigation
   ========================================================================== */

.cr-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-header);
	background-color: var(--color-background);
	border-bottom: 1px solid var(--color-line-soft);
	transition:
		background-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		transform var(--dur-slow) var(--ease);
}

/* Transparent over the hero on the homepage until the user scrolls. */
.cr-has-transparent-header .cr-header {
	background-color: transparent;
	border-bottom-color: transparent;
	color: #fff;
}

.cr-header.is-scrolled {
	background-color: var(--color-background);
	border-bottom-color: var(--color-line-soft);
	box-shadow: var(--shadow-header);
	color: var(--color-text);
}

.cr-header.is-hidden {
	transform: translateY(-100%);
}

.cr-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	min-height: var(--header-height);
	transition: min-height var(--dur) var(--ease);
}

.cr-header.is-scrolled .cr-header__inner {
	min-height: 68px;
}

/* Brand */
.cr-brand {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	flex: none;
	text-decoration: none;
	color: inherit;
}

/* In the header the bar has a fixed height, so the stacked lockup has to be
   sized to fit inside it rather than pushing through the top and bottom. */
.cr-header .cr-brand__logo {
	height: 34px;
}

.cr-header.is-scrolled .cr-brand__logo {
	height: 28px;
}

.cr-header .cr-brand__name--under {
	font-size: 11px;
	letter-spacing: 0.16em;
}

/* The name sits under the crest, in the same small-caps as the rest of the
   brand furniture. */
.cr-brand__name--under {
	font-family: var(--font-display, var(--font-heading));
	font-size: var(--text-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
}

.cr-brand__logo {
	display: block;
	width: auto;
	height: 46px;
	max-width: 200px;
	object-fit: contain;
	transition: height var(--dur) var(--ease);
}

.cr-header.is-scrolled .cr-brand__logo {
	height: 40px;
}

/* Text lockup used when no logo image is uploaded. */
.cr-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.cr-brand__name {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 400;
	letter-spacing: 0.05em;
	color: currentColor;
	white-space: nowrap;
}

.cr-brand__tagline {
	margin-top: 0.35rem;
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-accent);
	white-space: nowrap;
}

.cr-has-transparent-header .cr-header:not(.is-scrolled) .cr-brand__name {
	color: #fff;
}

/* Desktop navigation */
.cr-nav {
	display: none;
}

@media (min-width: 1100px) {
	.cr-nav {
		display: block;
		margin-inline: auto;
	}
}

.cr-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.5rem, 1.6vw, 1.6rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-nav__list > li {
	position: relative;
}

.cr-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.6rem 0.2rem;
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: currentColor;
	white-space: nowrap;
}

.cr-nav__list > li > a::after {
	content: "";
	position: absolute;
	left: 0.2rem;
	right: 0.2rem;
	bottom: 0.15rem;
	height: 1px;
	background-color: var(--color-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--dur) var(--ease);
}

.cr-nav__list > li > a:hover::after,
.cr-nav__list > li > a:focus-visible::after,
.cr-nav__list > li.current-menu-item > a::after,
.cr-nav__list > li.current-menu-ancestor > a::after,
.cr-nav__list > li.current_page_item > a::after,
.cr-nav__list > li.current_page_parent > a::after {
	transform: scaleX(1);
}

.cr-nav__list a:hover {
	color: var(--color-accent);
}

.cr-has-transparent-header .cr-header:not(.is-scrolled) .cr-nav__list a {
	color: #fff;
}

.cr-has-transparent-header .cr-header:not(.is-scrolled) .cr-nav__list a:hover {
	color: var(--color-accent-light);
}

/* Submenu */
.cr-nav__toggle-sub {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem;
	color: inherit;
	line-height: 0;
}

.cr-nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: -1.1rem;
	min-width: 15rem;
	margin: 0;
	padding: 0.45rem;
	list-style: none;
	background-color: #fff;
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-raised);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition:
		opacity var(--dur) var(--ease),
		transform var(--dur) var(--ease),
		visibility var(--dur) var(--ease);
	z-index: 5;
}

.cr-has-transparent-header .cr-header:not(.is-scrolled) .cr-nav .sub-menu {
	background-color: #fff;
	border-color: var(--color-line-soft);
	box-shadow: var(--shadow-raised);
}

.cr-nav .sub-menu::before {
	/* Invisible bridge so the pointer can travel from the parent item. */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -0.5rem;
	height: 0.5rem;
}

.cr-nav__list > li:hover > .sub-menu,
.cr-nav__list > li:focus-within > .sub-menu,
.cr-nav__list > li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cr-nav .sub-menu a {
	display: block;
	width: 100%;
	padding: 0.7rem 1rem;
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.09em;
	color: var(--color-text) !important;
	text-transform: none;
	background-color: var(--color-background-alt);
	border-radius: calc(var(--radius-sm) - 2px);
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.cr-nav .sub-menu li + li {
	margin-top: 0.2rem;
}

.cr-nav .sub-menu a:hover,
.cr-nav .sub-menu a:focus-visible {
	background-color: var(--color-accent-wash);
	color: var(--color-primary) !important;
}

.cr-nav .sub-menu li.current-menu-item > a {
	color: var(--color-primary) !important;
	background-color: var(--color-accent-wash);
}

/* Header actions */
.cr-header__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex: none;
}

.cr-header__lang {
	display: none;
	color: currentColor;
}

@media (min-width: 768px) {
	.cr-header__lang {
		display: inline-flex;
	}
}

.cr-has-transparent-header .cr-header:not(.is-scrolled) .cr-header__lang {
	color: #fff;
}

.cr-header__cta {
	display: none;
}

@media (min-width: 768px) {
	.cr-header__cta {
		display: inline-flex;
	}
}

.cr-has-transparent-header .cr-header:not(.is-scrolled) .cr-header__cta {
	--btn-bg: transparent;
	--btn-color: #fff;
	--btn-border: rgba(255, 255, 255, 0.5);
	--btn-bg-hover: #fff;
	--btn-color-hover: var(--color-primary);
	--btn-border-hover: #fff;
}

/* Burger */
.cr-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-right: -0.6rem;
	color: currentColor;
	border-radius: var(--radius-xs);
}

@media (min-width: 1100px) {
	.cr-burger {
		display: none;
	}
}

.cr-burger__lines {
	position: relative;
	display: block;
	width: 24px;
	height: 14px;
}

.cr-burger__lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background-color: currentColor;
	transition:
		transform var(--dur) var(--ease),
		opacity var(--dur-fast) var(--ease);
}

.cr-burger__lines span:nth-child(1) {
	top: 0;
}

.cr-burger__lines span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.cr-burger__lines span:nth-child(3) {
	bottom: 0;
}

.cr-burger[aria-expanded="true"] .cr-burger__lines span:nth-child(1) {
	transform: translateY(6.25px) rotate(45deg);
}

.cr-burger[aria-expanded="true"] .cr-burger__lines span:nth-child(2) {
	opacity: 0;
}

.cr-burger[aria-expanded="true"] .cr-burger__lines span:nth-child(3) {
	transform: translateY(-6.25px) rotate(-45deg);
}

/* Mobile panel */
.cr-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: var(--z-menu);
	display: flex;
	flex-direction: column;
	background-color: var(--color-primary);
	color: #fff;
	visibility: hidden;
	opacity: 0;
	transition:
		opacity var(--dur) var(--ease),
		visibility var(--dur) var(--ease);
}

.cr-mobile-menu.is-open {
	visibility: visible;
	opacity: 1;
}

.cr-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: var(--header-height);
	padding-inline: var(--gutter);
	flex: none;
}

.cr-mobile-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-right: -0.6rem;
	color: #fff;
	border-radius: var(--radius-xs);
	transition: color var(--dur) var(--ease);
}

.cr-mobile-menu__close:hover {
	color: var(--color-accent);
}

.cr-mobile-menu__body {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding: var(--space-sm) var(--gutter) var(--space-md);
}

.cr-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-mobile-nav > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cr-mobile-nav > li:last-child {
	border-bottom: 0;
}

.cr-mobile-nav a {
	display: block;
	padding: 0.85rem 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 300;
	line-height: 1.25;
	color: #fff;
}

.cr-mobile-nav a:hover,
.cr-mobile-nav .current-menu-item > a {
	color: var(--color-accent);
}

.cr-mobile-nav--flat > li {
	opacity: 1;
	transform: none;
}

.cr-mobile-nav--flat > li.menu-item-has-children > a {
	padding-bottom: 0.35rem;
	font-size: var(--text-xs);
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.cr-mobile-nav--flat > li.menu-item-has-children > a:hover,
.cr-mobile-nav--flat > li.menu-item-has-children.current-menu-ancestor > a {
	color: var(--color-accent);
}

.cr-mobile-nav--flat .sub-menu {
	list-style: none;
	margin: 0 0 0.65rem;
	padding: 0 0 0.35rem 0.85rem;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	height: auto !important;
	overflow: visible;
}

.cr-mobile-nav--flat .sub-menu li {
	border: 0;
}

.cr-mobile-nav--flat .sub-menu a {
	padding: 0.5rem 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 300;
	color: #fff;
	background: none;
}

.cr-mobile-nav--flat .sub-menu a:hover,
.cr-mobile-nav--flat .sub-menu .current-menu-item > a {
	color: var(--color-accent);
	background: none;
}

.cr-mobile-menu__foot {
	flex: none;
	padding: var(--space-md) var(--gutter) calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: grid;
	gap: var(--space-sm);
}

.cr-mobile-menu__lang {
	justify-content: center;
	color: rgba(255, 255, 255, 0.72);
}

/* Spacer that offsets the fixed header on non-transparent pages. */
.cr-header-spacer {
	height: var(--header-height);
}

.cr-has-transparent-header .cr-header-spacer {
	display: none;
}

/* ==========================================================================
   20. Footer
   ========================================================================== */

.cr-footer {
	background-color: var(--color-primary);
	color: var(--color-on-dark);
	font-size: var(--text-sm);
}

.cr-footer a {
	color: var(--color-on-dark);
}

.cr-footer a:hover {
	color: var(--color-accent);
}

.cr-footer__main {
	display: grid;
	gap: var(--space-lg);
	padding-block: clamp(3rem, 6vw, 5.5rem);
}

@media (min-width: 768px) {
	.cr-footer__main {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-xl) var(--space-lg);
	}
}

@media (min-width: 1100px) {
	.cr-footer__main {
		grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	}
}

.cr-footer__brand .cr-brand__logo {
	height: 52px;
}

.cr-footer__brand .cr-brand__name {
	color: #fff;
}

.cr-footer__desc {
	margin: var(--space-sm) 0 var(--space-md);
	max-width: 32ch;
	color: var(--color-on-dark-muted);
	line-height: 1.72;
}

.cr-footer__heading {
	margin: 0 0 var(--space-sm);
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--color-accent);
}

.cr-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.15rem;
}

.cr-footer__menu a {
	display: inline-block;
	padding-block: 0.35rem;
	transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.cr-footer__menu a:hover {
	transform: translateX(3px);
}

.cr-footer__contact {
	display: grid;
	gap: 0.7rem;
	margin: 0 0 var(--space-md);
	padding: 0;
	list-style: none;
}

.cr-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	line-height: 1.55;
}

.cr-footer__contact .cr-icon {
	flex: none;
	margin-top: 0.2em;
	color: var(--color-accent);
}

.cr-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm) var(--space-md);
	padding-block: var(--space-md);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: var(--text-xs);
	color: var(--color-on-dark-muted);
}

.cr-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 1.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-footer__legal a {
	color: var(--color-on-dark-muted);
}

.cr-footer__legal a:hover {
	color: var(--color-accent);
}

.cr-footer__lang {
	color: var(--color-on-dark);
}

.cr-footer__credits {
	display: grid;
	gap: 0.2rem;
	padding-bottom: var(--space-md);
	font-size: var(--text-xs);
	color: var(--color-on-dark-muted);
	text-align: center;
}

.cr-footer__credits-label {
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cr-footer__credits a {
	color: var(--color-on-dark-muted);
}

.cr-footer__credits a:hover {
	color: var(--color-accent);
}

/* ==========================================================================
   21. Hero
   ========================================================================== */

.cr-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 72svh;
	padding-top: calc(var(--header-height) + var(--space-lg));
	padding-bottom: var(--space-xl);
	background-color: var(--color-primary);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.cr-hero--full {
	min-height: 100svh;
	align-items: center;
	padding-bottom: var(--space-2xl);
}

.cr-hero--compact {
	min-height: 46svh;
	align-items: flex-end;
}

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

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

.cr-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(14, 42, 29, 0.55) 0%, rgba(14, 42, 29, 0.15) 42%, rgba(14, 42, 29, 0.78) 100%),
		linear-gradient(90deg, rgba(14, 42, 29, 0.42) 0%, transparent 65%);
}

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

.cr-hero__content {
	max-width: 46rem;
}

.cr-hero--center .cr-hero__content {
	max-width: 52rem;
	margin-inline: auto;
	text-align: center;
}

.cr-hero__eyebrow {
	color: var(--color-accent-light);
}

.cr-hero__title {
	margin: 0 0 var(--space-sm);
	font-size: var(--text-hero);
	font-weight: 300;
	line-height: 1.02;
	letter-spacing: -0.018em;
	color: #fff;
	text-wrap: balance;
	text-shadow: 0 2px 26px rgba(9, 26, 18, 0.32);
}

.cr-hero__subtitle {
	max-width: 34rem;
	margin: 0 0 var(--space-lg);
	font-size: var(--text-lg);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	text-wrap: pretty;
}

.cr-hero--center .cr-hero__subtitle {
	margin-inline: auto;
}

.cr-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.cr-hero--center .cr-hero__actions {
	justify-content: center;
}

.cr-hero__breadcrumb {
	margin-bottom: var(--space-md);
}

/* Scroll cue on the full-height homepage hero. */
.cr-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: clamp(1.25rem, 3vw, 2.5rem);
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.cr-hero__scroll::after {
	content: "";
	width: 1px;
	height: 42px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
	animation: cr-scroll-cue 2.4s var(--ease) infinite;
	transform-origin: top center;
}

@keyframes cr-scroll-cue {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	40% {
		transform: scaleY(1);
		opacity: 1;
	}
	100% {
		transform: scaleY(1);
		opacity: 0;
	}
}

/* Slim page hero used on light interior pages. */
.cr-page-hero {
	position: relative;
	padding-top: calc(var(--header-height) + clamp(2.5rem, 5vw, 4.5rem));
	padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
	background-color: var(--color-background-alt);
	overflow: hidden;
}

.cr-page-hero__content {
	position: relative;
	max-width: 48rem;
}

.cr-page-hero--center .cr-page-hero__content {
	margin-inline: auto;
	text-align: center;
}

.cr-page-hero__title {
	margin: 0 0 var(--space-sm);
	text-wrap: balance;
}

.cr-page-hero__text {
	max-width: 42rem;
	margin: 0;
	color: var(--color-text-muted);
	font-size: var(--text-lg);
	line-height: 1.6;
}

.cr-page-hero--center .cr-page-hero__text {
	margin-inline: auto;
}

/* ==========================================================================
   22. Page compositions
   ========================================================================== */

/* Full-bleed CTA band. */
.cr-cta-band {
	position: relative;
	padding-block: clamp(4rem, 8vw, 7.5rem);
	background-color: var(--color-primary);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

.cr-cta-band--image .cr-cta-band__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.cr-cta-band--image .cr-cta-band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-cta-band--image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(14, 42, 29, 0.82), rgba(14, 42, 29, 0.72));
}

.cr-cta-band__title {
	max-width: 22ch;
	margin-inline: auto;
	color: #fff;
	text-wrap: balance;
}

.cr-cta-band__text {
	max-width: 46ch;
	margin: var(--space-sm) auto var(--space-lg);
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--text-lg);
	line-height: 1.6;
}

.cr-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

/* Feature strip: three short value props under the hero. */
.cr-strip {
	display: grid;
	gap: 0;
	border-block: 1px solid var(--color-line-soft);
}

@media (min-width: 768px) {
	.cr-strip {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cr-strip__item {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: var(--space-md) 0;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.cr-strip__item + .cr-strip__item {
		padding-left: var(--space-md);
		border-left: 1px solid var(--color-line-soft);
	}
}

.cr-strip__item .cr-icon {
	flex: none;
	color: var(--color-accent);
}

.cr-strip__item strong {
	display: block;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 1.2;
}

/* Gallery preview mosaic on the homepage.
   Five photographs form a 4×2 block: one large tile plus four small ones.
   Rows have an explicit height so the tiles fill their cells exactly. */
.cr-mosaic {
	display: grid;
	gap: var(--space-xs);
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 42vw;
	grid-auto-flow: dense;
}

@media (min-width: 768px) {
	.cr-mosaic {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: clamp(9rem, 14vw, 15rem);
	}

	.cr-mosaic > *:nth-child(1) {
		grid-column: span 2;
		grid-row: span 2;
	}
}

/* Tiles stretch to their grid cell instead of imposing their own ratio. */
.cr-mosaic > * {
	min-height: 0;
	min-width: 0;
}

.cr-mosaic .cr-gallery-item,
.cr-mosaic .cr-tile {
	height: 100%;
	aspect-ratio: auto;
}

/* Grid of gallery items on the gallery page. */
.cr-gallery-grid {
	display: grid;
	gap: var(--space-xs);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.cr-gallery-grid__item {
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.cr-gallery-grid__item[hidden] {
	display: none;
}

/* Contact layout. */
.cr-contact-grid {
	display: grid;
	gap: var(--space-xl);
}

@media (min-width: 992px) {
	.cr-contact-grid {
		grid-template-columns: 1fr 1.25fr;
		gap: clamp(3rem, 5vw, 5rem);
	}
}

.cr-contact-card {
	display: grid;
	gap: var(--space-md);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background-color: var(--color-background-alt);
	border-radius: var(--radius-sm);
}

.cr-contact-list {
	display: grid;
	gap: var(--space-sm);
	margin: 0;
	padding: 0;
	list-style: none;
}

.cr-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
}

.cr-contact-list .cr-icon {
	flex: none;
	margin-top: 0.2em;
	color: var(--color-accent);
}

.cr-contact-list__label {
	display: block;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 0.15rem;
}

.cr-contact-list a {
	color: var(--color-primary);
	font-size: var(--text-sm);
}

/* Minimal contact page. */
.cr-contact-minimal {
	display: grid;
	gap: var(--space-lg);
	text-align: center;
}

.cr-contact-minimal__list {
	display: grid;
	gap: var(--space-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

.cr-contact-minimal__list li {
	display: grid;
	gap: 0.35rem;
}

.cr-contact-minimal__label {
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.cr-contact-minimal__list a {
	color: var(--color-primary);
}

.cr-contact-minimal__maps {
	font-size: var(--text-sm);
}

.cr-contact-minimal__booking {
	margin: 0;
}

.cr-contact-minimal .cr-social {
	justify-content: center;
}

/* Booking page. */
.cr-booking-form {
	margin-bottom: var(--space-xl);
}

.cr-booking-notes {
	display: grid;
	gap: var(--space-md);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-line-soft);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
}

.cr-booking-notes__lead {
	margin: 0;
	color: var(--color-text);
	font-size: var(--text-base);
}

.cr-booking-notes__item h3 {
	margin: 0 0 0.35rem;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text);
}

.cr-booking-notes__item p {
	margin: 0;
	line-height: 1.65;
}

/* Map embed. */
.cr-map {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius-sm);
	background-color: var(--color-background-alt);
}

.cr-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Sticky booking sidebar on experience pages. */
.cr-booking-box {
	display: grid;
	gap: var(--space-sm);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background-color: var(--color-background);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
}

@media (min-width: 992px) {
	.cr-booking-box--sticky {
		position: sticky;
		top: calc(var(--header-height) + 1.5rem);
	}
}

.cr-booking-box__price {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 300;
	color: var(--color-primary);
	line-height: 1;
}

.cr-booking-box__price small {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.cr-booking-box__note {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	line-height: 1.55;
	margin: 0;
}

.cr-sidebar-layout {
	display: grid;
	gap: var(--space-xl);
}

@media (min-width: 992px) {
	.cr-sidebar-layout {
		grid-template-columns: minmax(0, 1fr) 22rem;
		gap: clamp(2.5rem, 5vw, 4.5rem);
		align-items: start;
	}
}

/* 404 */
.cr-404 {
	display: grid;
	place-items: center;
	min-height: 68svh;
	padding-top: calc(var(--header-height) + var(--space-xl));
	padding-bottom: var(--space-2xl);
	text-align: center;
}

.cr-404__code {
	font-family: var(--font-display);
	font-size: clamp(5rem, 18vw, 11rem);
	font-weight: 300;
	line-height: 0.9;
	color: var(--color-accent-light);
	margin: 0 0 var(--space-sm);
}

/* Search */
.cr-search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 34rem;
}

.cr-search-form input[type="search"] {
	flex: 1;
	min-width: 0;
}

.cr-result {
	display: grid;
	gap: var(--space-md);
	padding-block: var(--space-lg);
	border-bottom: 1px solid var(--color-line-soft);
}

@media (min-width: 640px) {
	.cr-result {
		grid-template-columns: 12rem 1fr;
		align-items: start;
	}
}

.cr-result__media {
	overflow: hidden;
	border-radius: var(--radius-sm);
	aspect-ratio: 4 / 3;
	background-color: var(--color-background-alt);
}

.cr-result__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-result__type {
	font-size: var(--text-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.cr-result__title {
	margin: 0.3rem 0 0.5rem;
	font-size: var(--text-xl);
}

/* ==========================================================================
   23. Floating WhatsApp button
   ========================================================================== */

.cr-whatsapp-float {
	position: fixed;
	right: clamp(0.85rem, 3vw, 1.75rem);
	bottom: calc(clamp(0.85rem, 3vw, 1.75rem) + env(safe-area-inset-bottom, 0px));
	z-index: var(--z-overlay);
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem;
	border-radius: var(--radius-pill);
	background-color: #25d366;
	color: #08301f;
	box-shadow: 0 6px 22px rgba(9, 26, 18, 0.26);
	transition:
		transform var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease),
		opacity var(--dur) var(--ease);
}

.cr-whatsapp-float:hover,
.cr-whatsapp-float:focus-visible {
	color: #08301f;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(9, 26, 18, 0.32);
}

.cr-whatsapp-float__label {
	display: none;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	padding-right: 0.4rem;
}

@media (min-width: 768px) {
	.cr-whatsapp-float__label {
		display: inline;
	}
}

/* Hidden while the mobile menu is open so it never covers navigation. */
body.cr-no-scroll .cr-whatsapp-float {
	opacity: 0;
	pointer-events: none;
}

/* ==========================================================================
   24. Editorial content, blog, comments, widgets
   ========================================================================== */

.cr-prose {
	max-width: var(--container-text);
}

.cr-prose > * + * {
	margin-top: var(--space-sm);
}

.cr-prose > h2,
.cr-prose > h3 {
	margin-top: var(--space-lg);
}

.cr-prose ul,
.cr-prose ol {
	padding-left: 1.15em;
}

.cr-prose li + li {
	margin-top: 0.35rem;
}

.cr-prose img,
.cr-prose figure {
	border-radius: var(--radius-sm);
}

.cr-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--text-sm);
}

.cr-prose th,
.cr-prose td {
	padding: 0.75rem 0.9rem;
	border-bottom: 1px solid var(--color-line-soft);
	text-align: left;
}

.cr-prose th {
	font-weight: 600;
	color: var(--color-primary);
}

/* Tables scroll instead of breaking the layout on small screens. */
.cr-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.cr-entry-header {
	margin-bottom: var(--space-lg);
}

.cr-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	font-size: var(--text-xs);
	letter-spacing: 0.06em;
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
}

.cr-entry-thumb {
	overflow: hidden;
	border-radius: var(--radius-sm);
	margin-bottom: var(--space-lg);
	aspect-ratio: 16 / 9;
	background-color: var(--color-background-alt);
}

.cr-entry-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-comments {
	margin-top: var(--space-2xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-line);
}

.cr-comments__title {
	margin-bottom: var(--space-lg);
}

.cr-comments .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-comments .comment-list ol.children {
	list-style: none;
	margin: var(--space-md) 0 0;
	padding-left: clamp(1rem, 4vw, 2.5rem);
	border-left: 1px solid var(--color-line-soft);
}

.cr-comments .comment-body {
	padding-block: var(--space-md);
	border-bottom: 1px solid var(--color-line-soft);
}

.cr-comments .comment-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-primary);
}

.cr-comments .comment-author img {
	border-radius: 50%;
}

.cr-comments .comment-metadata {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	margin-bottom: 0.6rem;
}

.cr-comments .reply {
	margin-top: 0.5rem;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.cr-widget + .cr-widget {
	margin-top: var(--space-lg);
}

.cr-widget__title {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-sm);
}

.cr-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
	font-size: var(--text-sm);
}

/* ==========================================================================
   25. WordPress core classes
   ========================================================================== */

.alignleft {
	float: left;
	margin: 0.35rem var(--space-md) var(--space-sm) 0;
}

.alignright {
	float: right;
	margin: 0.35rem 0 var(--space-sm) var(--space-md);
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.alignwide {
	width: min(100%, var(--container));
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.wp-element-caption {
	margin-top: 0.6rem;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	text-align: center;
}

.sticky .cr-entry-header::before {
	content: "★";
	color: var(--color-accent);
	margin-right: 0.4rem;
}

.bypostauthor > .comment-body {
	background-color: var(--color-background-alt);
}

.wp-block-button__link {
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

/* Admin bar offset for the fixed header. */
.admin-bar .cr-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .cr-header {
		top: 46px;
	}
}

.admin-bar .cr-mobile-menu {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .cr-mobile-menu {
		top: 46px;
	}
}

/* ==========================================================================
   26. Motion and reveal
   ========================================================================== */

/*
 * Elements marked with [data-reveal] start slightly translated and fade in
 * when they enter the viewport. The `is-revealed` class is added by
 * assets/js/animations.js. Without JS, the `no-js` fallback below keeps
 * everything visible.
 */
[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 900ms var(--ease-out),
		transform 900ms var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

[data-reveal="fade"] {
	transform: none;
}

[data-reveal="scale"] {
	transform: scale(0.97);
}

[data-reveal="left"] {
	transform: translateX(-24px);
}

[data-reveal="right"] {
	transform: translateX(24px);
}

[data-reveal].is-revealed {
	opacity: 1;
	transform: none;
	will-change: auto;
}

.no-js [data-reveal],
.cr-no-motion [data-reveal] {
	opacity: 1;
	transform: none;
	transition: none;
}

/* Very gentle parallax on hero media, driven by a CSS variable set in JS. */
[data-parallax] {
	transform: translate3d(0, var(--parallax-y, 0), 0);
	will-change: transform;
}

/* ==========================================================================
   27. Print and reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	html {
		scroll-behavior: auto;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	[data-parallax] {
		transform: none;
	}
}

@media print {
	.cr-header,
	.cr-mobile-menu,
	.cr-whatsapp-float,
	.cr-footer,
	.cr-cta-band,
	.cr-slider__nav,
	.cr-filters,
	.cr-skip-link {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		font-size: 11pt;
	}

	a {
		color: #000;
		text-decoration: underline;
	}

	.cr-section {
		padding-block: 1.5rem;
		break-inside: avoid;
	}

	.cr-hero,
	.cr-page-hero {
		padding-top: 0;
		background: none;
		color: #000;
		min-height: 0;
	}

	.cr-hero__veil,
	.cr-hero__media {
		display: none;
	}

	.cr-hero__title,
	.cr-hero__subtitle {
		color: #000;
		text-shadow: none;
	}
}

/* -------------------------------------------------------------------------
 * Thank-you page — where a request ends.
 * ---------------------------------------------------------------------- */

.cr-ty {
	text-align: center;
}

.cr-ty__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	margin-bottom: var(--space-sm);
	color: var(--color-primary);
	background-color: var(--color-cream, #f7f3ea);
	border-radius: 50%;
}

.cr-ty__title {
	margin: 0 0 var(--space-xs);
}

.cr-ty__lead {
	max-width: 44ch;
	margin: 0 auto var(--space-lg);
	color: var(--color-text-muted);
}

.cr-ty__intro {
	margin-bottom: var(--space-lg);
}

.cr-ty__summary {
	margin: 0 0 var(--space-md);
	padding: var(--space-sm) var(--space-md);
	text-align: left;
	background-color: var(--color-cream, #f7f3ea);
	border-left: 3px solid var(--color-accent);
	border-radius: var(--radius-xs);
}

.cr-ty__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--space-sm);
	padding: 0.45rem 0;
}

.cr-ty__row + .cr-ty__row {
	border-top: 1px solid var(--color-primary-20, rgba(22, 59, 43, 0.12));
}

.cr-ty__row dt {
	margin: 0;
	font-size: var(--text-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.cr-ty__row dd {
	margin: 0;
	text-align: right;
	font-weight: 600;
	color: var(--color-primary);
}

.cr-ty__note {
	max-width: 52ch;
	margin: 0 auto var(--space-lg);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.cr-ty__next {
	margin-bottom: var(--space-lg);
	text-align: left;
}

.cr-ty__next-title {
	margin: 0 0 var(--space-xs);
	font-size: var(--text-lg);
}

.cr-ty__steps {
	margin: 0;
	padding-left: 1.25rem;
	color: var(--color-text-muted);
}

.cr-ty__steps li {
	margin-bottom: 0.4rem;
}

.cr-ty__contact {
	padding-top: var(--space-md);
	border-top: 1px solid var(--color-line);
}

.cr-ty__contact-title {
	margin: 0 0 var(--space-sm);
	font-family: var(--font-serif, Georgia, serif);
	font-size: var(--text-lg);
	color: var(--color-primary);
}

.cr-ty__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs);
	justify-content: center;
}

.cr-ty__address {
	margin: var(--space-sm) 0 0;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.cr-ty__back {
	margin-top: var(--space-lg);
	font-size: var(--text-sm);
}

/* Crest and name at the top of the home hero. */
.cr-hero__brand {
	display: flex;
	justify-content: center;
	margin-bottom: var(--space-md);
}

.cr-hero__brand .cr-brand__logo {
	height: 96px;
}

.cr-hero__brand .cr-brand__name--under {
	color: #fff;
	font-size: var(--text-sm);
	letter-spacing: 0.24em;
}

@media (max-width: 640px) {
	.cr-hero__brand .cr-brand__logo {
		height: 68px;
	}
}
