:root {
	--color-background: #fffaf4;
	--color-surface: #ffffff;
	--color-text: #241f1c;
	--color-muted: #6f625c;
	--color-primary: #003333;
	--color-primary-dark: #0d403c;
	--color-secondary: #a43e00;
	--color-border: #e8ded6;
	--font-heading: "Playfair Display", Georgia, serif;
	--font-body: "Inter", Arial, sans-serif;
	--container-width: 1280px;
	--header-height: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--color-primary);
}

img {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	font-family: var(--font-heading);
	line-height: 1.15;
}

p {
	margin: 0 0 1rem;
}

.container {
	width: min(100% - 2rem, var(--container-width));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1.1rem;
	border: 1px solid var(--color-primary);
	border-radius: 4px;
	background: var(--color-primary);
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus {
	background: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: #ffffff;
	box-shadow: 0 14px 26px rgba(0, 51, 51, 0.14);
	transform: translateY(-2px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: var(--header-height);
	padding-block: 0;
	background: rgba(254, 249, 240, 0.76);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: background 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(254, 249, 240, 0.9);
}

.site-header__frame {
	width: min(100% - 2rem, var(--container-width));
	margin-inline: auto;
	min-height: var(--header-height);
}

.site-header__shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1rem, 2vw, 2rem);
	min-height: var(--header-height);
	padding: 0 0.95rem 0 1rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
	color: var(--color-primary);
	font-family: var(--font-heading);
	font-size: 1.28rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.site-header__brand:hover,
.site-header__brand:focus {
	color: var(--color-primary);
}

.site-header .custom-logo,
.site-header__brand img {
	display: block;
	width: auto;
	height: auto;
	max-width: 56px;
	max-height: 56px;
	object-fit: contain;
	flex: 0 0 auto;
}

.site-header__brand span {
	display: block;
}

.site-header__nav {
	display: none;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
}

.site-header .primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-header .primary-menu li {
	display: flex;
	align-items: center;
}

.site-header .primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	color: #3f4848;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 1;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.site-header .primary-menu a:hover,
.site-header .primary-menu a:focus,
.site-header .primary-menu .current-menu-item > a {
	color: var(--color-secondary);
}

.site-header__cta {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.78rem 1.05rem;
	border-radius: 4px;
	background: var(--color-primary);
	color: #ffffff;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus {
	background: var(--color-primary-dark);
	color: #ffffff;
	box-shadow: 0 12px 22px rgba(0, 51, 51, 0.15);
	transform: translateY(-1px);
}

.mobile-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 0 0 42px;
	gap: 4px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.62);
	cursor: pointer;
}

.mobile-menu-toggle span[aria-hidden="true"] {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--color-text);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: flex;
	justify-content: flex-end;
	padding: 16px;
	background: rgba(0, 32, 32, 0.34);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.mobile-menu.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transition-delay: 0s;
}

body.has-mobile-menu-open {
	overflow: hidden;
}

.mobile-menu__panel {
	display: flex;
	flex-direction: column;
	width: min(100%, 390px);
	min-height: calc(100dvh - 32px);
	padding: 1rem;
	border: 1px solid rgba(191, 200, 200, 0.46);
	border-radius: 12px;
	background: var(--color-background);
	box-shadow: 0 28px 70px rgba(0, 32, 32, 0.2);
	transform: translateX(24px);
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
	transform: translateX(0);
}

.mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 3rem;
}

.mobile-menu__close {
	position: relative;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background: #ffffff;
	cursor: pointer;
}

.mobile-menu__close span[aria-hidden="true"] {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--color-primary);
	transform-origin: center;
}

.mobile-menu__close span[aria-hidden="true"]:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span[aria-hidden="true"]:nth-of-type(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__list li,
.mobile-menu__cta {
	opacity: 1;
	transform: translateY(0);
}

.mobile-menu__list {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mobile-menu__list a {
	display: block;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(191, 200, 200, 0.7);
	color: #3f4848;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.mobile-menu__list a:hover,
.mobile-menu__list a:focus {
	color: var(--color-secondary);
}

.mobile-menu__cta {
	width: 100%;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 1rem;
	border-radius: 8px;
	background: var(--color-primary);
	color: #ffffff;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1;
	text-transform: uppercase;
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.site-main {
	padding-block: 4rem;
}

.home-main {
	padding-block: 0;
	overflow: hidden;
}

.hero-placeholder,
.content-placeholder {
	padding-block: 3rem;
}

.home-eyebrow {
	margin: 0 0 1.25rem;
	color: var(--color-secondary);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.home-hero {
	position: relative;
	display: grid;
	min-height: calc(100vh - var(--header-height));
	align-items: center;
	overflow: hidden;
}

.home-hero__media,
.home-hero__media::after,
.home-hero__media img {
	position: absolute;
	inset: 0;
}

.home-hero__media::after {
	content: "";
	z-index: 1;
	background: linear-gradient(90deg, rgba(254, 249, 240, 0.98) 0%, rgba(254, 249, 240, 0.78) 38%, rgba(254, 249, 240, 0.12) 72%);
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	padding-block: 6rem;
}

.home-hero h1 {
	max-width: 680px;
	margin-bottom: 1.5rem;
	color: var(--color-primary);
	font-size: clamp(2.8rem, 7vw, 5.8rem);
	font-weight: 700;
	line-height: 0.98;
}

.home-hero__copy {
	max-width: 610px;
	margin-bottom: 2.5rem;
	color: #3f4848;
	font-size: 1.125rem;
	line-height: 1.65;
}

.home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.home-button {
	min-height: 48px;
	padding-inline: 1.5rem;
	border-color: var(--color-primary);
	background: var(--color-primary);
	font-size: 0.75rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.home-button--secondary {
	border-color: var(--color-secondary);
	background: transparent;
	color: var(--color-secondary);
}

.home-button--secondary:hover,
.home-button--secondary:focus {
	background: rgba(164, 62, 0, 0.08);
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.home-button--warm {
	border-color: var(--color-secondary);
	background: var(--color-secondary);
	color: #ffffff;
}

.home-stats {
	padding-block: 3.5rem;
	background: #f2ede4;
}

.home-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	text-align: center;
}

.home-stats strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--color-primary);
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 600;
	line-height: 1;
}

.home-stats span {
	display: block;
	color: #3f4848;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-section {
	padding-block: clamp(5rem, 10vw, 8rem);
}

.home-section h2,
.home-invitation h2,
.home-split h2,
.home-newsletter h2,
.home-archive h2 {
	color: var(--color-primary);
	font-size: clamp(2.15rem, 5vw, 4rem);
	font-weight: 600;
}

.home-section__content > p:not(.home-eyebrow),
.home-section__header p,
.home-newsletter p,
.home-split p {
	color: #3f4848;
}

.home-concept__grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.home-section__content {
	max-width: 580px;
}

.home-section__content blockquote {
	margin: 1.75rem 0 0;
	padding-left: 1.25rem;
	border-left: 2px solid var(--color-secondary);
	color: #3f4848;
	font-style: italic;
}

.home-concept__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	min-height: 480px;
}

.home-concept__gallery img,
.home-newsletter__gallery img,
.home-edition__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.home-concept__gallery img {
	box-shadow: 0 20px 40px -15px rgba(0, 51, 51, 0.16);
}

.home-concept__gallery img:nth-child(2) {
	--reveal-rest-y: 3rem;
	transform: translateY(var(--reveal-rest-y));
}

.home-pillars {
	background: #f8f3ea;
}

.home-section__header {
	max-width: 760px;
	margin: 0 auto 4rem;
	text-align: center;
}

.home-pillars__grid {
	display: grid;
	gap: 1rem;
}

.home-pillar {
	padding: 2rem;
	border: 1px solid rgba(112, 121, 120, 0.24);
	border-radius: 8px;
	background: #fef9f0;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 30px rgba(0, 51, 51, 0.08);
}

.home-pillar span {
	display: block;
	margin-bottom: 1rem;
	color: var(--color-secondary);
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
}

.home-pillar h3,
.home-edition h3 {
	color: var(--color-primary);
	font-size: 1.45rem;
}

.home-pillar p,
.home-edition p {
	margin-bottom: 0;
	color: #3f4848;
	font-size: 0.95rem;
}

.home-archive__top {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.home-archive__top a,
.home-split a {
	color: var(--color-secondary);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 0.35rem;
}

.home-editions {
	display: grid;
	gap: 2rem;
}

.home-edition__image {
	position: relative;
	aspect-ratio: 16 / 10;
	margin-bottom: 1.25rem;
	overflow: hidden;
	border-radius: 8px;
}

.home-edition__image img {
	transition: transform 500ms ease;
}

.home-edition:hover .home-edition__image img {
	transform: scale(1.04);
}

.home-edition__image span {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.28rem 0.55rem;
	border-radius: 3px;
	background: var(--color-primary);
	color: #ffffff;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.home-invitation {
	padding-block: clamp(5.5rem, 10vw, 8rem);
	background: var(--color-primary);
	color: #ffffff;
	text-align: center;
}

.home-invitation .home-eyebrow,
.home-invitation p {
	color: #96d1d0;
}

.home-invitation h2 {
	max-width: 620px;
	margin-inline: auto;
	color: #ffffff;
}

.home-invitation p:not(.home-eyebrow) {
	max-width: 540px;
	margin: 0 auto 2rem;
}

.home-split {
	display: grid;
	background: #f2ede4;
}

.home-split article {
	padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100vw - var(--container-width)) / 2));
	padding-inline: max(1rem, 8vw);
}

.home-split article:nth-child(2) {
	background: #e7e2d9;
}

.home-split h2 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.home-newsletter__grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.home-newsletter__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	height: 420px;
}

.home-newsletter__gallery img:nth-child(2) {
	--reveal-rest-y: 2rem;
	transform: translateY(var(--reveal-rest-y));
}

.home-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.home-newsletter__form input {
	width: 100%;
	min-height: 48px;
	padding: 0.85rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background: #ffffff;
	color: var(--color-text);
	font: inherit;
}

.home-newsletter__form input:focus {
	border-color: var(--color-primary);
	outline: 2px solid rgba(0, 51, 51, 0.12);
}

.home-newsletter__note {
	margin-top: 0.75rem;
	font-size: 0.78rem;
}

.section-placeholder,
.content-card {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.site-footer {
	padding: 3.25rem 0 2.25rem;
	border-top: 1px solid var(--color-border);
	background: #f2ede4;
	color: var(--color-text);
}

.site-footer__shell {
	width: min(100% - 2rem, var(--container-width));
	margin-inline: auto;
}

.site-footer__grid {
	display: grid;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: start;
	padding: 0 clamp(2.25rem, 5vw, 4.5rem);
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.site-footer__brand {
	max-width: 360px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	max-width: 260px;
	margin-bottom: 1.4rem;
	color: var(--color-primary);
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	font-weight: 700;
	line-height: 1.1;
}

.site-footer__logo:hover,
.site-footer__logo:focus {
	color: var(--color-primary);
}

.site-footer__logo img,
.site-footer__logo .custom-logo,
.site-footer__brand img {
	display: block;
	width: auto;
	max-width: 38px;
	max-height: 38px;
	object-fit: contain;
	flex: 0 0 auto;
}

.site-footer__brand p {
	max-width: 320px;
	margin: 0;
	color: #3f4848;
	font-size: 0.94rem;
	line-height: 1.7;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 1.15rem;
}

.site-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(0, 51, 51, 0.16);
	border-radius: 50%;
	color: var(--color-primary);
	background: rgba(255, 255, 255, 0.42);
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus {
	border-color: rgba(164, 62, 0, 0.42);
	color: var(--color-secondary);
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 10px 22px rgba(0, 51, 51, 0.08);
	transform: translateY(-2px);
}

.site-footer__socials svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex: 0 0 20px;
}

.site-footer__column h2,
.site-footer__newsletter h2 {
	margin: 0 0 1.25rem;
	color: var(--color-primary);
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.site-footer__column ul {
	display: grid;
	gap: 0.85rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__column a {
	color: #3f4848;
	font-size: 0.9rem;
	text-decoration: underline;
	text-underline-offset: 0.28rem;
	transition: color 160ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
	color: var(--color-secondary);
}

.site-footer__newsletter {
	max-width: 360px;
}

.site-footer__newsletter > p:not(.site-footer__copyright) {
	max-width: 320px;
	margin: 0 0 1.25rem;
	color: #3f4848;
	font-size: 0.92rem;
	line-height: 1.7;
}

.site-footer__form {
	display: flex;
	width: 100%;
	max-width: 330px;
	margin-bottom: 2rem;
}

.site-footer__form input {
	width: 100%;
	min-width: 0;
	height: 42px;
	padding: 0 0.85rem;
	border: 1px solid rgba(112, 121, 120, 0.28);
	border-right: 0;
	border-radius: 4px 0 0 4px;
	background: #ffffff;
	color: var(--color-text);
	font: inherit;
	font-size: 0.86rem;
}

.site-footer__form input:focus {
	border-color: var(--color-primary);
	outline: 2px solid rgba(0, 51, 51, 0.1);
	outline-offset: 0;
}

.site-footer__form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	min-width: 68px;
	padding: 0 0.95rem;
	border: 1px solid var(--color-secondary);
	border-radius: 0 4px 4px 0;
	background: var(--color-secondary);
	color: #ffffff;
	font: inherit;
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.site-footer__form button:hover,
.site-footer__form button:focus {
	background: #7d2d00;
	border-color: #7d2d00;
}

.site-footer__copyright {
	margin: 0;
	color: #3f4848;
	font-size: 0.82rem;
	font-style: italic;
	line-height: 1.6;
}

.site-footer__credit {
	margin: 1.875rem 0 0;
	color: rgba(63, 72, 72, 0.72);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-align: center;
}

.site-footer__credit a {
	color: var(--color-primary);
	text-decoration: underline;
	text-decoration-color: rgba(0, 51, 51, 0.24);
	text-underline-offset: 0.22em;
	transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus {
	color: var(--color-secondary);
	text-decoration-color: rgba(164, 62, 0, 0.5);
}

@media (min-width: 768px) {
	.site-header__nav {
		display: flex;
	}

	.site-header__cta {
		display: inline-flex;
	}

	.mobile-menu-toggle,
	.mobile-menu {
		display: none;
	}

	.home-stats__grid,
	.home-pillars__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-concept__grid,
	.home-editions,
	.home-newsletter__grid,
	.home-split {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-newsletter__form {
		flex-direction: row;
	}

	.home-newsletter__form .button {
		flex: 0 0 auto;
	}

	.site-footer__grid {
		grid-template-columns: minmax(240px, 1.15fr) minmax(180px, 0.6fr) minmax(290px, 1fr);
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 78px;
	}

	.site-header {
		min-height: var(--header-height);
		padding-block: 0;
	}

	.site-header__frame {
		width: min(100% - 1rem, var(--container-width));
		min-height: var(--header-height);
	}

	.site-header__shell {
		min-height: var(--header-height);
		padding: 0 0.55rem 0 0.75rem;
		border-radius: 0;
	}

	.site-header .custom-logo,
	.site-header__brand img {
		max-width: 48px;
		max-height: 48px;
	}

	.site-header__brand {
		font-size: 1.2rem;
	}

	.home-hero {
		min-height: calc(100vh - 64px);
		align-items: end;
	}

	.home-hero__media::after {
		background: linear-gradient(180deg, rgba(0, 51, 51, 0.12) 0%, rgba(0, 20, 20, 0.12) 34%, rgba(0, 0, 0, 0.78) 100%);
	}

	.home-hero__inner {
		padding-block: 8rem 2rem;
	}

	.home-hero .home-eyebrow,
	.home-hero__copy,
	.home-hero .home-button--secondary {
		display: none;
	}

	.home-hero h1 {
		max-width: 360px;
		margin-bottom: 1.25rem;
		color: #ffffff;
		font-size: clamp(2.2rem, 12vw, 3.1rem);
		line-height: 1.04;
	}

	.home-actions {
		display: block;
	}

	.home-button {
		width: 100%;
		max-width: 310px;
	}

	.home-stats__grid {
		text-align: left;
	}

	.home-stats__grid div:nth-child(n+3) {
		display: none;
	}

	.home-section__header {
		text-align: left;
	}

	.home-concept__gallery {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.home-concept__gallery img {
		aspect-ratio: 4 / 3;
	}

	.home-concept__gallery img:nth-child(2) {
		display: none;
	}

	.home-pillars {
		background: var(--color-primary);
		color: #ffffff;
	}

	.home-pillars h2,
	.home-pillars h3 {
		color: #ffffff;
	}

	.home-pillars .home-section__header p,
	.home-pillar p {
		color: #96d1d0;
	}

	.home-pillar {
		display: grid;
		grid-template-columns: 2.75rem 1fr;
		gap: 0 0.5rem;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.home-pillar:hover {
		transform: none;
		box-shadow: none;
	}

	.home-pillar span {
		grid-row: span 2;
		margin: 0;
		color: #d57a42;
	}

	.home-pillar h3 {
		margin-bottom: 0.35rem;
		font-size: 1.2rem;
	}

	.home-archive__top {
		align-items: center;
	}

	.home-editions {
		gap: 2.25rem;
	}

	.home-invitation {
		padding-block: 5rem;
	}

	.home-invitation .home-eyebrow {
		color: #ffffff;
		letter-spacing: 0;
		text-transform: none;
	}

	.home-invitation h2 {
		display: none;
	}

	.home-invitation .home-button {
		max-width: none;
		background: #ffffff;
		border-color: #ffffff;
		color: var(--color-primary);
	}

	.home-split {
		display: none;
	}

	.home-newsletter__gallery {
		height: 280px;
	}

	.site-footer {
		padding: 1.875rem 0 1.5rem;
	}

	.site-footer__shell {
		width: min(100% - 1.5rem, var(--container-width));
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		padding: 0 0.75rem;
		border-radius: 0;
	}

	.site-footer__credit {
		margin-top: 1.5rem;
		padding-inline: 1rem;
	}

	.site-footer__logo img,
	.site-footer__logo .custom-logo,
	.site-footer__brand img {
		max-width: 36px;
		max-height: 36px;
	}

	.site-footer__form {
		display: grid;
		max-width: none;
		gap: 0.75rem;
	}

	.site-footer__form input,
	.site-footer__form button {
		width: 100%;
		border-radius: 4px;
		border: 1px solid rgba(112, 121, 120, 0.28);
	}

	.site-footer__form button {
		border-color: var(--color-secondary);
	}
}

/* Fix newsletter subscribe button on mobile */
@media (max-width: 767px) {
	.home-newsletter__form {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 14px !important;
	}

	.home-newsletter__form input {
		width: 100% !important;
		max-width: none !important;
		box-sizing: border-box !important;
	}

	.home-newsletter__form .home-button,
	.home-newsletter__form button {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		box-sizing: border-box !important;
	}
}

/* Premium motion enhancements */
.reveal {
	--reveal-x: 0px;
	--reveal-y: 0px;
	--reveal-rest-x: 0px;
	--reveal-rest-y: 0px;
	--reveal-scale-start: 1;
}

.js-enabled .site-header {
	animation: header-enter 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js-enabled .home-hero__media img {
	animation: hero-image-drift 14s ease-out both;
	will-change: transform;
}

.js-enabled .home-hero__eyebrow,
.js-enabled .home-hero__title,
.js-enabled .home-hero__copy,
.js-enabled .home-hero__actions {
	opacity: 0;
	transform: translateY(18px);
	animation: hero-content-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
	will-change: opacity, transform;
}

.js-enabled .home-hero__eyebrow {
	animation-delay: 180ms;
}

.js-enabled .home-hero__title {
	animation-delay: 320ms;
}

.js-enabled .home-hero__copy {
	animation-delay: 500ms;
}

.js-enabled .home-hero__actions {
	animation-delay: 660ms;
}

.js-enabled .reveal {
	opacity: 0;
	transform: translate3d(calc(var(--reveal-rest-x) + var(--reveal-x)), calc(var(--reveal-rest-y) + var(--reveal-y)), 0) scale(var(--reveal-scale-start));
	transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

.js-enabled .reveal.is-visible {
	opacity: 1;
	transform: translate3d(var(--reveal-rest-x), var(--reveal-rest-y), 0) scale(1);
}

.reveal-up {
	--reveal-y: 26px;
}

.reveal-left {
	--reveal-x: -28px;
}

.reveal-right {
	--reveal-x: 28px;
}

.reveal-scale {
	--reveal-y: 18px;
	--reveal-scale-start: 0.965;
}

.home-pillar {
	transition-duration: 260ms;
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-pillar:hover {
	box-shadow: 0 22px 38px rgba(0, 51, 51, 0.11);
	transform: translateY(-6px);
}

.home-edition__image img {
	will-change: transform;
}

.home-edition:hover .home-edition__image img {
	transform: scale(1.06);
}

.home-button:hover,
.home-button:focus {
	box-shadow: 0 16px 30px rgba(0, 51, 51, 0.16);
	transform: translateY(-2px);
}

.home-newsletter__form input {
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-newsletter__form input:focus {
	box-shadow: 0 0 0 4px rgba(0, 51, 51, 0.08);
	transform: translateY(-1px);
}

.site-footer__column a {
	transition: color 180ms ease, text-decoration-color 180ms ease, text-underline-offset 180ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
	text-underline-offset: 0.45rem;
}

.js-enabled .mobile-menu__list li,
.js-enabled .mobile-menu__cta {
	transition: opacity 220ms ease, transform 220ms ease;
	transition-delay: var(--menu-delay, 0ms);
}

.js-enabled .mobile-menu:not(.is-open) .mobile-menu__list li,
.js-enabled .mobile-menu:not(.is-open) .mobile-menu__cta {
	opacity: 0;
	transform: translateY(-6px);
}

@keyframes header-enter {
	from {
		opacity: 0;
		transform: translateY(-14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-content-enter {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-image-drift {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.045);
	}
}

@media (max-width: 767px) {
	.reveal-up {
		--reveal-y: 18px;
	}

	.reveal-left,
	.reveal-right {
		--reveal-x: 0px;
		--reveal-y: 18px;
	}

	.js-enabled .home-hero__title,
	.js-enabled .home-hero__actions {
		animation-duration: 620ms;
	}

	.home-pillar:hover {
		box-shadow: none;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.js-enabled .reveal,
	.js-enabled .reveal.is-visible,
	.js-enabled .home-hero__media img,
	.js-enabled .home-hero__eyebrow,
	.js-enabled .home-hero__title,
	.js-enabled .home-hero__copy,
	.js-enabled .home-hero__actions,
	.js-enabled .site-header {
		opacity: 1 !important;
		transform: translate3d(var(--reveal-rest-x, 0px), var(--reveal-rest-y, 0px), 0) scale(1) !important;
		animation: none !important;
	}
}

/* Fix stats section on mobile: show all 4 items */
@media (max-width: 767px) {
	.home-stats {
		padding-block: 36px !important;
	}

	.home-stats__grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 28px 24px !important;
		text-align: left !important;
	}

	.home-stats__grid div:nth-child(n+3) {
		display: block !important;
	}

	.home-stats strong {
		font-size: 34px !important;
		line-height: 1 !important;
		margin-bottom: 8px !important;
	}

	.home-stats span {
		font-size: 11px !important;
		line-height: 1.45 !important;
		letter-spacing: 0.16em !important;
	}
}

/* Mobile hero spacing/height fix */
@media (max-width: 767px) {
	.home-hero {
		min-height: auto !important;
		height: auto !important;
		display: block !important;
	}

	.home-hero__media {
		position: relative !important;
		height: 560px !important;
		min-height: 560px !important;
		display: block !important;
	}

	.home-hero__media img {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center center !important;
	}

	.home-hero__media::after {
		background: linear-gradient(
			180deg,
			rgba(0, 51, 51, 0.05) 0%,
			rgba(0, 20, 20, 0.18) 38%,
			rgba(0, 0, 0, 0.82) 100%
		) !important;
	}

	.home-hero__inner {
		position: absolute !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 28px !important;
		z-index: 3 !important;
		padding: 0 22px !important;
	}

	.home-hero h1 {
		max-width: 420px !important;
		margin-bottom: 22px !important;
		font-size: clamp(2.6rem, 11vw, 3.4rem) !important;
		line-height: 1.05 !important;
	}

	.home-hero .home-button {
		width: 100% !important;
		max-width: none !important;
	}
}

/* HARD FIX: mobile hero huge spacing */
@media (max-width: 767px) {
	.home-hero {
		position: relative !important;
		display: block !important;
		min-height: 0 !important;
		height: 520px !important;
		max-height: 520px !important;
		overflow: hidden !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.home-hero__media {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.home-hero__media img {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center center !important;
	}

	.home-hero__inner {
		position: absolute !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 22px !important;
		z-index: 5 !important;
		width: 100% !important;
		padding: 0 20px !important;
		margin: 0 !important;
	}

	.home-hero h1 {
		margin: 0 0 18px !important;
		max-width: 100% !important;
		font-size: 44px !important;
		line-height: 1.04 !important;
		color: #fff !important;
	}

	.home-hero__copy,
	.home-hero .home-eyebrow,
	.home-hero .home-button--secondary {
		display: none !important;
	}

	.home-hero .home-actions {
		margin: 0 !important;
		padding: 0 !important;
		display: block !important;
	}

	.home-hero .home-button {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}
}

/* ================================
   About Page
================================ */
.about-page {
	--about-background: #fef9f0;
	--about-surface: #ffffff;
	--about-surface-muted: #f2ede4;
	--about-primary: #003333;
	--about-primary-dark: #0d403c;
	--about-secondary: #a43e00;
	--about-secondary-bright: #fe7f43;
	--about-text: #1d1c16;
	--about-muted: #3f4848;
	--about-border: #e7e2d9;
	--about-outline: #bfc8c8;

	padding-block: 0;
	overflow: hidden;
	background: var(--about-background);
	color: var(--about-text);
}

.about-page img {
	display: block;
	width: 100%;
	height: auto;
}

.about-page__hero {
	position: relative;
	min-height: calc(100vh - var(--header-height));
	overflow: hidden;
	background: var(--about-primary);
}

.about-page__hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.92) brightness(0.78);
	transform: scale(1.03);
}

.about-page__hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(0, 24, 24, 0.78) 0%, rgba(0, 34, 34, 0.52) 42%, rgba(0, 0, 0, 0.16) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.about-page__hero-inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 12vw, 9rem);
}

.about-page__hero h1 {
	max-width: 720px;
	margin: 0 0 1.35rem;
	color: #ffffff;
	font-size: clamp(3.3rem, 7.2vw, 5.85rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

.about-page__hero h1::after {
	content: "";
	display: block;
	width: 70px;
	height: 4px;
	margin-top: 1.4rem;
	background: var(--about-secondary-bright);
}

.about-page__hero p:not(.about-page__eyebrow) {
	max-width: 620px;
	margin-bottom: 1.8rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.06rem;
	line-height: 1.7;
}

.about-page__eyebrow {
	margin: 0 0 0.9rem;
	color: var(--about-secondary);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	line-height: 1.3;
	text-transform: uppercase;
}

.about-page__hero-kicker {
	color: #ffdbca;
}

.about-page__text-link {
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 0.45rem;
}

.about-page__text-link:hover,
.about-page__text-link:focus {
	color: #ffdbca;
}

.about-page__mission,
.about-page__story,
.about-page__cta {
	background: var(--about-background);
}

.about-page__mission {
	padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.about-page__mission-grid {
	display: grid;
	gap: clamp(3rem, 7vw, 5.5rem);
	align-items: center;
}

.about-page__mission-copy {
	max-width: 620px;
}

.about-page__mission h2,
.about-page__section-header h2,
.about-page__story h2,
.about-page__impact h2,
.about-page__cta h2 {
	color: var(--about-primary);
	font-size: clamp(2.15rem, 5vw, 4rem);
	font-weight: 600;
	line-height: 1.08;
}

.about-page__mission-copy > p:not(.about-page__eyebrow),
.about-page__timeline-item p,
.about-page__cta p {
	color: var(--about-muted);
}

.about-page__mission-copy > p:not(.about-page__eyebrow) {
	max-width: 560px;
	font-size: 1rem;
	line-height: 1.8;
}

.about-page__micro-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem 2.3rem;
	margin-top: 2.4rem;
}

.about-page__micro-stats span {
	display: grid;
	gap: 0.35rem;
	color: var(--about-primary);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

.about-page__micro-stats small {
	color: var(--about-muted);
	font-family: var(--font-body);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.about-page__mission-media {
	position: relative;
	justify-self: end;
	width: min(100%, 520px);
}

.about-page__mission-media img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 24px 46px rgba(0, 51, 51, 0.15);
}

.about-page__mission-media blockquote {
	position: absolute;
	right: auto;
	bottom: -2.1rem;
	left: -3rem;
	width: min(280px, 74%);
	margin: 0;
	padding: 1.45rem;
	border-radius: 2px;
	background: var(--about-secondary-bright);
	color: #360f00;
	font-family: var(--font-heading);
	font-size: 1.04rem;
	font-style: italic;
	line-height: 1.45;
	box-shadow: 0 18px 32px rgba(164, 62, 0, 0.2);
}

.about-page__vision {
	padding-block: clamp(5rem, 9vw, 7.75rem);
	background: var(--about-surface-muted);
}

.about-page__section-header {
	max-width: 760px;
	margin: 0 auto clamp(2.7rem, 5vw, 4rem);
	text-align: center;
}

.about-page__vision-grid {
	display: grid;
	gap: 1rem;
}

.about-page__vision-card,
.about-page__vision-image {
	min-width: 0;
	border-radius: 8px;
}

.about-page__vision-card {
	position: relative;
	min-height: 238px;
	padding: clamp(1.45rem, 3vw, 2rem);
	overflow: hidden;
	border: 1px solid rgba(191, 200, 200, 0.44);
	background: var(--about-surface);
	box-shadow: 0 20px 25px -5px rgba(13, 64, 60, 0.08);
}

.about-page__vision-card span {
	display: block;
	margin-bottom: 3.5rem;
	color: rgba(0, 51, 51, 0.12);
	font-family: var(--font-heading);
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 0.8;
}

.about-page__vision-card h3 {
	position: relative;
	margin-bottom: 0.6rem;
	color: var(--about-primary);
	font-size: 1.45rem;
	font-weight: 600;
}

.about-page__vision-card p {
	position: relative;
	margin: 0;
	color: var(--about-muted);
	font-size: 0.93rem;
	line-height: 1.65;
}

.about-page__vision-card--dark {
	background: var(--about-primary);
	color: #ffffff;
}

.about-page__vision-card--warm {
	background: var(--about-secondary);
	color: #ffffff;
}

.about-page__vision-card--dark h3,
.about-page__vision-card--warm h3,
.about-page__vision-card--dark p,
.about-page__vision-card--warm p {
	color: #ffffff;
}

.about-page__vision-card--dark p,
.about-page__vision-card--warm p {
	opacity: 0.82;
}

.about-page__vision-card--dark span,
.about-page__vision-card--warm span {
	color: rgba(255, 255, 255, 0.24);
}

.about-page__vision-image {
	overflow: hidden;
	min-height: 238px;
}

.about-page__vision-image img {
	height: 100%;
	min-height: 238px;
	object-fit: cover;
	filter: saturate(0.82);
}

.about-page__story {
	padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.about-page__story-grid {
	display: grid;
	gap: clamp(2.5rem, 7vw, 5rem);
}

.about-page__story-intro {
	max-width: 340px;
}

.about-page__story-intro blockquote {
	margin: 2rem 0;
	padding-left: 1.1rem;
	border-left: 2px solid var(--about-secondary);
	color: var(--about-primary);
	font-family: var(--font-heading);
	font-size: 1.06rem;
	font-style: italic;
	line-height: 1.55;
}

.about-page__story-intro p {
	color: var(--about-secondary);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 2;
	text-transform: uppercase;
}

.about-page__timeline {
	display: grid;
	gap: clamp(3rem, 6vw, 5.5rem);
}

.about-page__timeline-item {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

.about-page__timeline-item img,
.about-page__story-images img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 18px 32px rgba(0, 51, 51, 0.12);
	filter: grayscale(1) contrast(0.95);
}

.about-page__timeline-kicker {
	margin-bottom: 0.75rem;
	color: var(--about-secondary) !important;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.about-page__timeline-item h3 {
	color: var(--about-primary);
	font-size: clamp(1.45rem, 3vw, 2rem);
}

.about-page__timeline-item p {
	max-width: 620px;
	line-height: 1.75;
}

.about-page__story-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.about-page__impact {
	padding-block: clamp(5rem, 9vw, 7.5rem);
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 30%, rgba(127, 186, 185, 0.18), transparent 32%),
		var(--about-primary-dark);
	color: #ffffff;
}

.about-page__impact-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.about-page__impact .about-page__eyebrow {
	color: #ffdbca;
}

.about-page__impact h2 {
	color: #ffffff;
}

.about-page__impact-copy > p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.75;
}

.about-page__impact-list {
	display: grid;
	gap: 1.25rem;
	margin: 2rem 0 1.8rem;
}

.about-page__impact-list div {
	display: grid;
	grid-template-columns: 2rem 1fr;
	gap: 0 0.75rem;
}

.about-page__impact-list span {
	grid-row: span 2;
	color: var(--about-secondary-bright);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.about-page__impact-list h3 {
	margin-bottom: 0.3rem;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-page__impact-list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.91rem;
	line-height: 1.6;
}

.about-page__impact-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.72rem 1rem;
	border-radius: 4px;
	background: var(--about-secondary-bright);
	color: #360f00;
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.about-page__impact-button:hover,
.about-page__impact-button:focus {
	background: #ffb596;
	color: #360f00;
}

.about-page__impact-visual {
	justify-self: center;
	width: min(100%, 430px);
}

.about-page__impact-orbit {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
}

.about-page__impact-orbit::before,
.about-page__impact-orbit::after {
	content: "";
	position: absolute;
	inset: 4%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.about-page__impact-orbit::after {
	inset: 15%;
	border-color: rgba(254, 127, 67, 0.28);
}

.about-page__impact-orbit img {
	width: 68%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 999px;
	filter: saturate(0.82) brightness(0.82);
}

.about-page__impact-orbit div {
	position: absolute;
	top: 20%;
	right: 0;
	padding: 0.85rem 1rem;
	border-radius: 6px;
	background: #fef9f0;
	color: var(--about-primary);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
	text-align: center;
}

.about-page__impact-orbit strong,
.about-page__impact-orbit span {
	display: block;
}

.about-page__impact-orbit strong {
	color: var(--about-secondary);
	font-family: var(--font-heading);
	font-size: 1.4rem;
	line-height: 1;
}

.about-page__impact-orbit span {
	margin-top: 0.2rem;
	font-size: 0.55rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.about-page__cta {
	padding-block: clamp(5rem, 9vw, 7.5rem);
	text-align: center;
}

.about-page__cta .container {
	max-width: 760px;
}

.about-page__cta h2 {
	margin-bottom: 1rem;
}

.about-page__cta p {
	max-width: 560px;
	margin-inline: auto;
	margin-bottom: 2.25rem;
	line-height: 1.75;
}

.about-page__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.about-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	min-width: 230px;
	padding: 0.95rem 1.35rem;
	border: 1px solid var(--about-primary);
	border-radius: 4px;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-align: center;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.about-page__button--primary {
	background: var(--about-primary);
	color: #ffffff;
	box-shadow: 0 18px 28px rgba(0, 51, 51, 0.12);
}

.about-page__button--secondary {
	border-color: var(--about-secondary);
	background: transparent;
	color: var(--about-secondary);
}

.about-page__button:hover,
.about-page__button:focus {
	transform: translateY(-2px);
}

.about-page__button--primary:hover,
.about-page__button--primary:focus {
	background: var(--about-primary-dark);
	border-color: var(--about-primary-dark);
	color: #ffffff;
}

.about-page__button--secondary:hover,
.about-page__button--secondary:focus {
	background: rgba(164, 62, 0, 0.08);
	color: var(--about-secondary);
}

@media (min-width: 768px) {
	.about-page__mission-grid,
	.about-page__story-grid,
	.about-page__impact-grid {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
	}

	.about-page__vision-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-auto-rows: minmax(238px, auto);
	}

	.about-page__vision-card--wide {
		grid-column: span 2;
	}

	.about-page__timeline-item {
		grid-template-columns: minmax(220px, 0.9fr) minmax(340px, 1.2fr);
	}

	.about-page__timeline-item--split,
	.about-page__timeline-item--text {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1024px) {
	.about-page__timeline {
		padding-top: 0.5rem;
	}

	.about-page__timeline-item--split {
		padding-left: 8vw;
	}

	.about-page__timeline-item--text {
		padding-left: 13vw;
	}
}

@media (max-width: 767px) {
	.about-page {
		overflow-x: hidden;
	}

	.about-page__hero {
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.about-page__hero-overlay {
		align-items: end;
		background: linear-gradient(180deg, rgba(0, 51, 51, 0.06) 0%, rgba(0, 34, 34, 0.2) 38%, rgba(0, 34, 34, 0.86) 100%);
	}

	.about-page__hero-inner {
		padding: 0 20px 28px;
	}

	.about-page__hero-kicker,
	.about-page__hero p:not(.about-page__eyebrow),
	.about-page__text-link {
		display: none;
	}

	.about-page__hero h1 {
		max-width: 410px;
		font-size: clamp(2.45rem, 11vw, 3.15rem);
		line-height: 1.05;
	}

	.about-page__hero h1::after {
		width: 62px;
		height: 3px;
		margin-top: 1.1rem;
	}

	.about-page__mission,
	.about-page__vision,
	.about-page__story,
	.about-page__impact,
	.about-page__cta {
		padding-block: 4rem;
	}

	.about-page__mission-grid,
	.about-page__story-grid,
	.about-page__impact-grid {
		gap: 2.5rem;
	}

	.about-page__mission h2,
	.about-page__section-header h2,
	.about-page__story h2,
	.about-page__impact h2,
	.about-page__cta h2 {
		font-size: clamp(2rem, 8vw, 2.65rem);
	}

	.about-page__mission-media {
		display: none;
	}

	.about-page__micro-stats {
		display: none;
	}

	.about-page__mission-copy > p:first-of-type {
		font-size: 1rem;
	}

	.about-page__mission-copy::after {
		content: "We do not serve dinner; we orchestrate human connection through the universal language of heritage and spice.";
		display: block;
		margin: 2rem 0 0;
		padding: 0.35rem 0 0.35rem 1.45rem;
		border-left: 2px solid var(--about-secondary);
		color: var(--about-primary);
		font-family: var(--font-heading);
		font-size: 1.38rem;
		font-style: italic;
		font-weight: 600;
		line-height: 1.25;
	}

	.about-page__section-header {
		margin-bottom: 2.2rem;
	}

	.about-page__vision-grid {
		gap: 1rem;
	}

	.about-page__vision-card {
		min-height: 178px;
		padding: 1.35rem;
	}

	.about-page__vision-card span {
		margin-bottom: 2.6rem;
		font-size: 3.2rem;
	}

	.about-page__vision-image {
		display: none;
	}

	.about-page__story-grid {
		display: block;
	}

	.about-page__story-intro {
		max-width: none;
		margin-bottom: 2.25rem;
	}

	.about-page__story-intro blockquote,
	.about-page__story-intro p {
		display: none;
	}

	.about-page__timeline {
		position: relative;
		gap: 2.25rem;
		padding-left: 2rem;
	}

	.about-page__timeline::before {
		content: "";
		position: absolute;
		top: 0.45rem;
		bottom: 0;
		left: 0.36rem;
		width: 1px;
		background: var(--about-outline);
	}

	.about-page__timeline-item {
		position: relative;
		gap: 0.9rem;
	}

	.about-page__timeline-item::before {
		content: "";
		position: absolute;
		top: 0.3rem;
		left: -2rem;
		z-index: 1;
		width: 0.75rem;
		height: 0.75rem;
		border-radius: 999px;
		background: var(--about-secondary);
		box-shadow: 0 0 0 5px var(--about-background);
	}

	.about-page__timeline-item > div {
		order: 2;
	}

	.about-page__timeline-item > img,
	.about-page__story-images {
		order: 1;
	}

	.about-page__story-images {
		grid-template-columns: 1fr;
	}

	.about-page__story-images img:nth-child(2) {
		display: none;
	}

	.about-page__timeline-kicker {
		display: none;
	}

	.about-page__timeline-item h3 {
		margin-bottom: 0.25rem;
		font-size: 1.25rem;
	}

	.about-page__timeline-item p {
		font-size: 0.88rem;
		line-height: 1.65;
	}

	.about-page__impact {
		background: var(--about-primary-dark);
		text-align: left;
	}

	.about-page__impact-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.about-page__impact-visual {
		width: 240px;
		margin-inline: auto;
	}

	.about-page__impact-orbit div {
		inset: auto;
		top: 50%;
		left: 50%;
		width: 118px;
		padding: 0;
		background: transparent;
		color: var(--about-secondary-bright);
		box-shadow: none;
		transform: translate(-50%, -50%);
	}

	.about-page__impact-orbit img {
		display: none;
	}

	.about-page__impact-copy {
		text-align: left;
	}

	.about-page__impact-copy > .about-page__eyebrow,
	.about-page__impact h2 {
		text-align: center;
	}

	.about-page__impact-copy > p,
	.about-page__impact-button {
		display: none;
	}

	.about-page__impact-list {
		margin-bottom: 0;
	}

	.about-page__impact-list p {
		font-size: 0.86rem;
	}

	.about-page__cta p {
		font-size: 0.95rem;
	}

	.about-page__cta-actions {
		display: grid;
		gap: 0.9rem;
	}

	.about-page__button {
		width: 100%;
		min-width: 0;
	}
}

/* ================================
   Dinner Series Page
================================ */
.dinner-series-page {
	--dinner-background: #fef9f0;
	--dinner-surface: #f8f3ea;
	--dinner-primary: #003333;
	--dinner-primary-dark: #0d403c;
	--dinner-secondary: #a43e00;
	--dinner-text: #1d1c16;
	--dinner-muted: #3f4848;
	--dinner-border: #e7e2d9;
	--dinner-outline: #bfc8c8;

	padding-block: 0;
	overflow: hidden;
	background: var(--dinner-background);
	color: var(--dinner-text);
}

.dinner-series-page__hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 7vw, 5.75rem);
	background:
		radial-gradient(circle at 50% 20%, rgba(164, 62, 0, 0.08), transparent 24rem),
		linear-gradient(180deg, #fef9f0 0%, #f8f3ea 100%);
	text-align: center;
}

.dinner-series-page__hero::before {
	content: none;
}

.dinner-series-page__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.dinner-series-page__hero-mark {
	position: absolute;
	top: 50%;
	left: clamp(-7rem, -8vw, -3rem);
	z-index: 0;
	width: clamp(18rem, 34vw, 28rem);
	height: clamp(13rem, 25vw, 21rem);
	margin: 0;
	opacity: 0.055;
	pointer-events: none;
	transform: translateY(-50%);
}

.dinner-series-page__hero-mark span {
	position: absolute;
	top: 0;
	width: 48%;
	height: 100%;
	border: 2px solid var(--dinner-primary);
	border-radius: 8px 8px 44px 8px;
}

.dinner-series-page__hero-mark span:first-child {
	left: 3%;
	transform: skewY(-4deg);
}

.dinner-series-page__hero-mark span:last-child {
	right: 3%;
	border-radius: 8px 8px 8px 44px;
	transform: skewY(4deg);
}

.dinner-series-page__hero .dinner-series-page__eyebrow,
.dinner-series-page__hero h1,
.dinner-series-page__hero p {
	position: relative;
	z-index: 1;
}

.dinner-series-page__eyebrow {
	margin: 0 0 1.1rem;
	color: var(--dinner-secondary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.35em;
	line-height: 1.3;
	text-transform: uppercase;
}

.dinner-series-page__hero h1 {
	margin: 0 auto 1.25rem;
	color: var(--dinner-primary);
	font-size: clamp(3.375rem, 5vw, 4.25rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.dinner-series-page__hero h1 span {
	font-style: italic;
	font-weight: 600;
}

.dinner-series-page__hero p:not(.dinner-series-page__eyebrow) {
	max-width: 720px;
	margin: 0 auto;
	color: var(--dinner-muted);
	font-size: clamp(1.06rem, 1.45vw, 1.18rem);
	line-height: 1.75;
}

.dinner-series-page__timeline {
	position: relative;
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--dinner-background);
}

.dinner-series-page__timeline-inner {
	position: relative;
	display: grid;
	gap: clamp(5.5rem, 10vw, 9rem);
}

.dinner-series-page__timeline-inner::before {
	content: "";
	position: absolute;
	top: 1rem;
	bottom: 1rem;
	left: 50%;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0, 51, 51, 0.28), transparent);
	transform: translateX(-50%);
}

.dinner-series-page__act {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 5rem minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}

.dinner-series-page__act:nth-child(even) .dinner-series-page__act-copy {
	grid-column: 3;
	text-align: left;
}

.dinner-series-page__act:nth-child(even) .dinner-series-page__act-image {
	grid-column: 1;
	grid-row: 1;
}

.dinner-series-page__act:nth-child(odd) .dinner-series-page__act-copy {
	text-align: right;
}

.dinner-series-page__act-copy {
	max-width: 430px;
	justify-self: end;
}

.dinner-series-page__act:nth-child(even) .dinner-series-page__act-copy {
	justify-self: start;
}

.dinner-series-page__act-roman {
	margin: 0 0 0.85rem;
	color: var(--dinner-secondary);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.dinner-series-page__act h2 {
	margin: 0 0 1rem;
	color: var(--dinner-primary);
	font-size: clamp(1.9rem, 3.5vw, 3.2rem);
	font-weight: 600;
	line-height: 1.08;
}

.dinner-series-page__act-copy p:not(.dinner-series-page__act-roman) {
	margin: 0;
	color: var(--dinner-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.dinner-series-page__act-number {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	display: grid;
	place-items: center;
	width: 4.25rem;
	height: 4.25rem;
	justify-self: center;
	border: 1px solid rgba(0, 51, 51, 0.2);
	border-radius: 999px;
	background: var(--dinner-background);
	color: var(--dinner-primary);
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 0 0 0.9rem var(--dinner-background);
}

.dinner-series-page__act-number--mobile {
	display: none;
}

.dinner-series-page__act-image {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background: var(--dinner-surface);
	box-shadow: 0 24px 42px rgba(0, 51, 51, 0.13);
}

.dinner-series-page__act-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(0, 32, 32, 0.18));
	pointer-events: none;
}

.dinner-series-page__act-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.88) contrast(1.02);
	transition: transform 600ms ease;
}

.dinner-series-page__act:hover .dinner-series-page__act-image img {
	transform: scale(1.04);
}

.dinner-series-page__cta {
	padding-block: clamp(5rem, 9vw, 7.5rem);
	background:
		radial-gradient(circle at 72% 34%, rgba(127, 186, 185, 0.14), transparent 28rem),
		var(--dinner-primary-dark);
	color: #ffffff;
	text-align: center;
}

.dinner-series-page__cta-inner {
	max-width: 780px;
}

.dinner-series-page__cta .dinner-series-page__eyebrow {
	color: #ffdbca;
}

.dinner-series-page__cta h2 {
	margin: 0 0 1rem;
	color: #ffffff;
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 600;
	line-height: 1.08;
}

.dinner-series-page__cta p:not(.dinner-series-page__eyebrow) {
	max-width: 620px;
	margin: 0 auto 2.35rem;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.05rem;
	line-height: 1.8;
}

.dinner-series-page__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.dinner-series-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	min-width: 220px;
	padding: 0.95rem 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dinner-series-page__button:hover,
.dinner-series-page__button:focus {
	transform: translateY(-2px);
}

.dinner-series-page__button--light {
	border-color: #ffffff;
	background: #ffffff;
	color: var(--dinner-primary);
}

.dinner-series-page__button--light:hover,
.dinner-series-page__button--light:focus {
	background: #f8f3ea;
	border-color: #f8f3ea;
	color: var(--dinner-primary);
}

.dinner-series-page__button--outline {
	background: transparent;
	color: #ffffff;
}

.dinner-series-page__button--outline:hover,
.dinner-series-page__button--outline:focus {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

@media (max-width: 900px) {
	.dinner-series-page__timeline-inner {
		gap: 4rem;
	}

	.dinner-series-page__timeline-inner::before {
		display: none;
	}

	.dinner-series-page__act,
	.dinner-series-page__act:nth-child(even) {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.dinner-series-page__act-copy,
	.dinner-series-page__act:nth-child(even) .dinner-series-page__act-copy,
	.dinner-series-page__act:nth-child(odd) .dinner-series-page__act-copy {
		grid-column: 1;
		grid-row: 2;
		max-width: none;
		justify-self: stretch;
		text-align: left;
	}

	.dinner-series-page__act-image,
	.dinner-series-page__act:nth-child(even) .dinner-series-page__act-image {
		grid-column: 1;
		grid-row: 1;
	}

	.dinner-series-page__act-number--desktop {
		display: none;
	}

	.dinner-series-page__act-number--mobile {
		position: absolute;
		top: 16px;
		left: 16px;
		z-index: 3;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 60px;
		border: 1px solid rgba(0, 51, 51, 0.16);
		border-radius: 999px;
		background: rgba(254, 249, 240, 0.94);
		color: var(--dinner-primary);
		font-family: var(--font-heading);
		font-size: 19px;
		font-weight: 700;
		box-shadow: 0 10px 24px rgba(0, 32, 32, 0.16);
	}
}

@media (max-width: 767px) {
	.dinner-series-page__hero {
		padding-block: 3rem 3.5rem;
		text-align: center;
	}

	.dinner-series-page__hero::before {
		content: none;
	}

	.dinner-series-page__hero-inner {
		max-width: none;
	}

	.dinner-series-page__hero-mark {
		top: 48%;
		left: 50%;
		width: 82vw;
		height: 60vw;
		max-height: 300px;
		opacity: 0.045;
		transform: translate(-50%, -50%);
	}

	.dinner-series-page__hero-mark span {
		width: 48%;
		height: 100%;
	}

	.dinner-series-page__eyebrow {
		font-size: 0.66rem;
		letter-spacing: 0.2em;
	}

	.dinner-series-page__hero h1 {
		font-size: clamp(2.125rem, 10.5vw, 2.625rem);
		line-height: 1.08;
	}

	.dinner-series-page__hero p:not(.dinner-series-page__eyebrow) {
		max-width: 34rem;
		font-size: 0.96rem;
		line-height: 1.7;
	}

	.dinner-series-page__timeline {
		padding-block: 3.75rem;
	}

	.dinner-series-page__timeline-inner {
		gap: 3.4rem;
	}

	.dinner-series-page__act-image {
		position: relative;
		overflow: hidden;
		isolation: isolate;
		aspect-ratio: 4 / 3.25;
		border-radius: 8px;
		box-shadow: 0 18px 30px rgba(0, 51, 51, 0.12);
	}

	.dinner-series-page__act-number--mobile {
		inset: auto auto auto auto;
		top: 16px;
		right: auto;
		bottom: auto;
		left: 16px;
		z-index: 5;
		width: 64px;
		min-width: 64px;
		height: 64px;
		min-height: 64px;
		margin: 0;
		border-radius: 999px;
		background: #fef9f0;
		color: #003333;
		font-size: 20px;
		font-weight: 700;
		line-height: 1;
		box-shadow: 0 12px 24px rgba(0, 32, 32, 0.18);
		transform: none;
	}

	.dinner-series-page__act-roman {
		margin-bottom: 0.55rem;
		font-size: 0.68rem;
	}

	.dinner-series-page__act h2 {
		margin-bottom: 0.65rem;
		font-size: 1.75rem;
	}

	.dinner-series-page__act-copy p:not(.dinner-series-page__act-roman) {
		font-size: 0.94rem;
		line-height: 1.7;
	}

	.dinner-series-page__cta {
		padding-block: 4.5rem;
	}

	.dinner-series-page__cta p:not(.dinner-series-page__eyebrow) {
		font-size: 0.96rem;
	}

	.dinner-series-page__cta-actions {
		display: grid;
		gap: 0.85rem;
	}

	.dinner-series-page__button {
		width: 100%;
		min-width: 0;
	}
}

/* ================================
   Speakers Page
================================ */
.speakers-page {
	--speakers-background: #fef9f0;
	--speakers-surface: #f8f3ea;
	--speakers-container: #f2ede4;
	--speakers-primary: #003333;
	--speakers-dark: #0d403c;
	--speakers-secondary: #a43e00;
	--speakers-sand: #f0ead6;
	--speakers-text: #1d1c16;
	--speakers-muted: #3f4848;
	--speakers-border: #e7e2d9;

	padding-block: 0;
	overflow: hidden;
	background: var(--speakers-background);
	color: var(--speakers-text);
}

.speakers-page__hero {
	padding-block: clamp(5rem, 9vw, 7.5rem);
	background: var(--speakers-background);
}

.speakers-page__hero-grid {
	display: grid;
	gap: clamp(3rem, 7vw, 6rem);
	align-items: center;
}

.speakers-page__hero-copy {
	max-width: 650px;
}

.speakers-page__eyebrow {
	margin: 0 0 1rem;
	color: var(--speakers-secondary);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.speakers-page__hero h1 {
	margin: 0 0 2rem;
	color: var(--speakers-primary);
	font-size: clamp(3rem, 6vw, 5.2rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: 0;
}

.speakers-page__hero h1 span {
	font-style: italic;
	font-weight: 600;
}

.speakers-page__hero-copy > p {
	max-width: 590px;
	margin: 0;
	color: var(--speakers-muted);
	font-size: 1.08rem;
	line-height: 1.82;
}

.speakers-page__hero-media {
	position: relative;
	justify-self: end;
	width: min(100%, 470px);
}

.speakers-page__hero-image {
	overflow: hidden;
	margin: 0;
	aspect-ratio: 4 / 5;
	border-radius: 12px;
	background: var(--speakers-container);
	box-shadow: 0 26px 50px rgba(0, 51, 51, 0.16);
}

.speakers-page__hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.speakers-page__stat-card {
	position: absolute;
	bottom: -1.8rem;
	left: -1.6rem;
	max-width: 205px;
	padding: 1.65rem;
	border-radius: 8px;
	background: var(--speakers-secondary);
	color: #ffffff;
	box-shadow: 0 20px 34px rgba(164, 62, 0, 0.24);
}

.speakers-page__stat-card strong,
.speakers-page__stat-card span {
	display: block;
}

.speakers-page__stat-card strong {
	margin-bottom: 0.5rem;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-style: italic;
	line-height: 1;
}

.speakers-page__stat-card span {
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	line-height: 1.55;
	text-transform: uppercase;
}

.speakers-page__filters {
	position: sticky;
	top: calc(var(--header-height) + 16px);
	z-index: 20;
	padding-block: 1.55rem;
	background: var(--speakers-container);
	border-block: 1px solid rgba(191, 200, 200, 0.26);
}

.speakers-page__filter-scroll {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
	justify-content: center;
}

.speakers-page__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0.55rem 1.2rem;
	border: 0;
	border-radius: 4px;
	background: var(--speakers-sand);
	color: var(--speakers-primary);
	font: inherit;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.speakers-page__chip:hover,
.speakers-page__chip:focus {
	background: #e7e2d9;
}

.speakers-page__chip.is-active {
	background: var(--speakers-primary);
	color: #ffffff;
	box-shadow: 0 8px 16px rgba(0, 51, 51, 0.14);
}

.speakers-page__speakers {
	padding-block: clamp(5rem, 9vw, 7rem);
}

.speakers-page__grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 3rem);
}

.speakers-page__card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(191, 200, 200, 0.32);
	border-radius: 10px;
	background: var(--speakers-surface);
	box-shadow: 0 16px 30px rgba(0, 51, 51, 0.06);
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.speakers-page__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 46px rgba(0, 51, 51, 0.13);
}

.speakers-page__card-image {
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: var(--speakers-primary);
}

.speakers-page__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.speakers-page__card:hover .speakers-page__card-image img {
	transform: scale(1.08);
}

.speakers-page__card-content {
	position: absolute;
	inset: auto 0 0;
	padding: 2rem;
	background: linear-gradient(180deg, rgba(0, 51, 51, 0) 0%, rgba(0, 51, 51, 0.92) 34%, rgba(0, 51, 51, 0.96) 100%);
	color: #ffffff;
}

.speakers-page__card-content span {
	display: inline-flex;
	margin-bottom: 0.85rem;
	padding: 0.3rem 0.45rem;
	border-radius: 2px;
	background: var(--speakers-secondary);
	color: #ffffff;
	font-size: 0.55rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
}

.speakers-page__card-content h2 {
	margin: 0 0 0.55rem;
	color: #ffffff;
	font-size: clamp(1.55rem, 2.6vw, 2rem);
	line-height: 1.05;
}

.speakers-page__card-content p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.92rem;
	line-height: 1.55;
}

.speakers-page__placeholder {
	display: flex;
	min-height: 100%;
	aspect-ratio: 3 / 4;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	border: 1px dashed rgba(0, 51, 51, 0.22);
	border-radius: 10px;
	background: #ece8df;
	text-align: center;
}

.speakers-page__placeholder span {
	display: block;
	margin-bottom: 1.4rem;
	color: var(--speakers-secondary);
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.speakers-page__placeholder h2 {
	margin: 0 0 0.9rem;
	color: var(--speakers-primary);
	font-size: 1.45rem;
}

.speakers-page__placeholder p {
	max-width: 280px;
	margin: 0;
	color: var(--speakers-muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.speakers-page__apply {
	padding-block: clamp(5rem, 9vw, 7.5rem);
	background: var(--speakers-primary);
	color: #ffffff;
}

.speakers-page__apply-grid {
	display: grid;
	gap: clamp(3rem, 7vw, 6rem);
	align-items: center;
}

.speakers-page__apply-copy h2 {
	margin: 0 0 2rem;
	color: #ffffff;
	font-size: clamp(2.75rem, 5vw, 4.5rem);
	font-weight: 700;
	line-height: 1.02;
}

.speakers-page__apply-copy h2 span {
	font-style: italic;
	font-weight: 600;
}

.speakers-page__apply-copy > p {
	max-width: 590px;
	margin: 0 0 2.7rem;
	color: #b1eded;
	font-size: 1.04rem;
	line-height: 1.78;
}

.speakers-page__values {
	display: grid;
	gap: 1.35rem;
}

.speakers-page__values div {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 0 1rem;
	align-items: start;
}

.speakers-page__values span {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	background: var(--speakers-secondary);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 900;
}

.speakers-page__values h3 {
	margin: 0 0 0.35rem;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.speakers-page__values p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
	line-height: 1.55;
}

.speakers-page__form {
	display: grid;
	gap: 1.35rem;
	padding: clamp(1.5rem, 4vw, 2.6rem);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.speakers-page__form h2 {
	margin: 0 0 0.55rem;
	color: #ffffff;
	font-size: 2rem;
}

.speakers-page__form-row {
	display: grid;
	gap: 1rem;
}

.speakers-page__form label {
	display: grid;
	gap: 0.55rem;
	margin: 0;
}

.speakers-page__form label span {
	color: #7fbab9;
	font-size: 0.64rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.speakers-page__form input,
.speakers-page__form textarea {
	width: 100%;
	min-width: 0;
	border: 1px solid rgba(177, 237, 237, 0.2);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	font: inherit;
	font-size: 0.95rem;
}

.speakers-page__form input {
	min-height: 46px;
	padding: 0.8rem 0.95rem;
}

.speakers-page__form textarea {
	min-height: 124px;
	padding: 0.9rem 0.95rem;
	resize: vertical;
}

.speakers-page__form input::placeholder,
.speakers-page__form textarea::placeholder {
	color: rgba(255, 255, 255, 0.36);
}

.speakers-page__form input:focus,
.speakers-page__form textarea:focus {
	border-color: var(--speakers-secondary);
	outline: 2px solid rgba(254, 127, 67, 0.16);
}

.speakers-page__form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	border: 0;
	border-radius: 6px;
	background: var(--speakers-secondary);
	color: #ffffff;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.speakers-page__form button:hover,
.speakers-page__form button:focus {
	background: #7d2d00;
	transform: translateY(-1px);
}

.speakers-page__form-status {
	min-height: 1.3rem;
	margin: 0;
	color: #b1eded;
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.speakers-page__hero-grid {
		grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
	}

	.speakers-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.speakers-page__form-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.speakers-page__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.speakers-page__apply-grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
	}
}

@media (max-width: 767px) {
	.speakers-page__hero {
		padding-block: 2.5rem 3rem;
	}

	.speakers-page__hero-grid {
		gap: 1.5rem;
	}

	.speakers-page__hero-copy {
		display: contents;
	}

	.speakers-page__eyebrow {
		margin-bottom: 0.55rem;
		font-size: 0.63rem;
		letter-spacing: 0.15em;
	}

	.speakers-page__hero h1 {
		margin-bottom: 0;
		font-size: clamp(2.35rem, 10.5vw, 3.05rem);
		line-height: 1.04;
	}

	.speakers-page__hero-media {
		justify-self: stretch;
		width: 100%;
	}

	.speakers-page__hero-image {
		border-radius: 8px;
		box-shadow: 0 18px 32px rgba(0, 51, 51, 0.14);
	}

	.speakers-page__stat-card {
		right: 1.1rem;
		bottom: 1.1rem;
		left: 1.1rem;
		max-width: none;
		padding: 1rem;
		border: 1px solid var(--speakers-sand);
		background: rgba(254, 249, 240, 0.95);
		color: var(--speakers-primary);
		box-shadow: 0 12px 24px rgba(0, 51, 51, 0.16);
	}

	.speakers-page__stat-card strong {
		display: inline;
		margin-right: 0.45rem;
		color: var(--speakers-secondary);
		font-size: 1.35rem;
	}

	.speakers-page__stat-card span {
		display: inline;
		font-size: 0.62rem;
	}

	.speakers-page__hero-copy > p {
		max-width: none;
		font-size: 0.98rem;
		line-height: 1.72;
	}

	.speakers-page__filters {
		position: relative;
		top: auto;
		padding-block: 1.2rem;
	}

	.speakers-page__filter-scroll {
		width: 100%;
		max-width: none;
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-inline: 20px;
		scrollbar-width: none;
	}

	.speakers-page__filter-scroll::-webkit-scrollbar {
		display: none;
	}

	.speakers-page__chip {
		min-height: 38px;
		padding-inline: 1rem;
		font-size: 0.68rem;
	}

	.speakers-page__speakers {
		padding-block: 2.5rem 4rem;
	}

	.speakers-page__grid {
		gap: 1.5rem;
	}

	.speakers-page__card {
		border-color: var(--speakers-sand);
		border-radius: 8px;
		background: var(--speakers-surface);
		box-shadow: none;
	}

	.speakers-page__card:hover {
		transform: none;
		box-shadow: 0 16px 28px rgba(0, 51, 51, 0.08);
	}

	.speakers-page__card-image {
		aspect-ratio: 16 / 9;
	}

	.speakers-page__card-content {
		position: static;
		padding: 1.25rem;
		background: transparent;
		color: var(--speakers-text);
	}

	.speakers-page__card-content span {
		padding: 0;
		background: transparent;
		color: var(--speakers-secondary);
		font-size: 0.58rem;
	}

	.speakers-page__card-content h2 {
		color: var(--speakers-primary);
		font-size: 1.55rem;
	}

	.speakers-page__card-content p {
		display: block;
		color: var(--speakers-muted);
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.speakers-page__placeholder {
		aspect-ratio: auto;
		min-height: 220px;
		padding: 2rem 1.25rem;
		background: #f8f3ea;
	}

	.speakers-page__apply {
		padding-block: 4rem;
		border-radius: 2rem 2rem 0 0;
	}

	.speakers-page__apply-grid {
		gap: 2rem;
	}

	.speakers-page__apply-copy {
		text-align: center;
	}

	.speakers-page__apply-copy h2 {
		margin-bottom: 1.2rem;
		font-size: clamp(2.15rem, 10vw, 2.8rem);
		text-transform: none;
	}

	.speakers-page__apply-copy > p {
		font-size: 0.96rem;
	}

	.speakers-page__values {
		text-align: left;
	}

	.speakers-page__values div {
		grid-template-columns: 2rem 1fr;
		padding: 1rem;
		border: 1px solid rgba(127, 186, 185, 0.2);
		border-radius: 8px;
		background: rgba(1, 75, 75, 0.28);
	}

	.speakers-page__values span {
		width: 1.7rem;
		height: 1.7rem;
		background: transparent;
		color: var(--speakers-secondary);
	}

	.speakers-page__form {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

/* ================================
   The Club Page
================================ */
.the-club-page {
	--club-cream: #fef9f0;
	--club-surface: #f2ede4;
	--club-surface-low: #f8f3ea;
	--club-sand: #f0ead6;
	--club-teal: #003333;
	--club-dark-teal: #0d403c;
	--club-orange: #a43e00;
	--club-text: #1d1c16;
	--club-muted: #3f4848;
	margin-top: 0;
	padding-top: 0;
	overflow-x: hidden;
	background: var(--club-cream);
	color: var(--club-text);
}

.the-club-page [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.the-club-page [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.the-club-page [data-reveal]:nth-child(2) {
	transition-delay: 0.08s;
}

.the-club-page__hero {
	position: relative;
	min-height: clamp(560px, 78vh, 780px);
	margin-top: 40px !important;
	padding-top: 0 !important;
	isolation: isolate;
	overflow: hidden;
	background: #050505;
}

.the-club-page__hero-picture,
.the-club-page__hero-picture img {
	position: absolute;
	inset: 0;
	margin-top: 0 !important;
	width: 100%;
	height: 100%;
}

.the-club-page__hero-picture img {
	object-fit: cover;
	object-position: center;
}

.the-club-page__hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.5) 42%, rgba(5, 5, 5, 0.16) 100%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.74) 100%);
}

.the-club-page__hero-content {
	position: relative;
	top: 48px;
	z-index: 2;
	display: flex;
	min-height: clamp(560px, 78vh, 780px);
	max-width: var(--container-width);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-top: 0 !important;
	padding-block: 0 6rem;
	color: #ffffff;
}

.the-club-page__hero-content h1 {
	max-width: 680px;
	margin: 0 0 1.5rem;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: clamp(3.2rem, 6vw, 5.4rem);
	font-weight: 700;
	line-height: 0.98;
}

.the-club-page__hero-content p {
	max-width: 620px;
	margin: 0 0 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1rem, 1.3vw, 1.18rem);
	line-height: 1.8;
}

.the-club-page__button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 0.95rem 1.35rem;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.the-club-page__button:hover,
.the-club-page__button:focus {
	transform: translateY(-1px);
}

.the-club-page__button--primary {
	background: var(--club-teal);
	color: #ffffff;
}

.the-club-page__button--primary:hover,
.the-club-page__button--primary:focus {
	background: var(--club-dark-teal);
	color: #ffffff;
}

.the-club-page__button--secondary {
	border-color: rgba(164, 62, 0, 0.38);
	background: transparent;
	color: var(--club-orange);
}

.the-club-page__button--secondary:hover,
.the-club-page__button--secondary:focus {
	border-color: var(--club-orange);
	background: rgba(164, 62, 0, 0.08);
	color: var(--club-orange);
}

.the-club-page__philosophy {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--club-cream);
}

.the-club-page__philosophy-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
}

.the-club-page__eyebrow {
	margin: 0 0 1rem;
	color: var(--club-orange);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.the-club-page__eyebrow--mobile {
	display: none;
}

.the-club-page__philosophy-copy h2,
.the-club-page__section-heading h2,
.the-club-page__impact-copy h2,
.the-club-page__cta-inner h2 {
	margin: 0;
	color: var(--club-teal);
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.12;
}

.the-club-page__philosophy-copy h2 {
	margin-bottom: 1.35rem;
	font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.the-club-page__philosophy-copy > p:last-child {
	max-width: 610px;
	margin: 0;
	color: var(--club-muted);
	font-size: 1.02rem;
	line-height: 1.9;
}

.the-club-page__quote {
	position: relative;
	margin: 0;
	padding: clamp(2rem, 4vw, 3.5rem);
	border: 1px solid rgba(13, 64, 60, 0.08);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.48);
	box-shadow: 0 24px 55px rgba(13, 64, 60, 0.08);
}

.the-club-page__quote::before {
	content: "99";
	display: block;
	margin-bottom: 1rem;
	color: var(--club-orange);
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.the-club-page__quote p {
	margin: 0 0 1.35rem;
	color: var(--club-text);
	font-family: var(--font-heading);
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-style: italic;
	line-height: 1.45;
}

.the-club-page__quote cite {
	color: var(--club-muted);
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.the-club-page__vision {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--club-surface);
}

.the-club-page__section-heading {
	margin: 0 auto clamp(2.8rem, 5vw, 5rem);
	text-align: center;
}

.the-club-page__section-heading h2 {
	font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.the-club-page__vision-title--mobile {
	display: none;
}

.the-club-page__vision-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.the-club-page__vision-card {
	min-height: 300px;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid rgba(13, 64, 60, 0.08);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 18px 40px rgba(13, 64, 60, 0.04);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.the-club-page__vision-card:hover,
.the-club-page__vision-card:focus-within {
	box-shadow: 0 24px 48px rgba(13, 64, 60, 0.09);
	transform: translateY(-4px);
}

.the-club-page__vision-card--featured {
	background: var(--club-teal);
	color: #ffffff;
}

.the-club-page__vision-card span {
	display: inline-flex;
	width: 2.2rem;
	height: 2.2rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 4.75rem;
	border-radius: 6px;
	background: rgba(164, 62, 0, 0.1);
	color: var(--club-orange);
	font-size: 0.9rem;
	font-weight: 700;
}

.the-club-page__vision-card--featured span {
	background: rgba(255, 255, 255, 0.12);
	color: #ffb596;
}

.the-club-page__vision-card h3 {
	margin: 0 0 1rem;
	color: var(--club-teal);
	font-family: var(--font-heading);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 600;
	line-height: 1.18;
}

.the-club-page__vision-card--featured h3,
.the-club-page__vision-card--featured p {
	color: #ffffff;
}

.the-club-page__vision-card p {
	margin: 0;
	color: var(--club-muted);
	font-size: 0.95rem;
	line-height: 1.75;
}

.the-club-page__story {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--club-cream);
}

.the-club-page__story-list {
	position: relative;
	display: grid;
	gap: clamp(4rem, 7vw, 7rem);
	max-width: 1120px;
	margin-inline: auto;
}

.the-club-page__story-list::before {
	content: "";
	position: absolute;
	top: 0.5rem;
	bottom: 0.5rem;
	left: 50%;
	width: 1px;
	background: rgba(13, 64, 60, 0.15);
	transform: translateX(-50%);
}

.the-club-page__story-item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: center;
}

.the-club-page__story-item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border: 3px solid var(--club-cream);
	border-radius: 999px;
	background: var(--club-orange);
	box-shadow: 0 0 0 1px rgba(164, 62, 0, 0.35);
	transform: translate(-50%, -50%);
	z-index: 1;
}

.the-club-page__story-item--reverse .the-club-page__story-copy {
	order: 2;
	text-align: left;
}

.the-club-page__story-item--reverse .the-club-page__story-image {
	order: 1;
}

.the-club-page__story-copy {
	max-width: 440px;
	justify-self: end;
	text-align: right;
}

.the-club-page__story-copy span {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--club-orange);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.the-club-page__story-copy h3 {
	margin: 0 0 0.8rem;
	color: var(--club-teal);
	font-family: var(--font-heading);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 600;
	line-height: 1.2;
}

.the-club-page__story-copy p {
	margin: 0;
	color: var(--club-muted);
	font-size: 0.98rem;
	line-height: 1.75;
}

.the-club-page__story-image {
	margin: 0;
}

.the-club-page__story-image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 4px;
	filter: grayscale(1);
	object-fit: cover;
	box-shadow: 0 24px 50px rgba(13, 64, 60, 0.1);
	transition: filter 220ms ease, transform 220ms ease;
}

.the-club-page__story-image img:hover {
	filter: grayscale(0);
	transform: scale(1.01);
}

.the-club-page__impact {
	padding-block: clamp(5rem, 8vw, 7rem);
	background: var(--club-dark-teal);
	color: #ffffff;
}

.the-club-page__impact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
}

.the-club-page__impact-copy h2 {
	max-width: 520px;
	margin-bottom: 2rem;
	color: #ffffff;
	font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.the-club-page__impact-points {
	display: grid;
	gap: 1.45rem;
	max-width: 640px;
}

.the-club-page__impact-points article {
	display: grid;
	grid-template-columns: 2.4rem 1fr;
	gap: 1rem;
	align-items: start;
}

.the-club-page__impact-points span {
	display: inline-flex;
	width: 2rem;
	height: 2rem;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--club-orange);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 800;
}

.the-club-page__impact-points h3 {
	margin: 0 0 0.45rem;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 1.35rem;
	line-height: 1.2;
}

.the-club-page__impact-points p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.96rem;
	line-height: 1.75;
}

.the-club-page__impact-image {
	position: relative;
	width: min(430px, 100%);
	aspect-ratio: 1;
	justify-self: center;
	margin: 0;
	border: 2px solid rgba(255, 181, 150, 0.28);
	border-radius: 999px;
	background: rgba(0, 51, 51, 0.42);
	box-shadow: inset 0 0 0 14px rgba(5, 5, 5, 0.28), 0 24px 60px rgba(0, 0, 0, 0.24);
}

.the-club-page__impact-image img {
	display: block;
	width: 100%;
	height: 100%;
	padding: clamp(1.15rem, 3vw, 2.2rem);
	border-radius: 999px;
	object-fit: cover;
}

.the-club-page__cta {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--club-cream);
}

.the-club-page__cta-inner {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.the-club-page__cta-inner h2 {
	margin-bottom: 1.5rem;
	font-size: clamp(2.55rem, 5vw, 4.4rem);
}

.the-club-page__cta-inner > p:not(.the-club-page__eyebrow) {
	margin: 0 auto 2rem;
	color: var(--club-muted);
	font-size: 1rem;
	line-height: 1.85;
}

.the-club-page__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (max-width: 1024px) {
	.the-club-page__philosophy-grid,
	.the-club-page__impact-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.the-club-page__vision-grid {
		grid-template-columns: 1fr;
		max-width: 620px;
		margin-inline: auto;
	}

	.the-club-page__vision-card {
		min-height: 0;
	}

	.the-club-page__vision-card span {
		margin-bottom: 2rem;
	}
}

@media (max-width: 767px) {
	.the-club-page__hero {
		min-height: min(720px, calc(100vh - 24px));
		margin-top: 20px !important;
	}

	.the-club-page__hero-picture img {
		object-position: center top;
	}

	.the-club-page__hero-overlay {
		background: linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.28) 34%, rgba(5, 5, 5, 0.88) 100%);
	}

	.the-club-page__hero-content {
		top: 24px;
		min-height: min(720px, calc(100vh - 24px));
		justify-content: flex-end;
		margin-top: 0 !important;
		padding-block: 0 2.25rem;
	}

	.the-club-page__hero-content h1 {
		max-width: 330px;
		margin-bottom: 1rem;
		font-size: clamp(2.45rem, 11vw, 3.15rem);
		line-height: 0.96;
	}

	.the-club-page__hero-content p {
		display: none;
	}

	.the-club-page__button {
		min-height: 44px;
		padding: 0.85rem 1.05rem;
		font-size: 0.64rem;
		letter-spacing: 0.07em;
	}

	.the-club-page__philosophy,
	.the-club-page__vision,
	.the-club-page__story,
	.the-club-page__cta {
		padding-block: 4rem;
	}

	.the-club-page__philosophy-grid {
		gap: 1.6rem;
	}

	.the-club-page__eyebrow {
		margin-bottom: 0.8rem;
		font-size: 0.66rem;
	}

	.the-club-page__eyebrow--desktop {
		display: none;
	}

	.the-club-page__eyebrow--mobile {
		display: block;
	}

	.the-club-page__philosophy-copy h2 {
		margin-bottom: 1.1rem;
		font-size: 2rem;
	}

	.the-club-page__philosophy-copy > p:last-child {
		display: none;
	}

	.the-club-page__quote {
		padding: 0.35rem 0 0.35rem 1.25rem;
		border: 0;
		border-left: 1px solid rgba(164, 62, 0, 0.45);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.the-club-page__quote::before {
		display: none;
	}

	.the-club-page__quote p {
		margin-bottom: 1rem;
		font-size: 1.2rem;
		line-height: 1.5;
	}

	.the-club-page__quote cite {
		font-size: 0.62rem;
		letter-spacing: 0.04em;
	}

	.the-club-page__section-heading {
		margin-bottom: 2rem;
		text-align: left;
	}

	.the-club-page__vision .the-club-page__section-heading {
		text-align: center;
	}

	.the-club-page__section-heading h2 {
		font-size: 1.8rem;
	}

	.the-club-page__vision-title--desktop {
		display: none;
	}

	.the-club-page__vision-title--mobile {
		display: block;
	}

	.the-club-page__vision-grid {
		gap: 1rem;
	}

	.the-club-page__vision-card,
	.the-club-page__vision-card--featured {
		padding: 1.35rem;
		border-color: rgba(13, 64, 60, 0.1);
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.45);
		color: var(--club-text);
		box-shadow: 0 14px 30px rgba(13, 64, 60, 0.05);
	}

	.the-club-page__vision-card span,
	.the-club-page__vision-card--featured span {
		width: 2rem;
		height: 2rem;
		margin-bottom: 1.25rem;
		background: rgba(164, 62, 0, 0.08);
		color: var(--club-orange);
	}

	.the-club-page__vision-card h3,
	.the-club-page__vision-card--featured h3 {
		color: var(--club-teal);
		font-size: 1.25rem;
	}

	.the-club-page__vision-card p,
	.the-club-page__vision-card--featured p {
		color: var(--club-muted);
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.the-club-page__story-list {
		display: grid;
		gap: 2rem;
		padding-left: 1.35rem;
	}

	.the-club-page__story-list::before {
		left: 0;
		background: rgba(13, 64, 60, 0.18);
		transform: none;
	}

	.the-club-page__story-item,
	.the-club-page__story-item--reverse {
		display: block;
	}

	.the-club-page__story-item::before {
		top: 0.35rem;
		left: -1.35rem;
		width: 10px;
		height: 10px;
		border-width: 2px;
		transform: translateX(-50%);
	}

	.the-club-page__story-copy,
	.the-club-page__story-item--reverse .the-club-page__story-copy {
		max-width: none;
		text-align: left;
	}

	.the-club-page__story-copy span {
		display: inline-flex;
		margin-bottom: 0.7rem;
		padding: 0.25rem 0.55rem;
		border-radius: 4px;
		background: rgba(164, 62, 0, 0.08);
		font-size: 0.64rem;
	}

	.the-club-page__story-copy h3 {
		font-size: 1.35rem;
	}

	.the-club-page__story-copy p {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.the-club-page__story-image {
		margin-top: 1rem;
	}

	.the-club-page__story-image img {
		aspect-ratio: 16 / 9;
		border-radius: 8px;
	}

	.the-club-page__story-item:not(:first-child) .the-club-page__story-image {
		display: none;
	}

	.the-club-page__impact {
		padding-block: 3.25rem 4rem;
		border-radius: 1.4rem 1.4rem 0 0;
	}

	.the-club-page__impact-grid {
		display: flex;
		flex-direction: column-reverse;
		gap: 1.5rem;
		text-align: center;
	}

	.the-club-page__impact-image {
		width: 118px;
		box-shadow: inset 0 0 0 5px rgba(5, 5, 5, 0.22), 0 16px 34px rgba(0, 0, 0, 0.24);
	}

	.the-club-page__impact-image img {
		padding: 0.55rem;
	}

	.the-club-page__impact-copy h2 {
		margin-inline: auto;
		margin-bottom: 0.8rem;
		font-size: 2rem;
	}

	.the-club-page__impact-points {
		margin-top: 1.5rem;
		text-align: left;
	}

	.the-club-page__impact-points article {
		grid-template-columns: 1.8rem 1fr;
		gap: 0.8rem;
		padding: 1rem;
		border: 1px solid rgba(127, 186, 185, 0.12);
		border-radius: 8px;
		background: rgba(0, 51, 51, 0.42);
	}

	.the-club-page__impact-points span {
		width: 1.5rem;
		height: 1.5rem;
		font-size: 0.58rem;
	}

	.the-club-page__impact-points h3 {
		font-size: 1rem;
	}

	.the-club-page__impact-points p {
		font-size: 0.82rem;
		line-height: 1.55;
	}

	.the-club-page__cta-inner {
		text-align: center;
	}

	.the-club-page__cta-inner h2 {
		margin-bottom: 1rem;
		font-size: 2.35rem;
	}

	.the-club-page__cta-inner > p:not(.the-club-page__eyebrow) {
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.the-club-page__cta-actions {
		display: grid;
		gap: 0.85rem;
	}

	.the-club-page__cta-actions .the-club-page__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.the-club-page [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ================================
   Join The Table Page
================================ */
.join-table-page {
	--join-cream: #fef9f0;
	--join-primary: #003333;
	--join-dark: #0d403c;
	--join-orange: #a43e00;
	--join-sand: #f0ead6;
	--join-surface: #f2ede4;
	--join-muted: #3f4848;
	margin-top: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	overflow-x: hidden;
	background: var(--join-cream);
	color: var(--join-primary);
}

.join-table-page__container {
	width: min(calc(100% - 10rem), 1280px);
	margin-inline: auto;
}

.join-table-page__eyebrow {
	margin: 0 0 1rem;
	color: var(--join-orange);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.join-table-page__button,
.join-table-page__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.95rem 1.35rem;
	border: 1px solid var(--join-orange);
	border-radius: 4px;
	background: var(--join-orange);
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.join-table-page__button:hover,
.join-table-page__button:focus,
.join-table-page__submit:hover,
.join-table-page__submit:focus {
	background: #873400;
	border-color: #873400;
	color: #ffffff;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.join-table-page__submit:disabled {
	opacity: 0.82;
	cursor: default;
	transform: none;
}

.join-table-page__hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: calc(100vh - var(--header-height));
	margin-top: 0 !important;
	padding-top: 0 !important;
	overflow: hidden;
	background: var(--join-primary);
	color: #ffffff;
}

.join-table-page__hero-image,
.join-table-page__hero-overlay {
	position: absolute;
	inset: 0;
	margin-top: 0 !important;
	padding-top: 0 !important;
	width: 100%;
	height: 100%;
}

.join-table-page__hero-image {
	object-fit: cover;
	object-position: center;
	transform: scale(1.02);
}

.join-table-page__hero-overlay {
	background:
		linear-gradient(90deg, rgba(0, 31, 31, 0.88) 0%, rgba(0, 51, 51, 0.64) 42%, rgba(0, 51, 51, 0.18) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 31, 31, 0.56) 100%);
}

.join-table-page__hero-content {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 10rem), 1280px);
	max-width: 1280px;
	padding-block: clamp(5rem, 12vh, 9rem);
	text-align: left;
}

.join-table-page__hero-content h1 {
	max-width: 760px;
	margin-bottom: 1.25rem;
	color: #ffffff;
	font-size: clamp(3.3rem, 7vw, 6.6rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.94;
}

.join-table-page__hero-content h1 em {
	font-style: italic;
	font-weight: 600;
}

.join-table-page__hero-content > p:not(.join-table-page__eyebrow) {
	max-width: 670px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.75;
}

.join-table-page__alchemy {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--join-cream);
}

.join-table-page__alchemy-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	gap: clamp(3rem, 6vw, 6rem);
	align-items: center;
}

.join-table-page__alchemy-copy h2 {
	max-width: 620px;
	margin-bottom: 1.1rem;
	color: var(--join-primary);
	font-size: clamp(2.45rem, 4.8vw, 4.6rem);
	font-weight: 700;
	line-height: 0.98;
}

.join-table-page__alchemy-intro {
	display: none;
	max-width: 660px;
	color: var(--join-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.join-table-page__features {
	display: grid;
	gap: 1.8rem;
	margin-top: 3rem;
}

.join-table-page__feature {
	display: grid;
	grid-template-columns: 4.8rem 1fr;
	gap: 1.5rem;
	padding-bottom: 1.8rem;
	border-bottom: 1px solid rgba(0, 51, 51, 0.14);
}

.join-table-page__feature:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.join-table-page__feature-number {
	color: rgba(164, 62, 0, 0.72);
	font-family: var(--font-heading);
	font-size: 1.45rem;
	font-style: italic;
	line-height: 1.15;
}

.join-table-page__feature-kicker {
	margin-bottom: 0.35rem;
	color: var(--join-orange);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.join-table-page__feature h3 {
	margin-bottom: 0.55rem;
	color: var(--join-primary);
	font-size: clamp(1.32rem, 2vw, 1.75rem);
	line-height: 1.12;
}

.join-table-page__feature p:not(.join-table-page__feature-kicker) {
	max-width: 640px;
	margin-bottom: 0;
	color: var(--join-muted);
	font-size: 0.98rem;
	line-height: 1.75;
}

.join-table-page__alchemy-media {
	position: relative;
	min-height: 620px;
}

.join-table-page__alchemy-media img {
	display: block;
	width: 100%;
	height: 620px;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 28px 70px rgba(0, 51, 51, 0.2);
}

.join-table-page__stat-card {
	position: absolute;
	right: clamp(-2rem, -3vw, -1rem);
	bottom: 3rem;
	width: min(82%, 330px);
	padding: 1.65rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: rgba(0, 51, 51, 0.94);
	color: #ffffff;
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.join-table-page__stat-card h3 {
	margin-bottom: 0.7rem;
	color: #ffffff;
	font-size: 1.55rem;
}

.join-table-page__stat-card p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.94rem;
	line-height: 1.6;
}

.join-table-page__request {
	padding-block: clamp(5rem, 9vw, 7.5rem);
	background:
		radial-gradient(circle at top left, rgba(164, 62, 0, 0.18), transparent 34rem),
		linear-gradient(145deg, var(--join-primary), var(--join-dark));
	color: #ffffff;
}

.join-table-page__request-header {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.join-table-page__request-header h2 {
	margin-bottom: 1rem;
	color: #ffffff;
	font-size: clamp(2.5rem, 5vw, 4.7rem);
	line-height: 1;
}

.join-table-page__request-header p:not(.join-table-page__eyebrow) {
	margin-bottom: 2.6rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1rem;
	line-height: 1.75;
}

.join-table-page__form {
	display: grid;
	gap: 1.2rem;
	width: min(100%, 760px);
	margin-inline: auto;
	padding: clamp(1.35rem, 3vw, 2.4rem);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(254, 249, 240, 0.08);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.join-table-page__form label {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.join-table-page__form input,
.join-table-page__form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	font: inherit;
	font-size: 1rem;
	line-height: 1.45;
	outline: 0;
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.join-table-page__form input {
	min-height: 52px;
	padding: 0 1rem;
}

.join-table-page__form textarea {
	min-height: 150px;
	padding: 0.95rem 1rem;
	resize: vertical;
}

.join-table-page__form input:focus,
.join-table-page__form textarea:focus {
	border-color: rgba(164, 62, 0, 0.9);
	background: rgba(255, 255, 255, 0.13);
	box-shadow: 0 0 0 3px rgba(164, 62, 0, 0.18);
}

.join-table-page__submit {
	justify-self: center;
	min-width: 220px;
	margin-top: 0.55rem;
}

.join-table-page__form-status {
	display: grid;
	gap: 0.2rem;
	min-height: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.78);
}

.join-table-page__form-status strong {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 1.2rem;
}

.join-table-page__form-status span {
	font-size: 0.92rem;
}

.join-table-page__final {
	position: relative;
	min-height: 0 !important;
	overflow: hidden;
	margin-bottom: 0 !important;
	padding-top: 80px !important;
	padding-bottom: 80px !important;
	background: var(--join-surface);
	color: var(--join-primary);
}

.join-table-page__watermark {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	width: max-content;
	color: rgba(0, 51, 51, 0.055);
	font-family: var(--font-heading);
	font-size: clamp(2.7rem, 9vw, 8rem);
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transform: translateX(-50%);
	pointer-events: none;
}

.join-table-page__final-inner {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	text-align: center;
}

.join-table-page__final h2 {
	max-width: 930px;
	margin-bottom: 3rem;
	color: var(--join-primary);
	font-size: clamp(2.2rem, 5.2vw, 5rem);
	font-style: italic;
	font-weight: 600;
	line-height: 1.05;
}

.join-table-page__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100%, 900px);
	border-top: 1px solid rgba(0, 51, 51, 0.16);
	border-bottom: 1px solid rgba(0, 51, 51, 0.16);
}

.join-table-page__stat {
	display: grid;
	gap: 0.3rem;
	padding: 1.55rem 1rem;
	border-right: 1px solid rgba(0, 51, 51, 0.16);
}

.join-table-page__stat:last-child {
	border-right: 0;
}

.join-table-page__stat strong {
	color: var(--join-orange);
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1;
}

.join-table-page__stat span {
	color: var(--join-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.join-table-page__container {
		width: min(calc(100% - 5rem), 1280px);
	}

	.join-table-page__alchemy-grid {
		grid-template-columns: 1fr;
	}

	.join-table-page__alchemy-media {
		min-height: 0;
	}

	.join-table-page__alchemy-media img {
		height: min(62vw, 560px);
	}

	.join-table-page__stat-card {
		right: 1.5rem;
	}
}

@media (max-width: 767px) {
	.join-table-page__container {
		width: min(calc(100% - 2.5rem), 1280px);
	}

	.join-table-page__hero {
		align-items: end;
		min-height: calc(100svh - var(--header-height));
	}

	.join-table-page__hero-image {
		object-position: 54% center;
	}

	.join-table-page__hero-overlay {
		background:
			linear-gradient(180deg, rgba(0, 31, 31, 0.08) 0%, rgba(0, 31, 31, 0.48) 42%, rgba(0, 31, 31, 0.9) 100%),
			linear-gradient(90deg, rgba(0, 51, 51, 0.42), rgba(0, 51, 51, 0.1));
	}

	.join-table-page__hero-content {
		display: grid;
		justify-items: center;
		max-width: none;
		padding-block: 4rem;
		text-align: center;
	}

	.join-table-page__hero-content h1 {
		font-size: clamp(2.75rem, 13vw, 4.25rem);
		line-height: 0.98;
	}

	.join-table-page__hero-content > p:not(.join-table-page__eyebrow) {
		font-size: 0.94rem;
		line-height: 1.65;
	}

	.join-table-page__button,
	.join-table-page__submit {
		width: 100%;
		max-width: 330px;
	}

	.join-table-page__alchemy {
		padding-block: 4rem;
	}

	.join-table-page__alchemy-copy h2 {
		font-size: clamp(2.2rem, 11vw, 3.3rem);
		line-height: 1.02;
	}

	.join-table-page__alchemy-intro {
		display: block;
	}

	.join-table-page__features {
		gap: 1rem;
		margin-top: 2rem;
	}

	.join-table-page__feature {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.2rem;
		border: 1px solid rgba(0, 51, 51, 0.09);
		border-radius: 8px;
		background: var(--join-surface);
		box-shadow: 0 14px 30px rgba(0, 51, 51, 0.05);
	}

	.join-table-page__feature:last-child {
		border-bottom: 1px solid rgba(0, 51, 51, 0.09);
	}

	.join-table-page__feature-number {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.35rem;
		height: 2.35rem;
		border-radius: 999px;
		background: rgba(164, 62, 0, 0.1);
		font-family: var(--font-body);
		font-size: 0.76rem;
		font-style: normal;
		font-weight: 800;
	}

	.join-table-page__feature h3 {
		font-size: 1.28rem;
	}

	.join-table-page__feature p:not(.join-table-page__feature-kicker) {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.join-table-page__alchemy-media img {
		height: auto;
		aspect-ratio: 4 / 5;
	}

	.join-table-page__stat-card {
		position: relative;
		right: auto;
		bottom: auto;
		width: auto;
		margin: -3.5rem 1rem 0;
	}

	.join-table-page__request {
		padding-block: 4rem;
	}

	.join-table-page__request-header h2 {
		font-size: clamp(2.2rem, 11vw, 3.4rem);
	}

	.join-table-page__request-header p:not(.join-table-page__eyebrow) {
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.join-table-page__form {
		padding: 1.15rem;
	}

	.join-table-page__submit {
		justify-self: stretch;
		max-width: none;
	}

	.join-table-page__final {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
	}

	.join-table-page__watermark {
		top: 1rem;
		font-size: 3rem;
		opacity: 0.8;
	}

	.join-table-page__final h2 {
		margin-bottom: 2rem;
		font-size: clamp(2rem, 10vw, 3.2rem);
	}

	.join-table-page__stats {
		grid-template-columns: 1fr;
	}

	.join-table-page__stat {
		border-right: 0;
		border-bottom: 1px solid rgba(0, 51, 51, 0.16);
	}

	.join-table-page__stat:last-child {
		border-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.join-table-page *,
	.join-table-page *::before,
	.join-table-page *::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
		animation-duration: 0.01ms;
	}
}

body:has(.the-club-page) {
	--header-height: 82px;
}

body:has(.the-club-page) .site-header,
body:has(.the-club-page) .site-header__frame,
body:has(.the-club-page) .site-header__shell,
.the-club-page,
.the-club-page__hero {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body:has(.the-club-page) .site-header,
body:has(.the-club-page) .site-header__frame,
body:has(.the-club-page) .site-header__shell {
	min-height: 82px !important;
}

@media (max-width: 767px) {
	body:has(.the-club-page) {
		--header-height: 72px;
	}

	body:has(.the-club-page) .site-header,
	body:has(.the-club-page) .site-header__frame,
	body:has(.the-club-page) .site-header__shell {
		min-height: 72px !important;
	}

	.the-club-page__hero {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}

/* ================================
   Journal Page
================================ */
.journal-page {
	--journal-cream: #fef9f0;
	--journal-primary: #003333;
	--journal-dark: #0d403c;
	--journal-orange: #a43e00;
	--journal-sand: #f0ead6;
	--journal-surface: #f2ede4;
	--journal-muted: #3f4848;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden;
	background: var(--journal-cream);
	color: var(--journal-primary);
}

.journal-page__container {
	width: min(calc(100% - 10rem), 1280px);
	margin-inline: auto;
}

.journal-page__hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: clamp(650px, 78vh, 720px);
	margin: 0;
	overflow: hidden;
	background: var(--journal-primary);
	color: #ffffff;
}

.journal-page__hero-image,
.journal-page__hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.journal-page__hero-image {
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
}

.journal-page__hero-overlay {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(5, 5, 5, 0.24) 38%, rgba(5, 5, 5, 0.82) 100%),
		linear-gradient(90deg, rgba(0, 51, 51, 0.42) 0%, rgba(0, 51, 51, 0.1) 68%);
}

.journal-page__hero-content {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	padding-block: 0 4.6rem;
	text-align: left;
}

.journal-page__tag {
	display: inline-flex;
	margin: 0 0 1.1rem;
	padding: 0.42rem 0.78rem;
	border-radius: 4px;
	background: var(--journal-orange);
	color: #ffffff;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
}

.journal-page__hero-content h1 {
	max-width: 760px;
	margin: 0 0 1.35rem;
	color: #ffffff;
	font-size: clamp(3.3rem, 5.8vw, 5.6rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.02;
}

.journal-page__hero-content > p:not(.journal-page__tag) {
	max-width: 610px;
	margin: 0 0 2rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.08rem;
	line-height: 1.75;
}

.journal-page__read-link,
.journal-page__story-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: inherit;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	transition: color 180ms ease, gap 180ms ease;
}

.journal-page__read-link:hover,
.journal-page__read-link:focus,
.journal-page__story-link:hover,
.journal-page__story-link:focus {
	gap: 0.85rem;
	color: var(--journal-orange);
}

.journal-page__stories {
	padding-block: 5rem 5.5rem;
	background: var(--journal-cream);
}

.journal-page__stories-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
}

.journal-page__stories-header h2 {
	margin: 0 0 0.75rem;
	color: var(--journal-primary);
	font-size: clamp(2.3rem, 4vw, 3.3rem);
	line-height: 1.05;
}

.journal-page__stories-header p {
	max-width: 590px;
	margin: 0;
	color: var(--journal-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.journal-page__filters {
	display: flex;
	gap: 1.55rem;
	border-bottom: 1px solid rgba(63, 72, 72, 0.18);
	white-space: nowrap;
}

.journal-page__filter {
	display: inline-flex;
	padding-bottom: 0.72rem;
	border-bottom: 2px solid transparent;
	color: var(--journal-muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: border-color 180ms ease, color 180ms ease;
}

.journal-page__filter:hover,
.journal-page__filter:focus,
.journal-page__filter--active {
	border-color: var(--journal-orange);
	color: var(--journal-orange);
}

.journal-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3.1rem 2rem;
}

.journal-page__card {
	min-width: 0;
}

.journal-page__card-media {
	display: block;
	aspect-ratio: 4 / 5;
	margin-bottom: 1.1rem;
	overflow: hidden;
	border-radius: 8px;
	background: var(--journal-surface);
}

.journal-page__card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.journal-page__card:hover .journal-page__card-media img,
.journal-page__card:focus-within .journal-page__card-media img {
	transform: scale(1.05);
}

.journal-page__card-body {
	display: grid;
	gap: 0.55rem;
}

.journal-page__category {
	margin: 0;
	color: var(--journal-orange);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.journal-page__card h3 {
	margin: 0;
	color: var(--journal-primary);
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	line-height: 1.14;
}

.journal-page__card h3 a {
	transition: color 180ms ease;
}

.journal-page__card h3 a:hover,
.journal-page__card h3 a:focus {
	color: var(--journal-orange);
}

.journal-page__card-body > p:not(.journal-page__category) {
	margin: 0 0 0.35rem;
	color: var(--journal-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.journal-page__story-link {
	justify-self: start;
	padding-bottom: 0.34rem;
	border-bottom: 1px solid rgba(63, 72, 72, 0.34);
	color: var(--journal-primary);
	font-size: 0.64rem;
}

.journal-page__load-more {
	display: flex;
	justify-content: center;
	margin-top: 3.2rem;
}

.journal-page__load-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.9rem 2.7rem;
	border: 1px solid rgba(63, 72, 72, 0.34);
	border-radius: 4px;
	color: var(--journal-primary);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.journal-page__load-button:hover,
.journal-page__load-button:focus {
	border-color: var(--journal-orange);
	color: var(--journal-orange);
	transform: translateY(-2px);
}

.journal-page__digest {
	padding-block: 4rem;
	background: var(--journal-primary);
	color: #ffffff;
}

.journal-page__digest-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
	gap: 3rem;
	align-items: center;
}

.journal-page__digest-copy h2 {
	margin: 0 0 0.8rem;
	color: #ffffff;
	font-size: clamp(2.1rem, 3vw, 3rem);
	line-height: 1.1;
}

.journal-page__digest-copy p {
	max-width: 600px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
	line-height: 1.7;
}

.journal-page__digest-form {
	display: flex;
	gap: 1rem;
	align-items: end;
}

.journal-page__digest-form input {
	width: 100%;
	min-height: 48px;
	border: 0;
	border-bottom: 1px solid rgba(127, 186, 185, 0.65);
	border-radius: 0;
	background: transparent;
	color: #ffffff;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	outline: 0;
	text-transform: uppercase;
	transition: border-color 180ms ease;
}

.journal-page__digest-form input::placeholder {
	color: rgba(255, 255, 255, 0.46);
}

.journal-page__digest-form input:focus {
	border-color: var(--journal-orange);
}

.journal-page__digest-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.9rem 2rem;
	border: 1px solid var(--journal-orange);
	border-radius: 4px;
	background: var(--journal-orange);
	color: #ffffff;
	font: inherit;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.journal-page__digest-form button:hover,
.journal-page__digest-form button:focus {
	background: #873400;
	border-color: #873400;
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.journal-page__container {
		width: min(calc(100% - 5rem), 1280px);
	}

	.journal-page__stories-header {
		display: grid;
	}

	.journal-page__filters {
		overflow-x: auto;
		padding-bottom: 0;
	}

	.journal-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.journal-page__digest-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.journal-page__container {
		width: min(calc(100% - 2.5rem), 1280px);
	}

	.journal-page__hero {
		min-height: calc(100svh - var(--header-height));
		align-items: end;
	}

	.journal-page__hero-image {
		object-position: center;
	}

	.journal-page__hero-content {
		padding-block: 0 3rem;
	}

	.journal-page__tag {
		margin-bottom: 0.9rem;
	}

	.journal-page__hero-content h1 {
		max-width: 360px;
		margin-bottom: 1rem;
		font-size: clamp(2.55rem, 12vw, 3.55rem);
		line-height: 1;
	}

	.journal-page__hero-content > p:not(.journal-page__tag) {
		max-width: 360px;
		margin-bottom: 1.4rem;
		font-size: 0.94rem;
		line-height: 1.6;
	}

	.journal-page__stories {
		padding-block: 3.5rem 4rem;
	}

	.journal-page__stories-header {
		gap: 1.5rem;
		margin-bottom: 2.2rem;
	}

	.journal-page__stories-header h2 {
		font-size: clamp(2.2rem, 10vw, 3rem);
	}

	.journal-page__filters {
		display: none;
	}

	.journal-page__grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}

	.journal-page__card-media {
		aspect-ratio: 1 / 1;
		border-radius: 8px;
	}

	.journal-page__card-body > p:not(.journal-page__category),
	.journal-page__story-link {
		display: none;
	}

	.journal-page__category {
		color: var(--journal-muted);
	}

	.journal-page__card h3 {
		font-size: 1.55rem;
	}

	.journal-page__load-button {
		width: 100%;
	}

	.journal-page__digest {
		margin: 0 1.25rem 3.5rem;
		padding: 2rem;
		border-radius: 8px;
	}

	.journal-page__digest-inner {
		width: 100%;
		gap: 1.6rem;
	}

	.journal-page__digest-copy h2 {
		font-size: 2rem;
	}

	.journal-page__digest-copy p {
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.journal-page__digest-form {
		display: grid;
		gap: 1rem;
	}

	.journal-page__digest-form input {
		padding-inline: 0.9rem;
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 4px;
		background: rgba(255, 255, 255, 0.08);
	}

	.journal-page__digest-form button {
		width: 100%;
	}
}

/* ================================
   Privacy Policy Page
================================ */
.privacy-page {
	--privacy-cream: #fef9f0;
	--privacy-primary: #003333;
	--privacy-dark: #0d403c;
	--privacy-orange: #a43e00;
	--privacy-sand: #f0ead6;
	--privacy-surface: #f2ede4;
	--privacy-muted: #3f4848;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden;
	background: var(--privacy-cream);
	color: #1d1c16;
}

.privacy-page__container {
	width: min(calc(100% - 10rem), 1280px);
	margin-inline: auto;
}

.privacy-page__hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 9vw, 7rem);
	background: var(--privacy-cream);
	text-align: center;
}

.privacy-page__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.privacy-page__ambient::before,
.privacy-page__ambient::after {
	position: absolute;
	width: 26rem;
	height: 26rem;
	border-radius: 999px;
	content: "";
	filter: blur(90px);
	opacity: 0.38;
}

.privacy-page__ambient::before {
	top: -9rem;
	right: -7rem;
	background: rgba(150, 209, 208, 0.36);
}

.privacy-page__ambient::after {
	bottom: -10rem;
	left: -6rem;
	background: rgba(255, 181, 150, 0.42);
}

.privacy-page__hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
}

.privacy-page__eyebrow {
	display: inline-flex;
	margin: 0 0 1.4rem;
	padding: 0.48rem 0.95rem;
	border-radius: 999px;
	background: var(--privacy-sand);
	color: var(--privacy-primary);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
}

.privacy-page__hero h1 {
	margin: 0 0 1.6rem;
	color: var(--privacy-primary);
	font-size: clamp(3.4rem, 7vw, 6.2rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.98;
}

.privacy-page__hero-copy {
	max-width: 760px;
	margin: 0;
	color: var(--privacy-muted);
	font-size: clamp(1.05rem, 1.7vw, 1.25rem);
	line-height: 1.75;
}

.privacy-page__hero-copy--mobile,
.privacy-page__mobile-title,
.privacy-page__concierge-copy--mobile,
.privacy-page__concierge-button {
	display: none;
}

.privacy-page__content {
	padding-block: clamp(4.5rem, 8vw, 6rem);
	background: #ffffff;
}

.privacy-page__content-inner {
	width: min(calc(100% - 2rem), 800px);
	margin-inline: auto;
}

.privacy-page__section {
	padding-bottom: 4rem;
}

.privacy-page__section:not(:first-child) {
	padding-top: 0.5rem;
}

.privacy-page__section:last-child {
	padding-bottom: 0;
}

.privacy-page__section-label {
	display: none;
	margin: 0 0 1rem;
	color: rgba(63, 72, 72, 0.7);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.privacy-page__section h2 {
	margin: 0 0 1.35rem;
	padding-left: 1.4rem;
	border-left: 4px solid var(--privacy-orange);
	color: var(--privacy-primary);
	font-size: clamp(2rem, 3vw, 2.65rem);
	font-weight: 600;
	line-height: 1.12;
}

.privacy-page__section > p {
	margin: 0 0 1.5rem;
	color: var(--privacy-muted);
	font-size: 1.04rem;
	line-height: 1.8;
}

.privacy-page__list {
	display: grid;
	gap: 1rem;
	margin-top: 1.6rem;
}

.privacy-page__list-item {
	display: grid;
	grid-template-columns: 2.8rem 1fr;
	gap: 1rem;
	align-items: start;
}

.privacy-page__list-item > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	background: rgba(164, 62, 0, 0.09);
	color: var(--privacy-orange);
	font-size: 0.68rem;
	font-weight: 800;
}

.privacy-page__list-item h3 {
	margin: 0 0 0.25rem;
	color: var(--privacy-primary);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
}

.privacy-page__list-item p {
	margin: 0;
	color: var(--privacy-muted);
	line-height: 1.7;
}

.privacy-page__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.3rem;
	margin-top: 2rem;
}

.privacy-page__card {
	padding: 1.7rem;
	border: 1px solid rgba(191, 200, 200, 0.48);
	border-radius: 8px;
	background: var(--privacy-surface);
}

.privacy-page__card h3 {
	margin: 0 0 0.75rem;
	color: var(--privacy-primary);
	font-size: 1.35rem;
	line-height: 1.2;
}

.privacy-page__card p {
	margin: 0;
	color: var(--privacy-muted);
	font-size: 0.92rem;
	line-height: 1.7;
}

.privacy-page__protocol {
	position: relative;
	overflow: hidden;
	margin-top: 1.5rem;
	padding: clamp(1.8rem, 4vw, 2.7rem);
	border-radius: 8px;
	background:
		radial-gradient(circle at bottom right, rgba(127, 186, 185, 0.16), transparent 18rem),
		var(--privacy-dark);
	color: #ffffff;
	box-shadow: 0 24px 55px rgba(0, 51, 51, 0.18);
}

.privacy-page__protocol h3 {
	margin: 0 0 1rem;
	color: #ffffff;
	font-size: clamp(1.65rem, 3vw, 2.25rem);
	line-height: 1.12;
}

.privacy-page__protocol p {
	margin: 0 0 1.6rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	line-height: 1.8;
}

.privacy-page__protocol-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.privacy-page__protocol-labels span {
	display: inline-flex;
	padding: 0.55rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.privacy-page__concierge {
	padding-block: clamp(4.5rem, 8vw, 6.5rem);
	background: var(--privacy-cream);
}

.privacy-page__concierge-card {
	width: min(calc(100% - 2rem), 860px);
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid rgba(240, 234, 214, 0.95);
	border-radius: 8px;
	background: #ffffff;
	text-align: center;
	box-shadow: 0 22px 50px rgba(0, 51, 51, 0.08);
}

.privacy-page__concierge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.45rem;
	border-radius: 999px;
	background: rgba(164, 62, 0, 0.08);
	color: var(--privacy-orange);
	font-family: var(--font-heading);
	font-size: 1.55rem;
	font-weight: 700;
}

.privacy-page__concierge h2 {
	margin: 0 0 1.1rem;
	color: var(--privacy-primary);
	font-size: clamp(2.05rem, 4vw, 3.2rem);
	line-height: 1.08;
}

.privacy-page__concierge-copy {
	max-width: 620px;
	margin: 0 auto 1.7rem;
	color: var(--privacy-muted);
	font-size: 1.04rem;
	line-height: 1.75;
}

.privacy-page__concierge-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.6rem;
	justify-content: center;
}

.privacy-page__concierge-links a,
.privacy-page__concierge-button {
	color: var(--privacy-primary);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom: 2px solid var(--privacy-orange);
	transition: color 180ms ease;
}

.privacy-page__concierge-links a:hover,
.privacy-page__concierge-links a:focus,
.privacy-page__concierge-button:hover,
.privacy-page__concierge-button:focus {
	color: var(--privacy-orange);
}

.privacy-page__visual {
	position: relative;
	height: 360px;
	overflow: hidden;
	background: var(--privacy-surface);
}

.privacy-page__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.14);
	opacity: 0.22;
}

.privacy-page__visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--privacy-cream), rgba(254, 249, 240, 0.28), var(--privacy-surface));
	content: "";
}

@media (max-width: 1100px) {
	.privacy-page__container {
		width: min(calc(100% - 5rem), 1280px);
	}
}

@media (max-width: 767px) {
	.privacy-page__container,
	.privacy-page__content-inner,
	.privacy-page__concierge-card {
		width: min(calc(100% - 2.5rem), 1280px);
	}

	.privacy-page__hero {
		padding-block: 3.5rem 3rem;
		text-align: left;
	}

	.privacy-page__hero-inner {
		justify-items: start;
	}

	.privacy-page__eyebrow {
		margin-bottom: 1rem;
		padding: 0;
		border-radius: 0;
		background: transparent;
		color: var(--privacy-orange);
	}

	.privacy-page__hero h1 {
		margin-bottom: 1rem;
		font-size: clamp(2.55rem, 12vw, 3.4rem);
	}

	.privacy-page__hero-copy {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.privacy-page__hero-copy--desktop,
	.privacy-page__desktop-title,
	.privacy-page__concierge-copy--desktop,
	.privacy-page__concierge-links {
		display: none;
	}

	.privacy-page__hero-copy--mobile,
	.privacy-page__mobile-title,
	.privacy-page__concierge-copy--mobile,
	.privacy-page__concierge-button {
		display: inline-flex;
	}

	.privacy-page__hero-copy--mobile,
	.privacy-page__concierge-copy--mobile {
		display: block;
	}

	.privacy-page__content {
		padding-block: 3.25rem;
	}

	.privacy-page__section {
		padding-bottom: 3.25rem;
	}

	.privacy-page__section-label {
		display: block;
	}

	.privacy-page__section h2 {
		padding-left: 0;
		border-left: 0;
		font-size: 1.65rem;
	}

	.privacy-page__section > p {
		font-size: 0.96rem;
		line-height: 1.72;
	}

	.privacy-page__list-item {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 1rem;
		border-radius: 8px;
		background: var(--privacy-surface);
	}

	.privacy-page__cards {
		grid-template-columns: 1fr;
	}

	.privacy-page__protocol {
		padding: 1.6rem;
	}

	.privacy-page__protocol-labels {
		display: grid;
	}

	.privacy-page__concierge {
		padding-block: 3.5rem;
	}

	.privacy-page__concierge-card {
		padding: 1.6rem;
		text-align: left;
	}

	.privacy-page__concierge-icon {
		width: 3rem;
		height: 3rem;
		margin-bottom: 1rem;
		border-radius: 8px;
	}

	.privacy-page__concierge h2 {
		font-size: 1.7rem;
	}

	.privacy-page__concierge-button {
		display: inline-flex;
		justify-content: center;
		width: 100%;
		margin-top: 0.4rem;
		padding: 0.9rem 1rem;
		border: 1px solid var(--privacy-orange);
		border-radius: 4px;
		color: var(--privacy-orange);
		text-align: center;
	}

	.privacy-page__visual {
		display: none;
	}
}

/* ================================
   Contact Page
================================ */
.contact-page {
	--contact-cream: #fef9f0;
	--contact-primary: #003333;
	--contact-dark: #0d403c;
	--contact-orange: #a43e00;
	--contact-sand: #f0ead6;
	--contact-surface: #f2ede4;
	--contact-muted: #3f4848;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden;
	background: var(--contact-cream);
	color: #1d1c16;
}

.contact-page__container {
	width: min(calc(100% - 10rem), 1280px);
	margin-inline: auto;
}

.contact-page__hero {
	padding-block: clamp(5rem, 10vw, 8rem) clamp(4rem, 7vw, 6rem);
	background: var(--contact-cream);
}

.contact-page__hero h1 {
	max-width: 860px;
	margin: 0 0 1.4rem;
	color: var(--contact-primary);
	font-size: clamp(3.4rem, 7vw, 6.4rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
}

.contact-page__mobile-title,
.contact-page__hero-copy--mobile,
.contact-page__mobile-correspondence,
.contact-page__map {
	display: none;
}

.contact-page__hero-copy {
	max-width: 700px;
	margin: 0;
	color: var(--contact-muted);
	font-size: clamp(1.05rem, 1.6vw, 1.22rem);
	line-height: 1.75;
}

.contact-page__split {
	padding-bottom: clamp(5rem, 9vw, 8rem);
	background: var(--contact-cream);
}

.contact-page__split-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
	gap: clamp(3.5rem, 7vw, 6rem);
	align-items: start;
}

.contact-page__form-card {
	padding: clamp(2rem, 4vw, 4rem);
	border: 1px solid rgba(191, 200, 200, 0.36);
	border-radius: 8px;
	background: var(--contact-surface);
}

.contact-page__form-card h2 {
	margin: 0 0 2rem;
	color: var(--contact-primary);
	font-size: clamp(2rem, 3vw, 2.7rem);
	line-height: 1.1;
}

.contact-page__form {
	display: grid;
	gap: 1.3rem;
}

.contact-page__form label {
	display: grid;
	gap: 0.45rem;
	margin: 0;
}

.contact-page__form label span {
	color: var(--contact-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-page__form input,
.contact-page__form select,
.contact-page__form textarea {
	width: 100%;
	border: 1px solid rgba(191, 200, 200, 0.75);
	border-radius: 4px;
	background: var(--contact-cream);
	color: #1d1c16;
	font: inherit;
	font-size: 1rem;
	outline: 0;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-page__form input,
.contact-page__form select {
	min-height: 54px;
	padding: 0 1rem;
}

.contact-page__form textarea {
	min-height: 150px;
	padding: 1rem;
	resize: vertical;
}

.contact-page__form input:focus,
.contact-page__form select:focus,
.contact-page__form textarea:focus {
	border-color: var(--contact-primary);
	box-shadow: 0 0 0 3px rgba(0, 51, 51, 0.1);
}

.contact-page__form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border: 1px solid var(--contact-orange);
	border-radius: 4px;
	background: var(--contact-orange);
	color: #ffffff;
	font: inherit;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-page__form button:hover,
.contact-page__form button:focus {
	background: #873400;
	border-color: #873400;
	transform: translateY(-2px);
}

.contact-page__form button:disabled {
	cursor: default;
	opacity: 0.78;
	transform: none;
}

.contact-page__form-status {
	min-height: 1.4em;
	margin: 0;
	color: var(--contact-primary);
	font-size: 0.92rem;
	font-weight: 700;
}

.contact-page__info {
	display: grid;
	gap: 3rem;
	min-width: 0;
	padding-block: 2rem;
}

.contact-page__info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3.5rem 4.5rem;
	min-width: 0;
}

.contact-page__info-item {
	min-width: 0;
}

.contact-page__info-item:first-child {
	grid-column: 1 / -1;
}

.contact-page__info-item h3,
.contact-page__base h3 {
	margin: 0 0 0.75rem;
	color: var(--contact-orange);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.contact-page__info-item a {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 0.45rem;
	color: var(--contact-primary);
	font-family: var(--font-heading);
	font-size: clamp(1.1rem, 1.55vw, 1.38rem);
	line-height: 1.25;
	overflow-wrap: anywhere;
	transition: color 180ms ease;
	word-break: break-word;
}

.contact-page__info-item:first-child a {
	font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.contact-page__info-item a:hover,
.contact-page__info-item a:focus {
	color: var(--contact-orange);
}

.contact-page__info-item p,
.contact-page__base p {
	margin: 0;
	color: var(--contact-muted);
	font-size: 0.94rem;
	line-height: 1.65;
}

.contact-page__base {
	padding-top: 2rem;
	border-top: 1px solid rgba(63, 72, 72, 0.22);
}

.contact-page__faq {
	padding-block: clamp(4.5rem, 8vw, 6rem);
	background: var(--contact-cream);
	border-top: 1px solid rgba(191, 200, 200, 0.5);
}

.contact-page__faq-inner {
	width: min(calc(100% - 2rem), 900px);
	margin-inline: auto;
}

.contact-page__faq-header {
	margin-bottom: 3rem;
	text-align: center;
}

.contact-page__faq-header h2 {
	margin: 0 0 1rem;
	color: var(--contact-primary);
	font-size: clamp(2.4rem, 5vw, 4.1rem);
	line-height: 1.05;
}

.contact-page__faq-header p {
	margin: 0;
	color: var(--contact-muted);
	font-size: 1.05rem;
}

.contact-page__accordion {
	display: grid;
	gap: 1rem;
}

.contact-page__faq-item {
	border: 1px solid rgba(191, 200, 200, 0.42);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.4);
	transition: background 180ms ease, border-color 180ms ease;
}

.contact-page__faq-item[open] {
	background: var(--contact-surface);
	border-color: rgba(0, 51, 51, 0.18);
}

.contact-page__faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem 1.5rem;
	cursor: pointer;
	list-style: none;
}

.contact-page__faq-item summary::-webkit-details-marker {
	display: none;
}

.contact-page__faq-title {
	color: var(--contact-primary);
	font-family: var(--font-heading);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 600;
	line-height: 1.2;
}

.contact-page__faq-title--mobile {
	display: none;
}

.contact-page__faq-icon {
	flex: 0 0 auto;
	color: var(--contact-orange);
	font-size: 1.3rem;
	line-height: 1;
	transition: transform 180ms ease;
}

.contact-page__faq-item[open] .contact-page__faq-icon {
	transform: rotate(45deg);
}

.contact-page__faq-content {
	padding: 0 1.5rem 1.45rem;
}

.contact-page__faq-content p {
	max-width: 760px;
	margin: 0;
	color: var(--contact-muted);
	line-height: 1.75;
}

.contact-page__cta {
	padding-block: 1rem clamp(5rem, 8vw, 7rem);
	background: var(--contact-cream);
}

.contact-page__cta-card {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 7vw, 5.5rem) 2rem;
	border-radius: 12px;
	background:
		radial-gradient(circle at center, rgba(164, 62, 0, 0.18), transparent 32rem),
		var(--contact-primary);
	color: #ffffff;
	text-align: center;
}

.contact-page__cta-card h2 {
	margin: 0 0 1rem;
	color: #ffffff;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.08;
}

.contact-page__cta-card p {
	max-width: 620px;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1rem;
	line-height: 1.75;
}

.contact-page__cta-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.95rem 2rem;
	border-radius: 4px;
	background: var(--contact-orange);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 180ms ease, transform 180ms ease;
}

.contact-page__cta-card a:hover,
.contact-page__cta-card a:focus {
	background: #873400;
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.contact-page__container {
		width: min(calc(100% - 5rem), 1280px);
	}

	.contact-page__split-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.contact-page__container,
	.contact-page__faq-inner {
		width: min(calc(100% - 2.5rem), 1280px);
	}

	.contact-page__hero {
		padding-block: 3.5rem 2.5rem;
	}

	.contact-page__hero h1 {
		font-size: clamp(2.55rem, 12vw, 3.35rem);
	}

	.contact-page__desktop-title,
	.contact-page__hero-copy--desktop,
	.contact-page__info-grid,
	.contact-page__base,
	.contact-page__faq-title--desktop {
		display: none;
	}

	.contact-page__mobile-title,
	.contact-page__hero-copy--mobile,
	.contact-page__mobile-correspondence,
	.contact-page__map,
	.contact-page__faq-title--mobile {
		display: block;
	}

	.contact-page__hero-copy {
		font-size: 0.96rem;
		line-height: 1.7;
	}

	.contact-page__split {
		padding-bottom: 2.5rem;
	}

	.contact-page__split-grid {
		gap: 2.5rem;
	}

	.contact-page__form-card {
		padding: 1.3rem;
		border-radius: 8px;
	}

	.contact-page__form-card h2 {
		display: none;
	}

	.contact-page__form input,
	.contact-page__form select,
	.contact-page__form textarea {
		background: var(--contact-surface);
	}

	.contact-page__form button {
		width: 100%;
		border-radius: 8px;
	}

	.contact-page__info {
		padding-block: 0;
	}

	.contact-page__mobile-correspondence h2 {
		margin: 0 0 1rem;
		color: var(--contact-primary);
		font-size: 1.65rem;
	}

	.contact-page__mobile-correspondence a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding-block: 1rem;
		border-bottom: 1px solid rgba(191, 200, 200, 0.5);
		color: var(--contact-muted);
		font-size: 1rem;
		font-weight: 700;
		line-height: 1.25;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.contact-page__mobile-correspondence a span {
		flex: 0 0 auto;
	}

	.contact-page__map {
		padding-bottom: 3rem;
		background: var(--contact-cream);
	}

	.contact-page__map-card {
		position: relative;
		height: 260px;
		margin-bottom: 1.3rem;
		overflow: hidden;
		border-radius: 8px;
	}

	.contact-page__map-card img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.contact-page__map-card::after {
		position: absolute;
		inset: 0;
		background: rgba(0, 51, 51, 0.1);
		content: "";
	}

	.contact-page__map-label {
		position: absolute;
		left: 1rem;
		bottom: 1rem;
		z-index: 1;
		padding: 0.55rem 0.8rem;
		border-radius: 8px;
		background: var(--contact-cream);
		color: var(--contact-primary);
		font-size: 0.68rem;
		font-weight: 800;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}

	.contact-page__map-address h2 {
		margin: 0 0 0.45rem;
		color: var(--contact-primary);
		font-size: 1.55rem;
	}

	.contact-page__map-address p {
		margin: 0;
		color: var(--contact-muted);
		line-height: 1.65;
	}

	.contact-page__faq {
		padding-block: 3.25rem;
	}

	.contact-page__faq-header {
		margin-bottom: 1.5rem;
		text-align: left;
	}

	.contact-page__faq-header h2 {
		font-size: 1.8rem;
	}

	.contact-page__faq-header p {
		display: none;
	}

	.contact-page__faq-item {
		border: 0;
		border-radius: 8px;
		background: var(--contact-surface);
	}

	.contact-page__faq-item summary {
		padding: 1.1rem 1.2rem;
	}

	.contact-page__faq-title {
		font-family: var(--font-body);
		font-size: 0.82rem;
		font-weight: 800;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.contact-page__faq-content {
		padding: 0 1.2rem 1.2rem;
	}

	.contact-page__faq-content p {
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.contact-page__cta {
		padding-block: 0 3.5rem;
	}

	.contact-page__cta-card {
		padding: 2rem 1.4rem;
		border-radius: 8px;
	}

	.contact-page__cta-card h2 {
		font-size: 1.8rem;
	}

	.contact-page__cta-card p {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.contact-page__cta-card a {
		width: 100%;
		border-radius: 8px;
	}
}

/* ================================
   Terms of Service Page
================================ */
.terms-page {
	--terms-cream: #fef9f0;
	--terms-primary: #003333;
	--terms-dark: #0d403c;
	--terms-orange: #a43e00;
	--terms-sand: #f0ead6;
	--terms-surface: #f2ede4;
	--terms-muted: #3f4848;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden;
	background: var(--terms-cream);
	color: #1d1c16;
}

.terms-page__container {
	width: min(calc(100% - 10rem), 1280px);
	margin-inline: auto;
}

.terms-page__hero {
	padding-block: clamp(5.5rem, 10vw, 8rem) clamp(4rem, 8vw, 6.5rem);
	background: var(--terms-cream);
	text-align: center;
}

.terms-page__hero h1 {
	max-width: 860px;
	margin: 0 auto 1.5rem;
	color: var(--terms-primary);
	font-size: clamp(3.4rem, 6.6vw, 5.9rem);
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.02;
}

.terms-page__divider {
	width: 6rem;
	height: 1px;
	margin: 0 auto 2.3rem;
	background: rgba(164, 62, 0, 0.38);
}

.terms-page__subtitle {
	margin: 0 0 1.8rem;
	color: rgba(0, 51, 51, 0.78);
	font-family: var(--font-heading);
	font-size: clamp(1.55rem, 3vw, 2.3rem);
	font-style: italic;
	line-height: 1.15;
}

.terms-page__intro {
	max-width: 740px;
	margin: 0 auto;
	color: var(--terms-muted);
	font-size: clamp(1.06rem, 1.6vw, 1.25rem);
	line-height: 1.85;
}

.terms-page__intro--mobile {
	display: none;
}

.terms-page__content {
	padding-block: 1rem clamp(5rem, 9vw, 8rem);
	background: var(--terms-cream);
}

.terms-page__content-inner {
	display: grid;
	gap: clamp(5rem, 9vw, 7rem);
	width: min(calc(100% - 2rem), 800px);
	margin-inline: auto;
}

.terms-page__section {
	position: relative;
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	gap: 1.5rem;
}

.terms-page__number {
	color: rgba(164, 62, 0, 0.32);
	font-family: var(--font-heading);
	font-size: 2.45rem;
	font-style: italic;
	line-height: 1;
}

.terms-page__section-copy h2 {
	margin: 0 0 1.4rem;
	color: var(--terms-primary);
	font-size: clamp(1.8rem, 3vw, 2.35rem);
	font-weight: 600;
	line-height: 1.15;
}

.terms-page__section-copy p {
	margin: 0 0 1.25rem;
	color: var(--terms-muted);
	font-size: 1.06rem;
	line-height: 1.85;
}

.terms-page__section-copy p:last-child {
	margin-bottom: 0;
}

.terms-page__callout {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
	padding: 1.8rem;
	border-left: 2px solid var(--terms-orange);
	background: var(--terms-surface);
}

.terms-page__callout p {
	position: relative;
	margin: 0;
	padding-left: 1.2rem;
	font-style: italic;
}

.terms-page__callout p::before {
	position: absolute;
	top: 0.82em;
	left: 0;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 999px;
	background: var(--terms-orange);
	content: "";
}

.terms-page__image {
	display: none;
}

.terms-page__concierge {
	padding-block: 0 clamp(5rem, 9vw, 8rem);
	background: var(--terms-cream);
}

.terms-page__concierge-card {
	width: min(calc(100% - 2rem), 800px);
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid rgba(191, 200, 200, 0.5);
	border-radius: 4px;
	background: var(--terms-surface);
	text-align: center;
	box-shadow: 0 22px 50px rgba(0, 51, 51, 0.06);
}

.terms-page__concierge-card h2 {
	margin: 0 0 1rem;
	color: var(--terms-primary);
	font-size: clamp(2rem, 4vw, 3rem);
	font-style: italic;
	line-height: 1.1;
}

.terms-page__concierge-card p {
	max-width: 560px;
	margin: 0 auto 2rem;
	color: var(--terms-muted);
	line-height: 1.8;
}

.terms-page__concierge-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.95rem 2rem;
	border-radius: 4px;
	background: var(--terms-primary);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: background 180ms ease, transform 180ms ease;
}

.terms-page__concierge-card a:hover,
.terms-page__concierge-card a:focus {
	background: var(--terms-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.terms-page__container {
		width: min(calc(100% - 5rem), 1280px);
	}
}

@media (max-width: 767px) {
	.terms-page__container,
	.terms-page__content-inner,
	.terms-page__concierge-card {
		width: min(calc(100% - 2.5rem), 1280px);
	}

	.terms-page__hero {
		padding-block: 3.5rem 3rem;
	}

	.terms-page__hero h1 {
		margin-bottom: 0.9rem;
		font-size: clamp(2.5rem, 11vw, 3.35rem);
		font-style: normal;
	}

	.terms-page__divider {
		width: 3rem;
		margin-bottom: 1.4rem;
	}

	.terms-page__subtitle {
		margin-bottom: 1.5rem;
		font-size: 1.25rem;
	}

	.terms-page__intro {
		font-size: 1rem;
		font-style: italic;
		line-height: 1.75;
	}

	.terms-page__intro--desktop {
		display: none;
	}

	.terms-page__intro--mobile {
		display: block;
	}

	.terms-page__content {
		padding-block: 1rem 3.5rem;
	}

	.terms-page__content-inner {
		gap: 4rem;
	}

	.terms-page__section {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.terms-page__number {
		position: absolute;
		top: -1.7rem;
		left: -0.3rem;
		color: rgba(242, 237, 228, 0.9);
		font-size: 5rem;
		line-height: 1;
		pointer-events: none;
	}

	.terms-page__section-copy {
		position: relative;
		z-index: 1;
		padding-left: 2rem;
	}

	.terms-page__section-copy h2 {
		font-size: 1.65rem;
	}

	.terms-page__section-copy p {
		font-size: 0.96rem;
		line-height: 1.75;
	}

	.terms-page__callout {
		padding: 1.2rem;
	}

	.terms-page__image {
		display: block;
		width: min(calc(100% - 2.5rem), 1280px);
		height: 260px;
		margin: 0 auto 4rem;
		overflow: hidden;
		border: 1px solid var(--terms-sand);
		border-radius: 8px;
	}

	.terms-page__image img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		filter: grayscale(0.2) sepia(0.1) contrast(1.08);
	}

	.terms-page__concierge {
		padding-bottom: 4rem;
	}

	.terms-page__concierge-card {
		padding: 1.6rem;
		border-radius: 8px;
	}

	.terms-page__concierge-card h2 {
		font-size: 1.7rem;
	}

	.terms-page__concierge-card p {
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.terms-page__concierge-card a {
		width: 100%;
		border-radius: 8px;
	}
}
/* Speakers editions */
.speakers-page__speakers {
	padding-top: clamp(64px, 7vw, 110px);
}

.speakers-page__edition {
	margin-bottom: clamp(70px, 8vw, 120px);
}

.speakers-page__edition-header {
	margin-bottom: clamp(28px, 4vw, 44px);
	text-align: center;
}

.speakers-page__edition-header .speakers-page__eyebrow {
	margin-bottom: 10px;
}

.speakers-page__edition-header h2 {
	margin: 0;
	font-size: clamp(38px, 5.2vw, 72px);
	line-height: 0.92;
	letter-spacing: -0.045em;
}

.speakers-page__edition .speakers-page__grid {
	margin-top: 0;
}

.speakers-page__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(28px, 3vw, 44px) !important;
	align-items: stretch;
}

.speakers-page__card {
	position: relative;
	min-height: 520px !important;
	border-radius: 16px;
	overflow: hidden;
	background: #003f3c;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.10);
	isolation: isolate;
}

.speakers-page__card-image {
	position: absolute !important;
	inset: 0;
	width: 100%;
	height: 100% !important;
	min-height: 0 !important;
}

.speakers-page__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.55s ease;
}

.speakers-page__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			to top,
			rgba(0, 48, 45, 0.98) 0%,
			rgba(0, 48, 45, 0.94) 26%,
			rgba(0, 48, 45, 0.68) 48%,
			rgba(0, 48, 45, 0.18) 72%,
			rgba(0, 48, 45, 0.02) 100%
		);
}

.speakers-page__card-overlay {
	position: absolute;
	left: clamp(24px, 2vw, 34px);
	right: clamp(24px, 2vw, 34px);
	bottom: clamp(26px, 2.4vw, 38px);
	z-index: 2;
	color: #fff;
}

.speakers-page__card-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 16px;
	padding: 7px 13px;
	border-radius: 2px;
	background: #b84a0a;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.speakers-page__card-overlay h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(36px, 3.2vw, 54px);
	line-height: 0.9;
	letter-spacing: -0.045em;
	max-width: 92%;
}

.speakers-page__card-overlay p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	max-width: 94%;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(16px, 1.1vw, 20px);
	line-height: 1.45;
	font-weight: 500;
}

.speakers-page__card:hover img {
	transform: scale(1.045);
}

.speakers-page__edition[hidden] {
	display: none !important;
}

@media (max-width: 1180px) {
	.speakers-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.speakers-page__card {
		min-height: 520px !important;
	}
}

@media (max-width: 767px) {
	.speakers-page__speakers {
		padding-top: 54px;
	}

	.speakers-page__edition {
		margin-bottom: 58px;
	}

	.speakers-page__grid {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	.speakers-page__card {
		min-height: 500px !important;
		border-radius: 14px;
	}

	.speakers-page__card-overlay {
		left: 22px;
		right: 22px;
		bottom: 26px;
	}

	.speakers-page__card-overlay h2 {
		font-size: 38px;
	}

	.speakers-page__card-overlay p {
		font-size: 16px;
	}
}

/* Speakers cards typography refinement */
.speakers-page__card-overlay h2 {
	font-size: clamp(26px, 2.2vw, 36px) !important;
	line-height: 0.95 !important;
	letter-spacing: -0.035em !important;
	margin-bottom: 8px !important;
	max-width: 95% !important;
}

.speakers-page__card-overlay p {
	font-size: clamp(13px, 0.95vw, 16px) !important;
	line-height: 1.38 !important;
	max-width: 92% !important;
	-webkit-line-clamp: 3 !important;
}

.speakers-page__card-badge {
	font-size: 9px !important;
	padding: 6px 10px !important;
	margin-bottom: 10px !important;
}

@media (max-width: 767px) {
	.speakers-page__card-overlay h2 {
		font-size: 30px !important;
	}

	.speakers-page__card-overlay p {
		font-size: 14px !important;
	}
}

/* ================================
   Podcast Page
================================ */

.podcast-page {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow-x: hidden;
	background: #fef9f0;
	color: #003333;
}

.podcast-page__hero {
	position: relative;
	isolation: isolate;
	margin-top: 0;
	padding: clamp(96px, 10vw, 150px) 0 clamp(76px, 8vw, 118px);
	background:
		linear-gradient(135deg, rgba(0, 51, 51, 0.98), rgba(13, 64, 60, 0.94)),
		radial-gradient(circle at 78% 18%, rgba(164, 62, 0, 0.22), transparent 34%);
	color: #fef9f0;
}

.podcast-page > section:first-child {
	margin-top: 0;
}

.podcast-page__hero::before {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: -1;
	border: 1px solid rgba(240, 234, 214, 0.16);
	pointer-events: none;
}

.podcast-page__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
	align-items: center;
	gap: clamp(34px, 5vw, 76px);
}

.podcast-page__content {
	max-width: 760px;
}

.podcast-page__kicker {
	margin: 0 0 18px;
	color: #d8a46f;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.podcast-page__kicker--light {
	color: #a43e00;
}

.podcast-page__title {
	margin: 0 0 26px;
	max-width: 720px;
	color: #fef9f0;
	font-family: var(--font-heading);
	font-size: clamp(58px, 7vw, 112px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

.podcast-page__intro {
	margin: 0;
	max-width: 700px;
	color: rgba(254, 249, 240, 0.86);
	font-size: clamp(17px, 1.3vw, 20px);
	line-height: 1.72;
}

.podcast-page__intro--secondary {
	margin-top: 20px;
	color: rgba(240, 234, 214, 0.78);
}

.podcast-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.podcast-page__actions--mobile {
	display: none;
}

.podcast-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.podcast-page__button:hover,
.podcast-page__button:focus {
	transform: translateY(-2px);
}

.podcast-page__button--primary {
	background: #a43e00;
	color: #fff;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.podcast-page__button--primary:hover,
.podcast-page__button--primary:focus {
	background: #c15310;
	color: #fff;
}

.podcast-page__button--secondary {
	border-color: rgba(240, 234, 214, 0.42);
	background: rgba(254, 249, 240, 0.08);
	color: #fef9f0;
}

.podcast-page__button--secondary:hover,
.podcast-page__button--secondary:focus {
	border-color: #f0ead6;
	background: #f0ead6;
	color: #003333;
}

.podcast-page__panel {
	position: relative;
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(240, 234, 214, 0.28);
	background:
		linear-gradient(180deg, rgba(254, 249, 240, 0.13), rgba(254, 249, 240, 0.06)),
		rgba(0, 0, 0, 0.12);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.podcast-page__panel::after {
	content: "";
	position: absolute;
	right: 22px;
	bottom: 22px;
	width: 92px;
	height: 1px;
	background: rgba(240, 234, 214, 0.42);
}

.podcast-page__mark {
	position: relative;
	width: 112px;
	height: 138px;
	margin-bottom: 30px;
	color: #f0ead6;
}

.podcast-page__mark::before,
.podcast-page__mark::after {
	content: "";
	position: absolute;
	inset: 6px 23px 38px;
	border: 2px solid currentColor;
	border-radius: 46px 46px 34px 34px;
}

.podcast-page__mark::after {
	inset: 24px 39px 54px;
	border-width: 1px;
	opacity: 0.45;
}

.podcast-page__mark-capsule {
	position: absolute;
	left: 50%;
	top: 0;
	width: 34px;
	height: 88px;
	border-radius: 24px;
	background: #a43e00;
	transform: translateX(-50%);
}

.podcast-page__mark-line {
	position: absolute;
	left: 50%;
	bottom: 22px;
	width: 2px;
	height: 40px;
	background: currentColor;
	transform: translateX(-50%);
}

.podcast-page__mark-base {
	position: absolute;
	left: 25px;
	right: 25px;
	bottom: 14px;
	height: 2px;
	background: currentColor;
}

.podcast-page__panel-title {
	margin: 0 0 24px;
	max-width: 360px;
	color: #fef9f0;
	font-family: var(--font-heading);
	font-size: clamp(32px, 3vw, 48px);
	letter-spacing: -0.03em;
	line-height: 1;
}

.podcast-page__list {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.podcast-page__list-item {
	position: relative;
	margin: 0;
	padding-left: 28px;
	color: rgba(254, 249, 240, 0.82);
	font-size: 15px;
	line-height: 1.55;
}

.podcast-page__list-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 12px;
	height: 12px;
	border: 1px solid #d8a46f;
	background: rgba(164, 62, 0, 0.55);
	transform: rotate(45deg);
}

.podcast-page__audience {
	padding: clamp(72px, 8vw, 112px) 0 clamp(84px, 9vw, 128px);
	background: #fef9f0;
}

.podcast-page__section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
	align-items: end;
	gap: 28px;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.podcast-page__section-title {
	margin: 0;
	max-width: 760px;
	color: #003333;
	font-family: var(--font-heading);
	font-size: clamp(38px, 4.6vw, 72px);
	letter-spacing: -0.04em;
	line-height: 0.98;
}

.podcast-page__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.podcast-page__card {
	min-height: 300px;
	padding: 26px;
	border: 1px solid rgba(13, 64, 60, 0.14);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(240, 234, 214, 0.62)),
		#f0ead6;
	box-shadow: 0 18px 42px rgba(0, 51, 51, 0.07);
}

.podcast-page__card-number {
	display: block;
	margin-bottom: 54px;
	color: #a43e00;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.podcast-page__card-title {
	margin: 0 0 14px;
	color: #003333;
	font-family: var(--font-heading);
	font-size: clamp(26px, 2vw, 34px);
	letter-spacing: -0.025em;
	line-height: 1;
}

.podcast-page__card-text {
	margin: 0;
	color: #3f4848;
	font-size: 15px;
	line-height: 1.62;
}

.podcast-page__note {
	margin: clamp(34px, 5vw, 58px) auto 0;
	max-width: 900px;
	padding-top: 28px;
	border-top: 1px solid rgba(13, 64, 60, 0.18);
	color: #0d403c;
	font-family: var(--font-heading);
	font-size: clamp(24px, 2.4vw, 38px);
	letter-spacing: -0.025em;
	line-height: 1.16;
	text-align: center;
}

@media (max-width: 1100px) {
	.podcast-page__hero-inner {
		grid-template-columns: 1fr;
	}

	.podcast-page__content {
		max-width: none;
	}

	.podcast-page__panel {
		width: min(100%, 680px);
	}

	.podcast-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.podcast-page__hero {
		padding: 76px 0 62px;
	}

	.podcast-page__hero::before {
		inset: 10px;
	}

	.podcast-page__hero-inner {
		gap: 32px;
	}

	.podcast-page__title {
		font-size: clamp(46px, 15vw, 64px);
	}

	.podcast-page__intro {
		font-size: 16px;
		line-height: 1.66;
	}

	.podcast-page__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.podcast-page__button {
		width: 100%;
	}

	.podcast-page__panel {
		padding: 28px;
	}

	.podcast-page__mark {
		width: 94px;
		height: 120px;
		margin-bottom: 22px;
	}

	.podcast-page__panel-title {
		font-size: 32px;
	}

	.podcast-page__audience {
		padding: 58px 0 76px;
	}

	.podcast-page__section-heading {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 28px;
	}

	.podcast-page__section-title {
		font-size: clamp(34px, 12vw, 48px);
	}

	.podcast-page__grid {
		grid-template-columns: 1fr;
	}

	.podcast-page__card {
		min-height: 0;
		padding: 24px;
	}

	.podcast-page__card-number {
		margin-bottom: 34px;
	}

	.podcast-page__note {
		text-align: left;
	}
}

/* ================================
   Membership Page
================================ */

.membership-page {
	overflow-x: hidden;
	background: #fef9f0;
	color: #003333;
}

.membership-page__hero {
	position: relative;
	isolation: isolate;
	padding: clamp(78px, 8vw, 124px) 0 clamp(68px, 7vw, 104px);
	background:
		linear-gradient(135deg, rgba(0, 51, 51, 0.98), rgba(13, 64, 60, 0.94)),
		radial-gradient(circle at 84% 20%, rgba(164, 62, 0, 0.24), transparent 32%);
	color: #fef9f0;
}

.membership-page__hero::before {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: -1;
	border: 1px solid rgba(240, 234, 214, 0.16);
	pointer-events: none;
}

.membership-page__hero-inner {
	max-width: 920px;
}

.membership-page__eyebrow {
	margin: 0 0 14px;
	color: #a43e00;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.17em;
	line-height: 1.2;
	text-transform: uppercase;
}

.membership-page__hero .membership-page__eyebrow,
.membership-page__cta .membership-page__eyebrow {
	color: #d8a46f;
}

.membership-page__title {
	margin: 0 0 24px;
	max-width: 900px;
	color: #fef9f0;
	font-family: var(--font-heading);
	font-size: clamp(54px, 7vw, 104px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.92;
}

.membership-page__intro {
	margin: 0;
	max-width: 720px;
	color: rgba(254, 249, 240, 0.9);
	font-size: clamp(18px, 1.4vw, 22px);
	line-height: 1.62;
}

.membership-page__intro--muted {
	margin-top: 16px;
	color: rgba(240, 234, 214, 0.78);
}

.membership-page__tagline {
	margin: 28px 0 0;
	color: #f0ead6;
	font-family: var(--font-heading);
	font-size: clamp(28px, 3vw, 44px);
	letter-spacing: -0.025em;
	line-height: 1.05;
}

.membership-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 30px;
	padding: 0 24px;
	border: 1px solid #a43e00;
	border-radius: 3px;
	background: #a43e00;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.membership-page__button:hover,
.membership-page__button:focus {
	border-color: #c15310;
	background: #c15310;
	color: #fff;
	box-shadow: 0 16px 32px rgba(0, 51, 51, 0.14);
	transform: translateY(-2px);
}

.membership-page__button--light {
	border-color: #f0ead6;
	background: #f0ead6;
	color: #003333;
}

.membership-page__button--light:hover,
.membership-page__button--light:focus {
	border-color: #fff;
	background: #fff;
	color: #003333;
}

.membership-page__options,
.membership-page__experiences,
.membership-page__benefits,
.membership-page__member-card {
	padding: clamp(62px, 7vw, 98px) 0;
}

.membership-page__section-heading {
	max-width: 760px;
	margin-bottom: clamp(28px, 4vw, 46px);
}

.membership-page__section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.membership-page__section-heading h2,
.membership-page__benefits-copy h2,
.membership-page__member-card h2,
.membership-page__cta h2 {
	margin: 0;
	color: #003333;
	font-family: var(--font-heading);
	font-size: clamp(38px, 4.6vw, 72px);
	letter-spacing: -0.04em;
	line-height: 0.98;
}

.membership-page__pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.membership-page__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(28px, 4vw, 42px);
	border: 1px solid rgba(13, 64, 60, 0.14);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(240, 234, 214, 0.7)),
		#f0ead6;
	box-shadow: 0 22px 54px rgba(0, 51, 51, 0.08);
}

.membership-page__card-head {
	min-height: 158px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(13, 64, 60, 0.16);
}

.membership-page__card-head h3,
.membership-page__experience h3 {
	margin: 0 0 14px;
	color: #003333;
	font-family: var(--font-heading);
	font-size: clamp(30px, 3vw, 48px);
	letter-spacing: -0.035em;
	line-height: 1;
}

.membership-page__card-head p,
.membership-page__experience p,
.membership-page__benefits-copy p,
.membership-page__member-card p,
.membership-page__cta p {
	margin: 0;
	color: #3f4848;
	font-size: 16px;
	line-height: 1.68;
}

.membership-page__price {
	margin: 28px 0 8px;
	color: #a43e00;
	font-family: var(--font-heading);
	font-size: clamp(34px, 3.8vw, 58px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
}

.membership-page__note {
	margin: 0 0 24px;
	color: #0d403c;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-transform: uppercase;
}

.membership-page__list,
.membership-page__benefit-list {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.membership-page__list li,
.membership-page__benefit-list li {
	position: relative;
	margin: 0;
	padding-left: 28px;
	color: #3f4848;
	font-size: 15px;
	line-height: 1.55;
}

.membership-page__list li::before,
.membership-page__benefit-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 10px;
	height: 10px;
	border: 1px solid #a43e00;
	background: rgba(164, 62, 0, 0.12);
	transform: rotate(45deg);
}

.membership-page__experiences {
	background: #0d403c;
	color: #fef9f0;
}

.membership-page__experiences .membership-page__eyebrow {
	color: #d8a46f;
}

.membership-page__experiences .membership-page__section-heading h2 {
	color: #fef9f0;
}

.membership-page__experience-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.membership-page__experience {
	padding: clamp(26px, 4vw, 38px);
	border: 1px solid rgba(240, 234, 214, 0.22);
	background: rgba(254, 249, 240, 0.08);
}

.membership-page__experience h3,
.membership-page__experiences .membership-page__experience p {
	color: #fef9f0;
}

.membership-page__callout {
	margin: clamp(28px, 4vw, 46px) auto 0;
	max-width: 940px;
	padding-top: 28px;
	border-top: 1px solid rgba(240, 234, 214, 0.24);
	color: #f0ead6;
	font-family: var(--font-heading);
	font-size: clamp(28px, 3.4vw, 52px);
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-align: center;
}

.membership-page__benefits-grid,
.membership-page__member-card-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(30px, 5vw, 70px);
}

.membership-page__benefit-list {
	padding: clamp(26px, 4vw, 38px);
	border: 1px solid rgba(13, 64, 60, 0.14);
	background: #f0ead6;
}

.membership-page__member-card {
	background: #f0ead6;
}

.membership-page__member-card-inner {
	align-items: stretch;
}

.membership-page__card-visual {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
	min-height: 270px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid rgba(240, 234, 214, 0.28);
	background:
		linear-gradient(135deg, rgba(0, 51, 51, 0.98), rgba(13, 64, 60, 0.9)),
		radial-gradient(circle at 84% 18%, rgba(164, 62, 0, 0.34), transparent 34%);
	color: #fef9f0;
	box-shadow: 0 24px 52px rgba(0, 51, 51, 0.15);
}

.membership-page__card-visual::after {
	content: "";
	position: absolute;
	right: 30px;
	bottom: 30px;
	width: 72px;
	height: 72px;
	border: 1px solid rgba(240, 234, 214, 0.54);
	background:
		linear-gradient(90deg, rgba(240, 234, 214, 0.5) 1px, transparent 1px),
		linear-gradient(rgba(240, 234, 214, 0.5) 1px, transparent 1px);
	background-size: 12px 12px;
	opacity: 0.58;
}

.membership-page__card-visual span {
	color: #d8a46f;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.membership-page__card-visual strong {
	max-width: 320px;
	font-family: var(--font-heading);
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 0.98;
}

.membership-page__card-visual small {
	color: rgba(254, 249, 240, 0.72);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.membership-page__cta {
	padding: clamp(70px, 8vw, 112px) 0;
	background: #003333;
	color: #fef9f0;
	text-align: center;
}

.membership-page__cta-inner {
	max-width: 780px;
}

.membership-page__cta h2 {
	color: #fef9f0;
}

.membership-page__cta p {
	margin-top: 18px;
	color: rgba(254, 249, 240, 0.84);
	font-family: var(--font-heading);
	font-size: clamp(28px, 3vw, 44px);
	letter-spacing: -0.025em;
	line-height: 1.05;
}

@media (max-width: 980px) {
	.membership-page__pricing-grid,
	.membership-page__experience-grid,
	.membership-page__benefits-grid,
	.membership-page__member-card-inner {
		grid-template-columns: 1fr;
	}

	.membership-page__card-head {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.membership-page__hero {
		padding: 66px 0 58px;
	}

	.membership-page__hero::before {
		inset: 10px;
	}

	.membership-page__title {
		font-size: clamp(42px, 13vw, 60px);
	}

	.membership-page__intro {
		font-size: 16px;
	}

	.membership-page__button {
		width: 100%;
	}

	.membership-page__options,
	.membership-page__experiences,
	.membership-page__benefits,
	.membership-page__member-card {
		padding: 54px 0;
	}

	.membership-page__section-heading h2,
	.membership-page__benefits-copy h2,
	.membership-page__member-card h2,
	.membership-page__cta h2 {
		font-size: clamp(34px, 11vw, 48px);
	}

	.membership-page__card,
	.membership-page__experience,
	.membership-page__benefit-list {
		padding: 24px;
	}

	.membership-page__callout {
		text-align: left;
	}

	.membership-page__card-visual {
		min-height: 230px;
		padding: 24px;
	}

	.membership-page__cta {
		padding: 62px 0;
	}
}

/* ================================
   Header Typography Override
================================ */

.site-header__brand span {
	font-size: 24px;
	line-height: 1;
}

.site-header__nav a,
.primary-menu a {
	font-size: 12px;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.site-header__cta {
	font-size: 11px;
	letter-spacing: 0.09em;
	line-height: 1.2;
}

.site-header__brand img,
.site-header .custom-logo {
	max-height: 50px;
}

@media (max-width: 767px) {
	.site-header__brand span {
		font-size: 20px;
	}

	.site-header__brand img,
	.site-header .custom-logo {
		max-height: 42px;
		max-width: 42px;
	}
}

/* ================================
   Membership Hero Alignment
================================ */

.membership-page .membership-page__hero {
	text-align: left;
}

.membership-page .membership-page__hero-inner {
	width: min(100% - 2rem, var(--container-width));
	max-width: var(--container-width);
	text-align: left;
}

.membership-page .membership-page__title,
.membership-page .membership-page__intro,
.membership-page .membership-page__tagline {
	margin-left: 0;
	margin-right: 0;
	max-width: 760px;
	text-align: left;
}

.membership-page .membership-page__intro {
	max-width: 720px;
}

.membership-page .membership-page__hero .membership-page__button {
	align-self: flex-start;
	margin-left: 0;
	margin-right: 0;
}

/* ================================
   Membership Typography Scale
================================ */

.membership-page .membership-page__title {
	font-size: clamp(54px, 5.4vw, 82px);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.membership-page .membership-page__section-heading h2,
.membership-page .membership-page__benefits-copy h2,
.membership-page .membership-page__member-card h2,
.membership-page .membership-page__cta h2 {
	font-size: clamp(38px, 3.9vw, 58px);
	line-height: 1;
	letter-spacing: -0.035em;
}

.membership-page .membership-page__card-head h3,
.membership-page .membership-page__experience h3 {
	font-size: clamp(30px, 2.5vw, 38px);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.membership-page .membership-page__intro,
.membership-page .membership-page__card-head p,
.membership-page .membership-page__experience p,
.membership-page .membership-page__benefits-copy p,
.membership-page .membership-page__member-card p,
.membership-page .membership-page__list li,
.membership-page .membership-page__benefit-list li {
	font-size: 15px;
	line-height: 1.62;
}

.membership-page .membership-page__tagline,
.membership-page .membership-page__cta p {
	font-size: clamp(24px, 2.3vw, 36px);
	line-height: 1.08;
}

.membership-page .membership-page__price {
	font-size: clamp(32px, 3vw, 46px);
	line-height: 1;
}

.membership-page .membership-page__note {
	font-size: 12px;
	letter-spacing: 0.06em;
}

.membership-page .membership-page__callout {
	font-size: clamp(26px, 2.8vw, 42px);
	line-height: 1.08;
}

.membership-page .membership-page__button {
	min-height: 48px;
	padding: 0 22px;
	font-size: 12px;
	letter-spacing: 0.08em;
}

@media (max-width: 767px) {
	.membership-page .membership-page__title {
		font-size: 42px;
		line-height: 1;
	}

	.membership-page .membership-page__section-heading h2,
	.membership-page .membership-page__benefits-copy h2,
	.membership-page .membership-page__member-card h2,
	.membership-page .membership-page__cta h2 {
		font-size: 34px;
		line-height: 1.04;
	}

	.membership-page .membership-page__card-head h3,
	.membership-page .membership-page__experience h3 {
		font-size: 30px;
	}

	.membership-page .membership-page__tagline,
	.membership-page .membership-page__cta p {
		font-size: 26px;
	}

	.membership-page .membership-page__price {
		font-size: 34px;
	}

	.membership-page .membership-page__callout {
		font-size: 28px;
	}
}

/* ================================
   Membership and Podcast Compact Scale
================================ */

.membership-page .membership-page__title,
.podcast-page .podcast-page__title {
	font-size: clamp(44px, 4.6vw, 64px);
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.membership-page .membership-page__section-heading h2,
.membership-page .membership-page__benefits-copy h2,
.membership-page .membership-page__member-card h2,
.membership-page .membership-page__cta h2,
.podcast-page .podcast-page__section-title,
.podcast-page .podcast-page__panel-title {
	font-size: clamp(32px, 3.2vw, 48px);
	line-height: 1.03;
	letter-spacing: -0.03em;
}

.membership-page .membership-page__card-head h3,
.membership-page .membership-page__experience h3,
.podcast-page .podcast-page__card-title {
	font-size: clamp(24px, 2vw, 30px);
	line-height: 1.06;
	letter-spacing: -0.025em;
}

.membership-page .membership-page__intro,
.membership-page .membership-page__card-head p,
.membership-page .membership-page__experience p,
.membership-page .membership-page__benefits-copy p,
.membership-page .membership-page__member-card p,
.membership-page .membership-page__list li,
.membership-page .membership-page__benefit-list li,
.podcast-page .podcast-page__intro,
.podcast-page .podcast-page__list-item,
.podcast-page .podcast-page__card-text {
	font-size: 15px;
	line-height: 1.6;
}

.membership-page .membership-page__tagline,
.membership-page .membership-page__cta p,
.podcast-page .podcast-page__note {
	font-size: clamp(22px, 2vw, 32px);
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.membership-page .membership-page__price {
	font-size: clamp(30px, 2.6vw, 40px);
}

.membership-page .membership-page__callout {
	font-size: clamp(24px, 2.4vw, 36px);
	line-height: 1.12;
}

.membership-page .membership-page__button,
.podcast-page .podcast-page__button {
	min-height: 46px;
	padding: 0 20px;
	font-size: 11px;
	letter-spacing: 0.08em;
}

.membership-page .membership-page__eyebrow,
.podcast-page .podcast-page__kicker {
	font-size: 11px;
	letter-spacing: 0.16em;
}

@media (max-width: 767px) {
	.membership-page .membership-page__title,
	.podcast-page .podcast-page__title {
		font-size: 36px;
		line-height: 1.02;
	}

	.membership-page .membership-page__section-heading h2,
	.membership-page .membership-page__benefits-copy h2,
	.membership-page .membership-page__member-card h2,
	.membership-page .membership-page__cta h2,
	.podcast-page .podcast-page__section-title,
	.podcast-page .podcast-page__panel-title {
		font-size: 30px;
		line-height: 1.06;
	}

	.membership-page .membership-page__card-head h3,
	.membership-page .membership-page__experience h3,
	.podcast-page .podcast-page__card-title {
		font-size: 26px;
	}

	.membership-page .membership-page__intro,
	.membership-page .membership-page__card-head p,
	.membership-page .membership-page__experience p,
	.membership-page .membership-page__benefits-copy p,
	.membership-page .membership-page__member-card p,
	.membership-page .membership-page__list li,
	.membership-page .membership-page__benefit-list li,
	.podcast-page .podcast-page__intro,
	.podcast-page .podcast-page__list-item,
	.podcast-page .podcast-page__card-text {
		font-size: 14px;
	}

	.membership-page .membership-page__tagline,
	.membership-page .membership-page__cta p,
	.podcast-page .podcast-page__note {
		font-size: 24px;
	}

	.membership-page .membership-page__callout {
		font-size: 26px;
	}
}

/* ================================
   Membership Hero Compact Fix
================================ */

.membership-page .membership-page__hero {
	min-height: 0;
	padding: clamp(48px, 5.5vw, 78px) 0 clamp(46px, 5vw, 72px);
	text-align: left;
}

.membership-page .membership-page__hero::before {
	display: none;
}

.membership-page .membership-page__hero-inner {
	display: block;
	width: min(100% - 2rem, var(--container-width));
	max-width: var(--container-width);
	margin-inline: auto;
	text-align: left;
}

.membership-page .membership-page__hero .membership-page__eyebrow {
	margin-bottom: 12px;
}

.membership-page .membership-page__hero .membership-page__title {
	max-width: 720px;
	margin-bottom: 18px;
	font-size: clamp(42px, 4.4vw, 68px);
	line-height: 0.98;
}

.membership-page .membership-page__hero .membership-page__intro {
	max-width: 680px;
	font-size: clamp(15px, 1.15vw, 16px);
	line-height: 1.58;
}

.membership-page .membership-page__hero .membership-page__intro--muted {
	margin-top: 12px;
}

.membership-page .membership-page__hero .membership-page__tagline {
	max-width: 680px;
	margin-top: 20px;
	font-size: clamp(22px, 2vw, 32px);
}

.membership-page .membership-page__hero .membership-page__button {
	min-height: 44px;
	margin-top: 24px;
	padding: 0 18px;
	font-size: 11px;
}

@media (max-width: 767px) {
	.membership-page .membership-page__hero {
		padding: 42px 0 46px;
	}

	.membership-page .membership-page__hero .membership-page__title {
		font-size: 36px;
		line-height: 1.02;
	}

	.membership-page .membership-page__hero .membership-page__intro {
		font-size: 15px;
	}

	.membership-page .membership-page__hero .membership-page__tagline {
		font-size: 24px;
	}
}

/* ================================
   Podcast Hero Compact Fix
================================ */

.podcast-page .podcast-page__hero {
	min-height: 0;
	padding: clamp(48px, 5.8vw, 82px) 0 clamp(46px, 5.2vw, 76px);
}

.podcast-page .podcast-page__hero::before {
	display: none;
}

.podcast-page .podcast-page__hero-inner {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
	gap: clamp(28px, 4vw, 58px);
	align-items: center;
}

.podcast-page .podcast-page__content {
	max-width: 720px;
	text-align: left;
}

.podcast-page .podcast-page__title {
	max-width: 700px;
	margin-bottom: 18px;
	font-size: clamp(42px, 4.5vw, 68px);
	line-height: 0.98;
}

.podcast-page .podcast-page__intro {
	max-width: 670px;
	font-size: clamp(15px, 1.15vw, 16px);
	line-height: 1.58;
}

.podcast-page .podcast-page__intro--secondary {
	margin-top: 12px;
}

.podcast-page .podcast-page__actions {
	margin-top: 24px;
}

.podcast-page .podcast-page__button {
	min-height: 44px;
	padding: 0 18px;
	font-size: 11px;
}

.podcast-page .podcast-page__panel {
	padding: clamp(24px, 3vw, 34px);
}

.podcast-page .podcast-page__mark {
	width: 84px;
	height: 104px;
	margin-bottom: 20px;
}

.podcast-page .podcast-page__mark-capsule {
	width: 28px;
	height: 68px;
}

.podcast-page .podcast-page__mark-line {
	bottom: 18px;
	height: 30px;
}

.podcast-page .podcast-page__mark-base {
	left: 22px;
	right: 22px;
	bottom: 10px;
}

.podcast-page .podcast-page__panel-title {
	max-width: 320px;
	margin-bottom: 18px;
	font-size: clamp(30px, 2.8vw, 42px);
	line-height: 1.02;
}

.podcast-page .podcast-page__list {
	gap: 12px;
}

.podcast-page .podcast-page__list-item {
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 1100px) {
	.podcast-page .podcast-page__hero-inner {
		grid-template-columns: 1fr;
	}

	.podcast-page .podcast-page__panel {
		width: min(100%, 620px);
	}
}

@media (max-width: 767px) {
	.podcast-page .podcast-page__hero {
		padding: 42px 0 46px;
	}

	.podcast-page .podcast-page__hero-inner {
		gap: 28px;
	}

	.podcast-page .podcast-page__title {
		font-size: 36px;
		line-height: 1.02;
	}

	.podcast-page .podcast-page__intro {
		font-size: 15px;
	}

	.podcast-page .podcast-page__panel {
		padding: 24px;
	}

	.podcast-page .podcast-page__panel-title {
		font-size: 30px;
	}

	.podcast-page .podcast-page__list-item {
		font-size: 14px;
	}
}

/* ================================
   Podcast Hero Final Tightening
================================ */

.podcast-page .podcast-page__hero {
	min-height: 0;
	padding: clamp(36px, 4.5vw, 64px) 0 clamp(38px, 4.6vw, 66px);
}

.podcast-page .podcast-page__hero::before {
	display: none;
}

.podcast-page .podcast-page__hero-inner {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	gap: clamp(24px, 3.5vw, 48px);
	align-items: center;
}

.podcast-page .podcast-page__content {
	max-width: 690px;
	text-align: left;
}

.podcast-page .podcast-page__title {
	max-width: 660px;
	margin-bottom: 16px;
	font-size: clamp(40px, 4.1vw, 64px);
	line-height: 1;
	letter-spacing: -0.035em;
}

.podcast-page .podcast-page__intro {
	max-width: 650px;
	font-size: clamp(15px, 1vw, 16px);
	line-height: 1.55;
}

.podcast-page .podcast-page__intro--secondary {
	margin-top: 10px;
}

.podcast-page .podcast-page__actions {
	margin-top: 22px;
}

.podcast-page .podcast-page__button {
	min-height: 42px;
	padding: 0 17px;
	font-size: 11px;
	letter-spacing: 0.08em;
}

.podcast-page .podcast-page__panel {
	justify-self: end;
	width: 100%;
	max-width: 420px;
	padding: clamp(22px, 2.5vw, 30px);
}

.podcast-page .podcast-page__panel-title {
	max-width: 300px;
	margin-bottom: 16px;
	font-size: clamp(28px, 2.5vw, 38px);
	line-height: 1.04;
}

.podcast-page .podcast-page__list {
	gap: 10px;
}

.podcast-page .podcast-page__list-item {
	font-size: 14px;
	line-height: 1.45;
}

.podcast-page .podcast-page__mark {
	width: 76px;
	height: 96px;
	margin-bottom: 18px;
}

@media (max-width: 1100px) {
	.podcast-page .podcast-page__hero-inner {
		grid-template-columns: 1fr;
	}

	.podcast-page .podcast-page__panel {
		justify-self: start;
		max-width: 560px;
	}
}

@media (max-width: 767px) {
	.podcast-page .podcast-page__hero {
		padding: 34px 0 40px;
	}

	.podcast-page .podcast-page__hero-inner {
		gap: 24px;
	}

	.podcast-page .podcast-page__title {
		font-size: 36px;
		line-height: 1.02;
	}

	.podcast-page .podcast-page__intro {
		font-size: 15px;
		line-height: 1.55;
	}

	.podcast-page .podcast-page__panel {
		max-width: none;
		padding: 22px;
	}

	.podcast-page .podcast-page__panel-title {
		font-size: 30px;
	}

	.podcast-page .podcast-page__content > .podcast-page__actions {
		display: none;
	}

	.podcast-page .podcast-page__actions--mobile {
		display: grid;
		gap: 14px;
		margin-top: 24px;
	}

	.podcast-page .podcast-page__actions--mobile .podcast-page__button {
		width: 100%;
		justify-content: center;
	}
}
