/* =========================================================
   Carola Calello — Ski Instructor theme · GOLD EDITION
   Matched to Carola's brand identity (flyer):
     --noir:      #1C1A16  warm charcoal black
     --noir-2:    #2A261F  elevated dark surface
     --cream:     #F5EFE3  warm cream
     --parchment: #EFE6D4  alt section background
     --gold:      #C6A14C  metallic gold
     --gold-deep: #A8842F  hover / deep gold
     --champagne: #E5D5AC  light gold accents
     --ink:       #4A443A  body text on light
   Type:
     Display: Cormorant Garamond (elegant serif, like the flyer)
     Accent:  Great Vibes (script, used sparingly for eyebrows)
     Body:    Jost (clean geometric sans)
   ========================================================= */

:root {
	--noir: #1C1A16;
	--noir-2: #2A261F;
	--cream: #F5EFE3;
	--parchment: #EFE6D4;
	--gold: #C6A14C;
	--gold-deep: #A8842F;
	--champagne: #E5D5AC;
	--ink: #4A443A;
	--white: #FFFFFF;

	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-script: "Great Vibes", cursive;
	--font-body: "Jost", system-ui, sans-serif;

	--wrap: 1160px;
	--radius: 12px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); color: var(--noir); line-height: 1.08; margin: 0 0 0.5em; }
h1 { font-size: clamp(3rem, 8vw, 5.6rem); font-weight: 600; letter-spacing: 0.005em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }
.center { text-align: center; }

.screen-reader-text {
	clip: rect(1px,1px,1px,1px); position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; background: var(--noir); color: var(--champagne);
	padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

a:focus-visible, button:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}

/* ---------- Eyebrow: script accent, like "Sobre mí" in the flyer ---------- */
.eyebrow {
	font-family: var(--font-script);
	font-size: 1.75rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.02em;
	color: var(--gold);
	margin-bottom: 0.6rem;
	display: block;
}
.eyebrow::after {
	content: "";
	display: block;
	width: 56px; height: 1px;
	background: linear-gradient(90deg, var(--gold), transparent);
	margin-top: 6px;
}
.eyebrow-light { color: var(--champagne); }
.eyebrow-light::after { background: linear-gradient(90deg, var(--champagne), transparent); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.88rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 3px;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gate {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
	color: var(--noir);
	font-weight: 600;
}
.btn-gate:hover { background: var(--champagne); }
.btn-ghost { border: 1px solid var(--champagne); color: var(--champagne); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark { border: 1px solid var(--noir); color: var(--noir); }
.btn-ghost-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(28,26,22,.94);
	backdrop-filter: blur(8px);
	color: var(--cream);
	border-bottom: 1px solid rgba(198,161,76,.25);
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; min-height: 76px;
}
.brand-mark { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.35rem;
	letter-spacing: 0.03em;
	color: var(--cream);
}
.brand-tag {
	font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--gold);
	font-weight: 400;
}
.header-nav { display: flex; align-items: center; gap: 22px; }
.primary-menu ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.primary-menu a {
	color: var(--cream); text-decoration: none; font-size: 0.88rem;
	font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
}
.primary-menu a:hover { color: var(--gold); }

.lang-switcher ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.lang-switcher a {
	display: inline-block; padding: 4px 9px; border-radius: 3px;
	font-family: var(--font-body); font-weight: 500; font-size: 0.7rem;
	letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--champagne); text-decoration: none;
	border: 1px solid rgba(198,161,76,.4);
}
.lang-switcher .current-lang a { background: var(--gold); color: var(--noir); border-color: var(--gold); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background:
		var(--hero-img, radial-gradient(120% 90% at 75% 20%, #3A3226 0%, #241F18 45%, #17140F 100%));
	background-size: cover;
	background-position: center;
	color: var(--cream);
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(28,26,22,.5) 0%, rgba(28,26,22,.78) 100%);
}
/* soft golden glow, like the sunset in her flyer hero */
.hero::after {
	content: "";
	position: absolute; top: -20%; right: -10%;
	width: 55%; height: 80%;
	background: radial-gradient(closest-side, rgba(198,161,76,.22), transparent 70%);
	pointer-events: none;
}
/* organic cream curve at the base — echoes the flyer's flowing shapes */
.hero-slope {
	position: absolute; left: 0; right: 0; bottom: -1px; height: 16vh; min-height: 110px;
	background: var(--cream);
	clip-path: ellipse(75% 100% at 50% 100%);
	z-index: 1;
}
.hero-inner {
	position: relative; z-index: 2;
	padding: clamp(90px, 16vh, 170px) 24px clamp(150px, 24vh, 240px);
}
.hero-title { color: var(--cream); max-width: 14ch; }
.hero-title em, .hero-title i { font-style: italic; color: var(--champagne); }
.hero-sub { max-width: 48ch; font-size: 1.12rem; color: #DDD4C2; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

.gate-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--font-body);
	font-size: 0.78rem; font-weight: 400;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--gold);
}
.gate-eyebrow::after { display: none; }
/* gold peak mark, echoing her CC mountain logo */
.gate-flag {
	width: 20px; height: 12px;
	background: linear-gradient(135deg, var(--gold), var(--gold-deep));
	clip-path: polygon(0 100%, 30% 20%, 45% 55%, 65% 0, 100% 100%);
}

/* ---------- Season band (signature) ---------- */
.season-band {
	background: var(--cream);
	padding: 8px 0 64px;
	margin-top: -1px;
}
.season-claim {
	font-family: var(--font-script);
	font-size: clamp(2rem, 4.5vw, 2.8rem);
	color: var(--noir);
	margin-bottom: 20px;
}
.season-track {
	display: grid;
	grid-template-columns: 3fr 5fr;
	gap: 8px;
}
.season-seg {
	border-radius: var(--radius);
	padding: 20px 24px;
	display: flex; flex-direction: column; gap: 2px;
	color: var(--noir);
}
.season-south { background: var(--white); border: 1px solid var(--champagne); border-left: 4px solid var(--gold); }
.season-north { background: var(--noir); color: var(--cream); border-left: 4px solid var(--gold); }
.season-north .season-place, .season-north .season-months { color: var(--cream); }
.season-north .season-hemi { color: var(--gold); }
.season-months {
	font-family: var(--font-display); font-weight: 700;
	font-size: 1.35rem;
}
.season-place { font-weight: 400; font-size: 0.98rem; }
.season-hemi {
	font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--gold-deep); font-weight: 400;
}

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--parchment); }
.section-dark {
	background:
		radial-gradient(100% 60% at 50% 0%, #2E2920 0%, var(--noir) 60%);
	color: #CFC5B2;
}
.section-dark h2 { color: var(--cream); }
.section-dark h3 { color: var(--cream); }
.section-lead { max-width: 60ch; font-size: 1.1rem; }

.grid-2 {
	display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start;
}

/* ---------- About credentials ---------- */
.cred-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cred-list li {
	background: var(--white);
	border: 1px solid var(--champagne);
	border-radius: var(--radius);
	padding: 22px 24px;
	display: flex; align-items: baseline; gap: 18px;
}
.cred-num {
	font-family: var(--font-display); font-weight: 700;
	font-size: 1.9rem; color: var(--gold-deep); white-space: nowrap;
	line-height: 1;
}
.cred-label { font-weight: 400; color: var(--noir); }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; }
.dest-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--champagne);
	padding-bottom: 8px;
}
.dest-card h3 { padding: 18px 24px 0; }
.dest-card p { padding: 0 24px; font-size: 0.98rem; }
.dest-media {
	height: 160px; position: relative;
	display: flex; align-items: flex-end; justify-content: flex-end;
}
.dest-season {
	font-family: var(--font-body); font-weight: 500; font-size: 0.7rem;
	letter-spacing: 0.14em; text-transform: uppercase;
	background: rgba(28,26,22,.88); color: var(--champagne);
	padding: 6px 11px; margin: 12px; border-radius: 3px;
}
/* warm placeholder gradients (replace with photos) */
.dest-bariloche { background: linear-gradient(160deg, #241F18 0%, #6B5A38 55%, #E5D5AC 100%); }
.dest-aspen     { background: linear-gradient(160deg, #17140F 0%, #4A3F2A 60%, #F5EFE3 100%); }
.dest-alps      { background: linear-gradient(160deg, #1C1A16 0%, #857043 50%, #C6A14C 100%); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 16px; }
.svc-card {
	background: var(--white);
	border: 1px solid var(--champagne);
	border-top: 3px solid var(--champagne);
	border-radius: var(--radius);
	padding: 26px 24px;
}
.svc-card:hover { border-top-color: var(--gold); }
.svc-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Packages ---------- */
.steps {
	list-style: none; counter-reset: step;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	margin: 40px 0 48px; padding: 0;
}
.steps li {
	counter-increment: step;
	background: rgba(245,239,227,.05);
	border: 1px solid rgba(198,161,76,.3);
	border-radius: var(--radius);
	padding: 28px 26px;
	position: relative;
}
.steps li::before {
	content: counter(step, decimal-leading-zero);
	font-family: var(--font-display); font-weight: 700;
	font-size: 1.6rem; color: var(--gold);
	display: block; margin-bottom: 10px;
	line-height: 1;
}
.steps p { font-size: 0.95rem; margin: 0; color: #B3A88F; }

.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.pack-card {
	background: rgba(245,239,227,.04);
	border: 1px solid rgba(198,161,76,.3);
	border-radius: var(--radius); overflow: hidden;
}
.pack-body { padding: 22px 24px; }
.pack-body h3 a { color: var(--cream); text-decoration: none; }
.pack-body h3 a:hover { color: var(--gold); }
.pack-body p { font-size: 0.95rem; color: #B3A88F; margin: 0; }

.pack-single-media { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; }
.pack-single-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Contact ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact-list a {
	display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
	background: var(--white); border: 1px solid var(--champagne); border-radius: var(--radius);
	padding: 19px 24px; text-decoration: none;
}
.contact-list a:hover { border-color: var(--gold); }
.contact-k {
	font-family: var(--font-body); font-weight: 500;
	text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.16em;
	color: var(--gold-deep);
}
.contact-v { color: var(--ink); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--noir); color: #9A8F78; padding: 60px 0 44px;
	border-top: 1px solid rgba(198,161,76,.3);
}
.footer-inner { display: grid; gap: 20px; }
.footer-brand .brand-name { font-size: 1.2rem; color: var(--cream); }
.footer-menu ul { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; }
.footer-menu a {
	color: #CFC5B2; text-decoration: none; font-size: 0.85rem;
	letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-menu a:hover { color: var(--gold); }
.footer-note { font-size: 0.85rem; margin: 0; }

/* ---------- Generic entries ---------- */
.entry-title { margin-top: 0; }
.archive-header { margin-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.grid-2 { grid-template-columns: 1fr; gap: 36px; }
	.dest-grid, .steps, .pack-grid { grid-template-columns: 1fr 1fr; }
	.svc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.section { padding: 64px 0; }
	.dest-grid, .steps, .pack-grid, .svc-grid { grid-template-columns: 1fr; }
	.season-track { grid-template-columns: 1fr; }

	.nav-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 44px; height: 44px;
		background: transparent; border: 1px solid rgba(198,161,76,.5); border-radius: 4px;
		cursor: pointer;
	}
	.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
		content: ""; display: block; width: 20px; height: 2px; background: var(--champagne); position: relative;
	}
	.nav-toggle-bar::before { position: absolute; top: -6px; }
	.nav-toggle-bar::after { position: absolute; top: 6px; }

	.header-nav {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--noir);
		flex-direction: column; align-items: flex-start;
		padding: 20px 24px 28px; gap: 18px;
		border-bottom: 1px solid rgba(198,161,76,.3);
	}
	.header-nav.is-open { display: flex; }
	.primary-menu ul { flex-direction: column; gap: 14px; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Rates ---------- */
.rate-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
	max-width: 760px; margin: 16px 0 20px;
}
.rate-card {
	background: var(--white);
	border: 1px solid var(--champagne);
	border-top: 3px solid var(--gold);
	border-radius: var(--radius);
	padding: 30px 28px;
	text-align: center;
}
.rate-card h3 { margin-bottom: 2px; }
.rate-who {
	font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--gold-deep); margin-bottom: 10px;
}
.rate-price {
	font-family: var(--font-display);
	font-weight: 700; font-size: 2.8rem; line-height: 1;
	color: var(--noir); margin-bottom: 8px;
}
.rate-times { font-size: 0.88rem; color: var(--ink); margin: 0; }
.rate-note { font-size: 0.85rem; color: #8A8172; margin-bottom: 24px; }
@media (max-width: 720px) {
	.rate-grid { grid-template-columns: 1fr; }
}

/* ---------- Full-card click target for packages ---------- */
.pack-card { position: relative; transition: border-color .15s ease, transform .15s ease; }
.pack-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.pack-body h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* =========================================================
   Editable homepage (Gutenberg blocks) compatibility
   ========================================================= */
.front-editable > .wp-block-group { margin: 0; }
.front-editable .wp-block-group.section > .wrap { padding-left: 24px; padding-right: 24px; }

/* Hero as Cover block */
.wp-block-cover.hero-edit {
	padding: clamp(90px, 15vh, 160px) 24px;
	background: var(--noir);
}
.hero-edit .wp-block-cover__inner-container { max-width: var(--wrap); margin: 0 auto; }
.hero-edit .eyebrow { color: var(--gold); }
.hero-edit h1 { color: var(--cream); max-width: 14ch; }
.hero-edit p { color: #DDD4C2; font-size: 1.12rem; max-width: 48ch; }
.hero-edit p.eyebrow { font-size: 1.75rem; max-width: none; }

/* Buttons (core button block, add class btn-gold / btn-line) */
.wp-block-button.btn-gold .wp-block-button__link {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
	color: var(--noir); font-family: var(--font-body);
	font-weight: 600; font-size: 0.88rem;
	letter-spacing: 0.14em; text-transform: uppercase;
	padding: 15px 30px; border-radius: 3px;
}
.wp-block-button.btn-gold .wp-block-button__link:hover { background: var(--champagne); }
.wp-block-button.btn-line .wp-block-button__link {
	background: transparent; border: 1px solid var(--champagne); color: var(--champagne);
	font-weight: 500; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase;
	padding: 15px 30px; border-radius: 3px;
}
.section-dark .wp-block-button.btn-gold .wp-block-button__link { color: var(--noir); }

/* Season band paragraphs */
.season-seg p { margin: 0; }

/* Destination / service cards built with blocks */
.dest-card .wp-block-image, .dest-card figure { margin: 0; }
.dest-card .wp-block-image img { height: 160px; width: 100%; object-fit: cover; }
.pack-single-media img { width: 100%; }

/* Credentials & contact lists as list blocks */
ul.cred-list, ul.contact-list { list-style: none; padding: 0; }

/* Group used as grid keeps the theme grid classes (dest-grid, svc-grid, rate-grid, steps already styled) */
.front-editable .steps { list-style: none; }

/* Shortcode packages grid inside dark section inherits styles already */

/* =========================================================
   v2.4.1 — fixes for the editable homepage
   ========================================================= */

/* 1) Side padding: content was touching screen edges (critical on mobile) */
.front-editable > .wp-block-group,
.front-editable > .wp-block-group.section {
	padding-left: 24px;
	padding-right: 24px;
}
.front-editable > .wp-block-group.section { padding-top: 88px; padding-bottom: 88px; }
.front-editable > .wp-block-group.season-band { padding-top: 8px; padding-bottom: 64px; }

/* 2) Kill WordPress's uniform 24px block-gap inside sections;
      restore the theme's own vertical rhythm */
.front-editable .is-layout-constrained > * + * { margin-block-start: 0; }
.front-editable .is-layout-flow > * + * { margin-block-start: 0; }
.front-editable .eyebrow { margin-bottom: 0.6rem; }
.front-editable h2 { margin-bottom: 0.5em; }
.front-editable .dest-grid,
.front-editable .svc-grid { margin-top: 16px; }
.front-editable .rate-grid { margin-top: 16px; margin-bottom: 20px; }
.front-editable .pack-grid { margin-top: 32px; margin-bottom: 40px; }
.front-editable .wp-block-buttons { margin-top: 1.6rem; }
.front-editable .season-claim { margin-bottom: 18px; }
.front-editable .wp-block-columns { gap: 48px; }

/* 3) Dark section: solid color fallback under the gradient */
.section-dark { background-color: var(--noir); }

/* 4) Hero cover: keep content lower-left like the original design */
.wp-block-cover.hero-edit { align-items: flex-end; }
.hero-edit .wp-block-cover__inner-container { padding-bottom: 3rem; }
.hero-edit h1 { margin-bottom: 0.35em; }
.hero-edit .wp-block-buttons { margin-top: 2rem; }

/* 5) Season segments: compact like the original */
.front-editable .season-seg { gap: 2px; }
.front-editable .season-seg p { margin: 0; line-height: 1.4; }

/* 6) Cards: no stray margins from block wrappers */
.dest-card > *:last-child, .svc-card > *:last-child, .rate-card > *:last-child { margin-bottom: 0; }
.dest-card h3 { margin-top: 18px; }

/* =========================================================
   v2.4.2 — CRITICAL FIX: classic themes wrap group blocks in
   .wp-block-group__inner-container, breaking CSS grids (all
   cards stacked in first column). display:contents makes the
   wrapper transparent so cards become direct grid children.
   ========================================================= */
.dest-grid > .wp-block-group__inner-container,
.svc-grid > .wp-block-group__inner-container,
.rate-grid > .wp-block-group__inner-container,
.pack-grid > .wp-block-group__inner-container,
.season-track > .wp-block-group__inner-container {
	display: contents;
}
/* Sections and cards keep their wrappers but inherit spacing correctly */
.front-editable .wp-block-group__inner-container.is-layout-constrained > * + *,
.front-editable .wp-block-group__inner-container.is-layout-flow > * + * {
	margin-block-start: 0;
}

/* =========================================================
   v2.4.3 — spacing normalization + 50/50 season track
   ========================================================= */

/* Season track: both winters same width */
.season-track { grid-template-columns: 1fr 1fr; }

/* Tighter, consistent vertical rhythm between sections */
.front-editable > .wp-block-group.section {
	padding-top: 36px;
	padding-bottom: 36px;
}
.front-editable > .wp-block-group.season-band {
	padding-top: 12px;
	padding-bottom: 36px;
}
/* Cover hero: trim excess bottom space */
.hero-edit .wp-block-cover__inner-container { padding-bottom: 1.5rem; }
.wp-block-cover.hero-edit { padding-top: 70px; padding-bottom: 56px; min-height: 60vh; }

/* Headings sit closer to their section start */
.front-editable .eyebrow { margin-top: 0; }

/* Mobile: slightly tighter still */
@media (max-width: 720px) {
	.front-editable > .wp-block-group.section { padding-top: 28px; padding-bottom: 28px; }
	.front-editable > .wp-block-group.season-band { padding-bottom: 28px; }
	.season-track { grid-template-columns: 1fr; }
}

/* =========================================================
   v2.4.4 — outline button for light sections (contact)
   ========================================================= */
.wp-block-button.btn-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--noir);
	color: var(--noir);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.88rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 15px 30px;
	border-radius: 3px;
}
.wp-block-button.btn-outline .wp-block-button__link:hover {
	border-color: var(--gold-deep);
	color: var(--gold-deep);
}
/* Vertical button stacks fill their column */
.contact .wp-block-buttons.is-vertical > .wp-block-button,
.contact .wp-block-buttons.is-vertical .wp-block-button__link {
	width: 100%;
	text-align: center;
}
