/*
 * WPistic components — PDF-driven design system pieces.
 * Loaded after style.css; both themed via tokens.css (light default / navy dark).
 * Content stays brand-safe: no fabricated review counts/stars, no company-wide guest numbers.
 */

/* ===== STAT BAND (Warm Sand) — brand-safe facts only ===== */
.stat-band { background: var(--bg-raise); border-block: 1px solid var(--rule); }
.stat-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; padding-block: 30px; }
.stat { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.stat-num { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: var(--ink); line-height: 1; }
.stat-num em { font-style: italic; color: var(--gold-accent); }
.stat-label { font-family: var(--mono); font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted); }
.stat + .stat { position: relative; }

/* ===== CHIP / FILTER ROW ===== */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
	font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
	color: var(--ink-soft); background: transparent; border: 1px solid var(--rule-strong); border-radius: 100px;
	padding: 9px 18px; cursor: pointer; transition: all .25s; min-height: 38px; display: inline-flex; align-items: center;
}
.chip:hover { border-color: var(--gold); color: var(--gold-ink); }
.chip.active { background: var(--surface-dark); color: var(--on-dark); border-color: var(--surface-dark); }
.journal-cats { margin-bottom: 40px; }

/* ===== TAGS (small descriptors) ===== */
.tag {
	font-family: var(--mono); font-size: .54rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
	color: var(--green); background: color-mix(in srgb, var(--green) 12%, transparent); border-radius: 3px; padding: 4px 9px;
}
.tag.gold { color: var(--gold-deep); background: color-mix(in srgb, var(--gold) 16%, transparent); }
.tag.navy { color: var(--on-dark); background: var(--surface-dark); }

/* ===== EDITORIAL TOUR CARD ===== */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.tour-card {
	background: var(--bg-card); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
	display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--rule-strong); }
.tc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; display: block; background: var(--surface-dark); }
.tc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tour-card:hover .tc-media img { transform: scale(1.06); }
.tc-media-fallback { position: absolute; inset: 0; background: linear-gradient(155deg, var(--green), var(--surface-dark)); }
.tc-media-fallback.clay { background: linear-gradient(155deg, var(--clay), var(--gold-deep)); }
.tc-media-fallback.navy { background: linear-gradient(155deg, var(--surface-dark), var(--green)); }
.tc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,22,38,.1) 0%, rgba(8,22,38,.55) 100%); }
.tc-region { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--mono); font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark); text-shadow: 0 1px 4px rgba(8, 22, 38, .7); }
.tc-badge { position: absolute; top: 12px; right: 12px; z-index: 2; font-family: var(--mono); font-size: .56rem; font-weight: 700; letter-spacing: .08em; color: var(--surface-dark); background: var(--gold-soft); padding: 4px 9px; border-radius: 3px; }
.tc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tc-title { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); line-height: 1.15; margin-bottom: 6px; }
.tc-title em { font-style: italic; color: var(--gold-accent); }
.tc-meta { font-family: var(--mono); font-size: .6rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tc-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.tc-blurb { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.tc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tc-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; padding-top: 16px; border-top: 1px solid var(--rule); }
.tc-price { display: flex; flex-direction: column; gap: 2px; }
.tc-price .from { font-family: var(--mono); font-size: .54rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }
.tc-price .val { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.tc-price .note { font-family: var(--mono); font-size: .52rem; letter-spacing: .04em; color: var(--ink-muted); }
.tc-actions { display: flex; gap: 8px; align-items: center; }

/* ===== DESTINATION / REGION CARDS ===== */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dest-card {
	position: relative; min-height: 320px; border-radius: var(--radius); overflow: hidden;
	display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 24px; color: var(--on-dark);
	background: var(--surface-dark);
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dest-card:hover img { transform: scale(1.05); }
.dest-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,22,38,.15) 0%, rgba(8,22,38,.82) 100%); transition: opacity .3s; }
.dest-card > * { position: relative; z-index: 2; }
.dest-tag { font-family: var(--mono); font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px; }
.dest-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--on-dark); margin-bottom: 6px; line-height: 1.1; }
.dest-desc { font-size: 14px; color: var(--on-dark-soft); line-height: 1.55; margin-bottom: 14px; }
.dest-link { font-family: var(--mono); font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); display: inline-flex; align-items: center; gap: 7px; }
.dest-card:hover .dest-link .arr { transform: translateX(4px); }
.dest-link .arr { transition: transform .3s var(--ease); }

/* ===== WHY (philosophy) ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.why-card { background: var(--bg-card); padding: 40px 34px; position: relative; overflow: hidden; transition: background .25s; }
.why-card:hover { background: var(--bg-raise); }
.why-card-ghost { font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .16em; color: var(--gold); margin-bottom: 16px; display: block; }
.why-card-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.18; }
.why-card-title em { font-style: italic; color: var(--gold-accent); }
.why-card-body { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.why-statement { font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); font-weight: 500; font-style: italic; color: var(--ink); line-height: 1.35; max-width: 820px; margin: 52px auto 0; text-align: center; }
.why-statement em { color: var(--gold-accent); }
.section-navy .why-statement, .section-navy .why-statement em { color: var(--on-dark); }
.section-navy .why-card { background: color-mix(in srgb, var(--on-dark) 5%, transparent); }
.section-navy .why-card:hover { background: color-mix(in srgb, var(--on-dark) 9%, transparent); }
.section-navy .why-card-title { color: var(--on-dark); }
.section-navy .why-card-body { color: var(--on-dark-soft); }
.section-navy .why-statement { color: var(--on-dark); }

/* ===== FOUNDER ===== */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 72px; align-items: center; }
.founder-img-wrap { position: relative; }
.founder-portrait { width: 100%; aspect-ratio: 3 / 4; background: var(--bg-card); position: relative; overflow: hidden; border-radius: var(--radius); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-portrait-fill { position: absolute; inset: 0; background: linear-gradient(160deg, var(--green) 0%, var(--surface-dark) 60%, var(--green-bright) 100%); display: flex; align-items: center; justify-content: center; }
.founder-initials { font-family: var(--serif); font-size: 74px; font-weight: 500; color: rgba(244,236,221,.22); letter-spacing: 8px; }
.founder-cap { position: absolute; left: 18px; bottom: 18px; right: 18px; background: var(--bg-card); padding: 14px 16px; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.founder-cap-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.founder-cap-role { font-family: var(--mono); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-top: 3px; }
.founder-corner-tl, .founder-corner-br { position: absolute; width: 64px; height: 64px; pointer-events: none; z-index: 3; }
.founder-corner-tl { top: -14px; left: -14px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: .6; }
.founder-corner-br { bottom: -14px; right: -14px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: .6; }
.founder-pull { font-family: var(--serif); font-size: clamp(24px, 3.2vw, 36px); font-weight: 500; line-height: 1.25; color: var(--ink); margin-bottom: 24px; }
.founder-pull em { font-style: italic; color: var(--gold-accent); }
.founder-body { font-size: 16px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 16px; }
.founder-cred { border-left: 2px solid var(--gold); padding-left: 18px; margin: 26px 0; font-family: var(--mono); font-size: .66rem; letter-spacing: .04em; color: var(--ink-muted); line-height: 1.9; }
.founder-signature { font-family: var(--script); font-size: 2.4rem; color: var(--gold-accent); margin-top: 6px; }

/* ===== REVIEWS (no counts, no stars, no AggregateRating) ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--bg-card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; }
.review-quote { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 18px; }
.review-attr { margin-top: auto; font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .08em; color: var(--gold-ink); display: flex; align-items: center; gap: 8px; }
.review-attr::before { content: '—'; color: var(--ink-muted); }
.review-meta { font-family: var(--mono); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-top: 4px; }
.reviews-links { display: flex; gap: 14px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.reviews-embed { margin: 0 auto 28px; }

/* ===== JOURNAL TEASERS ===== */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.journal-card { display: flex; flex-direction: column; }
.journal-thumb { aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-dark); margin-bottom: 18px; border-radius: var(--radius); }
.journal-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.journal-card:hover .journal-thumb img { transform: scale(1.05); }
.journal-cat { font-family: var(--mono); font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 10px; }
.journal-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.22; margin-bottom: 8px; }
.journal-card:hover .journal-title { color: var(--gold); }
.journal-meta { font-family: var(--mono); font-size: .58rem; letter-spacing: .06em; color: var(--ink-muted); margin-top: auto; }

/* ===== FINAL CTA (navy, per PDF "Invitation") ===== */
.final { padding: 116px 0; text-align: center; background: var(--surface-dark); color: var(--on-dark); position: relative; overflow: hidden; z-index: 1; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; background:
	radial-gradient(800px 500px at 50% -10%, rgba(47,93,80,.4), transparent 60%),
	repeating-linear-gradient(45deg, rgba(244,236,221,.02) 0 1px, transparent 1px 52px); }
.final > .wrap { position: relative; z-index: 1; }
.final .eyebrow { justify-content: center; color: var(--gold-soft); margin-bottom: 18px; }
.final-h2 { font-family: var(--serif); font-size: calc(clamp(30px, 5vw, 56px) * var(--display-scale, 1)); font-weight: 500; color: var(--on-dark); line-height: 1.08; margin-bottom: 16px; }
.final-h2 em { font-style: italic; color: var(--gold-soft); }
.final-sub { font-size: 16px; color: var(--on-dark-soft); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== MOBILE APP BAR (bottom tab bar — "app view" feel) ===== */
.app-bar { display: none; }
.app-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
	background: color-mix(in srgb, var(--surface-dark) 96%, transparent);
	-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	border-top: 1px solid var(--rule-on-dark);
	padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
	grid-template-columns: repeat(4, 1fr);
}
.app-bar a {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 7px 4px; min-height: 48px;
	font-family: var(--mono); font-size: .54rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
	color: var(--on-dark-soft);
}
.app-bar a.is-current, .app-bar a:hover { color: var(--gold-soft); }
.app-bar a.is-current { position: relative; }
.app-bar a.is-current::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 22px; height: 2px; border-radius: 2px; background: var(--gold-soft); }
.app-bar a.app-cta { color: var(--gold-soft); }
.app-bar a.app-cta svg { background: var(--gold); color: var(--surface-dark); border-radius: 50%; padding: 4px; width: 30px; height: 30px; margin-top: -2px; }
.app-bar svg { width: 21px; height: 21px; }

@media (max-width: 920px) {
	.tour-grid, .tour-grid.cols-2 { grid-template-columns: 1fr 1fr; }
	.dest-grid { grid-template-columns: 1fr 1fr; }
	.why-grid, .reviews-grid, .journal-grid { grid-template-columns: 1fr; }
	.founder-grid { grid-template-columns: 1fr; gap: 44px; }
	.app-bar { display: grid; }
	body { padding-bottom: 64px; } /* clear the app bar */
}
@media (max-width: 600px) {
	.tour-grid, .tour-grid.cols-2, .dest-grid { grid-template-columns: 1fr; }
	.stat-band .wrap { gap: 18px; }
	.stat { min-width: calc(50% - 9px); }
	.final-btns { flex-direction: column; align-items: stretch; }
}

/* ===== TOUR ARCHIVE — toolbar, refine sidebar, journey-of-the-month ===== */
.tours-toolbar { background: var(--bg-raise); border-bottom: 1px solid var(--rule); }
.tours-toolbar .wrap { display: grid; grid-template-columns: repeat(6, 1fr) auto; gap: 14px; align-items: end; padding-block: 22px; }
.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field label { font-family: var(--mono); font-size: .54rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.filter-field select { width: 100%; padding: 11px 34px 11px 12px; background: var(--bg); border: 1px solid var(--rule-strong); border-radius: var(--radius); font-family: var(--body); font-size: 13.5px; color: var(--ink); appearance: none; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%238A6A2C' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.filter-field select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent); }
.tours-toolbar .btn { min-height: 44px; }

.tools-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--mono); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.active-filters .af { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-raise); border: 1px solid var(--rule-strong); border-radius: 100px; padding: 6px 6px 6px 13px; color: var(--ink-soft); }
.active-filters .af button { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 1.1em; line-height: 1; min-width: 24px; min-height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; padding: 0; }
.active-filters .af button:hover { color: var(--clay); background: color-mix(in srgb, var(--clay) 12%, transparent); }
.active-filters .clear { color: var(--gold-deep); text-decoration: underline; }
.tools-meta { display: flex; align-items: center; gap: 18px; font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; color: var(--ink-muted); }
.tools-meta strong { color: var(--ink); font-weight: 600; }

.archive-layout { display: grid; grid-template-columns: 262px 1fr; gap: 48px; align-items: start; }
.refine { position: sticky; top: 120px; }
.refine-group { padding: 0 0 22px; margin: 0 0 22px; border-bottom: 1px solid var(--rule); }
.refine-group:last-of-type { border-bottom: none; }
.refine-title { font-family: var(--mono); font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.refine-opt { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.refine-opt input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.match-card { background: var(--surface-dark); color: var(--on-dark); border-radius: var(--radius); padding: 22px 20px; }
.match-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--on-dark); margin-bottom: 8px; }
.match-card p { font-size: 13.5px; color: var(--on-dark-soft); line-height: 1.6; margin-bottom: 16px; }
.match-card .btn { width: 100%; justify-content: center; }

.jom { background: var(--surface-dark); color: var(--on-dark); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; overflow: hidden; }
.jom::before { content: ''; position: absolute; inset: 0; background: radial-gradient(620px 320px at 92% 0%, rgba(47,93,80,.5), transparent 62%); pointer-events: none; }
.jom > * { position: relative; z-index: 1; }
.jom-eyebrow { font-family: var(--mono); font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; }
.jom-title { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: var(--on-dark); margin-bottom: 6px; }
.jom-meta { font-size: 14px; color: var(--on-dark-soft); }
.jom .btn { flex-shrink: 0; }

@media (max-width: 960px) {
	.archive-layout { grid-template-columns: 1fr; gap: 32px; }
	.refine { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
	.refine .match-card { grid-column: 1 / -1; }
	.tours-toolbar .wrap { grid-template-columns: 1fr 1fr; }
	.tours-toolbar .btn { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.refine { grid-template-columns: 1fr; }
	.jom { flex-direction: column; align-items: flex-start; }
	.tools-row { flex-direction: column; align-items: flex-start; }
}

/* ===== DESTINATION — region at a glance + best places ===== */
.region-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.glance-card { background: var(--bg-raise); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px 26px; position: sticky; top: 120px; }
.glance-card h3 { font-family: var(--mono); font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 18px; }
.glance-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.glance-row:last-child { border-bottom: none; }
.glance-row .k { color: var(--ink-muted); font-family: var(--mono); font-size: .6rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.glance-row .v { color: var(--ink); font-family: var(--serif); font-size: 15px; font-weight: 600; text-align: right; }

.places-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.places-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.place-card { display: flex; flex-direction: column; }
.place-media { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--surface-dark); margin-bottom: 14px; }
.place-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.place-card:hover .place-media img { transform: scale(1.05); }
.place-media-fallback { width: 100%; height: 100%; display: block; background: linear-gradient(155deg, var(--green), var(--surface-dark)); }
.place-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.place-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* ===== SERVICES — landing grid + service detail ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--bg-card); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-dark); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-eyebrow { font-family: var(--mono); font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 8px; }
.service-title { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.service-blurb { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.service-card .btn-link { margin-top: auto; align-self: flex-start; }

/* numbered steps (what's included / what we do) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--bg-card); padding: 30px 28px; }
.step-num { font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .1em; color: var(--gold-ink); margin-bottom: 14px; }
.step-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step-body { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* process (horizontal numbered flow) */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { text-align: center; position: relative; }
.process-num { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 50%; border: 1px solid var(--gold-deep); color: var(--gold-ink); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; font-size: .9rem; background: var(--bg); position: relative; z-index: 1; }
.process-step h3 { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 23px; left: calc(50% + 30px); right: calc(-50% + 30px); height: 1px; background: var(--rule-strong); }

/* pricing table */
.pricing-table { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--rule); background: var(--bg-card); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .name { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.pricing-row .amt { font-family: var(--mono); font-size: .82rem; font-weight: 600; color: var(--gold-ink); white-space: nowrap; }

/* facts strip (small key facts on dark masthead) */
.facts { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-soft); }
.facts span { display: inline-flex; align-items: center; gap: 20px; }
.facts span + span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); }

@media (max-width: 960px) {
	.region-layout { grid-template-columns: 1fr; gap: 36px; }
	.glance-card { position: static; }
	.places-grid { grid-template-columns: repeat(2, 1fr); }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.steps-grid { grid-template-columns: 1fr 1fr; }
	.process { grid-template-columns: 1fr 1fr; gap: 28px; }
	.process-step::after { display: none; }
}
@media (max-width: 600px) {
	.places-grid, .services-grid, .steps-grid, .process { grid-template-columns: 1fr; }
}

/* ===== SUSTAINABILITY — pillars ===== */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar { background: var(--bg-card); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.pillar-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-dark); }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; }
.pillar-body { padding: 28px 28px 30px; }
.pillar-eyebrow { font-family: var(--mono); font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 10px; }
.pillar-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.pillar-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.pillar-stats { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: .64rem; letter-spacing: .04em; color: var(--ink-muted); border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 16px; }
.pillar-stats span strong { color: var(--ink); font-weight: 600; }

/* ===== JOURNAL — featured article + category chips ===== */
.journal-featured { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--bg-card); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; margin-bottom: 44px; }
.jf-media { position: relative; min-height: 340px; background: var(--surface-dark); display: block; }
.jf-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jf-body { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
.jf-cat { font-family: var(--mono); font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 14px; }
.jf-title { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 600; color: var(--ink); line-height: 1.12; margin-bottom: 14px; }
.jf-title em { font-style: italic; color: var(--gold-accent); }
.jf-excerpt { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; }
.jf-meta { font-family: var(--mono); font-size: .6rem; letter-spacing: .06em; color: var(--ink-muted); margin-bottom: 22px; }

/* ===== ABOUT — manifesto ===== */
.manifesto-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.manifesto-item:last-child { border-bottom: none; }
.manifesto-num { font-family: var(--mono); font-size: .7rem; font-weight: 700; color: var(--gold-ink); flex-shrink: 0; padding-top: 5px; }
.manifesto-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.manifesto-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

@media (max-width: 860px) {
	.pillars { grid-template-columns: 1fr; }
	.journal-featured { grid-template-columns: 1fr; }
	.jf-media { min-height: 240px; }
}

/* ===== HOMEPAGE V2 — Asymmetric Story-Led ===== */
.hero-v2 { background: var(--bg); padding: 150px 0 84px; position: relative; }
.hero-v2 .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-v2-content .eyebrow { margin-bottom: 22px; }
.hero-v2-h1 { font-family: var(--serif); font-size: calc(clamp(42px, 6vw, 78px) * var(--display-scale, 1)); font-weight: 500; line-height: 1.02; color: var(--ink); margin-bottom: 18px; }
.hero-v2-h1 em { font-style: italic; color: var(--gold-accent); }
.hero-v2-lede { font-family: var(--serif); font-size: clamp(18px, 2vw, 23px); font-style: italic; color: var(--ink-soft); margin-bottom: 14px; }
.hero-v2-sub { font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 480px; margin-bottom: 28px; }
.hero-v2-stats { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.hero-v2-stat .n { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); display: block; }
.hero-v2-stat .l { font-family: var(--mono); font-size: .54rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.hero-v2-media { position: relative; }
.hero-v2-main { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--surface-dark); }
.hero-v2-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-v2-coords { position: absolute; top: 16px; right: 16px; font-family: var(--coord); font-size: .58rem; letter-spacing: .08em; color: var(--on-dark); background: rgba(8, 22, 38, .82); padding: 5px 10px; border-radius: 3px; text-shadow: 0 1px 3px rgba(8, 22, 38, .7); }
.hero-v2-media .hero-host { position: absolute; left: -28px; bottom: 28px; right: auto; width: 208px; }

.letter { background: var(--surface-dark); color: var(--on-dark); }
.letter .wrap { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 56px; align-items: center; }
.letter-portrait { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: linear-gradient(155deg, var(--clay), var(--gold-deep)); }
.letter-portrait img { width: 100%; height: 100%; object-fit: cover; }
.letter .eyebrow { color: var(--gold-soft); margin-bottom: 16px; }
.letter-quote { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-style: italic; line-height: 1.3; color: var(--on-dark); margin-bottom: 20px; }
.letter-quote em { color: var(--gold-soft); }
.letter-body { font-size: 16px; color: var(--on-dark-soft); line-height: 1.8; margin-bottom: 12px; }
.letter-sign { font-family: var(--script); font-size: 2rem; color: var(--gold-soft); margin-top: 14px; }

/* ===== HOMEPAGE V3 — Magazine Spread ===== */
.mag-hero { background: var(--surface-dark); color: var(--on-dark); padding: 124px 0 72px; position: relative; isolation: isolate; }
.mag-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(900px 600px at 85% 10%, rgba(47,93,80,.4), transparent 60%); }
.mag-topline { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-bottom: 1px solid var(--rule-on-dark); padding-bottom: 16px; margin-bottom: 44px; font-family: var(--mono); font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.mag-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: end; }
.mag-h1 { font-family: var(--serif); font-size: calc(clamp(46px, 7vw, 92px) * var(--display-scale, 1)); font-weight: 500; line-height: 1; color: var(--on-dark); margin-bottom: 16px; }
.mag-h1 em { font-style: italic; color: var(--gold-soft); }
.mag-lede { font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); font-style: italic; color: var(--on-dark-soft); margin-bottom: 26px; }
.mag-cover { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--surface-dark-2); }
.mag-cover img { width: 100%; height: 100%; object-fit: cover; }
.mag-stats { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.mag-stat .n { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--gold-soft); display: block; }
.mag-stat .l { font-family: var(--mono); font-size: .54rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-soft); }

.mag-feature { display: grid; grid-template-columns: 1.35fr 1fr; gap: 30px; align-items: start; }
.mag-feature-side { display: grid; gap: 22px; }
.mag-reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 0 52px; }

@media (max-width: 920px) {
	.hero-v2 .wrap { grid-template-columns: 1fr; gap: 48px; }
	.hero-v2-media { max-width: 460px; }
	.hero-v2-media .hero-host { display: block; left: auto; right: 0; bottom: 14px; width: 184px; }
	.letter .wrap { grid-template-columns: 1fr; gap: 36px; }
	.letter-portrait { max-width: 320px; }
	.mag-grid { grid-template-columns: 1fr; gap: 36px; }
	.mag-cover { max-width: 420px; }
	.mag-feature { grid-template-columns: 1fr; }
	.mag-reasons { grid-template-columns: 1fr; }
}
