/* ============================================================
   YoNihon — main stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-red); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { color: var(--c-ink); font-weight: 700; margin: 0 0 .5em; letter-spacing: -.01em; line-height: 1.15; }
h1 { font-size: var(--fs-4xl); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: var(--fs-3xl); font-weight: 800; letter-spacing: -.02em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; margin: 0 0 1em; }

/* Reset list bullets inside navs and lists rendered by wp_nav_menu */
nav ul, nav ol,
.primary-nav ul, .primary-nav ol,
.mobile-nav ul, .mobile-nav ol,
.footer-list,
.icon-list,
.sidebar-list { list-style: none; padding: 0; margin: 0; }
nav li, .primary-nav li, .mobile-nav li, .footer-list li { list-style: none; }
nav li::marker, .primary-nav li::marker, .mobile-nav li::marker { content: ''; }

html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link { position: absolute; top: -40px; left: 0; background: var(--c-red); color: #fff; padding: 8px 12px; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ----------------------------- Layout helpers */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; box-sizing: border-box; }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--space-8) 0; width: 100%; box-sizing: border-box; }
.site-content { width: 100%; display: block; }
.section--soft { background: var(--c-bg-soft); }
.section--warm { background: var(--c-bg-warm); }
.section--grey { background: var(--c-bg-grey); }
.section--tight { padding: var(--space-7) 0; }
.section--last { padding-bottom: var(--space-9); }

.eyebrow {
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--c-red);
	margin-bottom: 10px;
}

.section-head { text-align: center; margin-bottom: var(--space-7); }
.section-head h2 { margin: 0 0 12px; }
.section-head p { color: var(--c-muted); max-width: 640px; margin: 0 auto; }
.section-head--left { text-align: left; }
.section-head--row {
	display: flex; align-items: end; justify-content: space-between;
	flex-wrap: wrap; gap: var(--space-4);
	margin-bottom: var(--space-7);
}
.section-head--row h2 { margin: 0; font-size: var(--fs-2xl); }
.section-head--row .view-all { color: var(--c-red); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ----------------------------- Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 26px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: var(--fs-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
	white-space: nowrap;
}
.btn--solid { background: var(--c-red); color: #fff; }
.btn--solid:hover { background: var(--c-red-700); color: #fff; transform: translateY(-1px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--ink { background: var(--c-ink); color: #fff; }
.btn--ink:hover { background: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-border); }
.btn--ghost:hover { border-color: var(--c-red); color: var(--c-red); }
.btn--lg { padding: 16px 32px; font-size: var(--fs-base); }
.btn--sm { padding: 10px 18px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* ----------------------------- Icons */
.icon { display: inline-flex; width: 18px; height: 18px; flex: none; }
.icon svg { width: 100%; height: 100%; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 40px; height: 40px; }

/* ----------------------------- Header */
.site-header {
	position: sticky; top: 0; z-index: 90;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--c-border); }
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	min-height: var(--header-h);
	gap: 12px;
	flex-wrap: nowrap;
}
.site-brand {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 800; font-size: 16px; color: var(--c-ink);
	letter-spacing: -.02em;
	white-space: nowrap;
	flex: 0 1 auto;
	min-width: 0;
}
.site-brand__name { overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
@media (min-width: 881px) { .site-brand { font-size: var(--fs-lg); } .site-brand__name { max-width: none; } }
.site-brand__dot { width: 10px; height: 10px; background: var(--c-red); border-radius: 50%; }
.site-brand img { max-height: 36px; width: auto; }

/* Primary nav — MOBILE-FIRST: hidden by default, shown on desktop only */
.primary-nav { display: none; }
.primary-nav li { list-style: none; }
.primary-nav a {
	font-size: var(--fs-sm); font-weight: 500; color: var(--c-ink);
	padding: 6px 0; position: relative; white-space: nowrap;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--c-red); }
.primary-nav .current-menu-item > a::after,
.primary-nav a:hover::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
	height: 2px; background: var(--c-red); border-radius: 2px;
}
@media (min-width: 881px) {
	.primary-nav { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; }
}
@media (min-width: 1180px) {
	.primary-nav { gap: 28px; }
}

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.header-cta { display: none; }
@media (min-width: 881px) { .header-cta { display: inline-flex; } }
.lang-switch {
	display: inline-flex; gap: 0; border: 1px solid var(--c-border);
	border-radius: var(--radius-pill); padding: 3px; font-size: var(--fs-xs); font-weight: 600;
}
.lang-switch a {
	padding: 4px 10px; border-radius: var(--radius-pill); color: var(--c-muted);
}
.lang-switch a.is-active { background: var(--c-ink); color: #fff; }

/* Hamburger — MOBILE-FIRST: shown by default, hidden on desktop */
.nav-toggle {
	display: inline-flex; background: none; border: 0; color: var(--c-ink);
	width: 44px; height: 44px; align-items: center; justify-content: center;
	border-radius: var(--radius-sm);
	cursor: pointer;
	position: relative;
	z-index: 110;
}
.nav-toggle:hover { background: var(--c-bg-grey); }
.nav-toggle .icon { width: 24px; height: 24px; pointer-events: none; }
.nav-toggle__close { display: none; }
body.nav-open .nav-toggle__open  { display: none; }
body.nav-open .nav-toggle__close { display: inline-flex; }
@media (min-width: 881px) { .nav-toggle { display: none; } }

/* ────────────────────────────────────────────────────────
   Mobile menu — true full-screen overlay
   Activated by body.nav-open (toggled from .nav-toggle button)
   ──────────────────────────────────────────────────────── */

/* Scrim behind the drawer — closes on tap */
.mobile-nav-scrim {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	border: 0;
	padding: 0;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 200ms var(--ease), visibility 0s 200ms;
	cursor: pointer;
}
body.nav-open .mobile-nav-scrim {
	opacity: 1;
	visibility: visible;
	transition: opacity 200ms var(--ease), visibility 0s 0s;
}
@media (min-width: 881px) {
	.mobile-nav-scrim { display: none !important; }
}

.mobile-nav {
	position: fixed;
	inset: 0;                            /* full viewport: top/right/bottom/left = 0 */
	background: #fff;
	z-index: 9999;                       /* above everything (header is z-index 90) */
	display: flex;
	flex-direction: column;
	overflow: hidden;                    /* the inner pane scrolls, not this */
	box-sizing: border-box;
	transform: translateX(100%);
	transition: transform 300ms var(--ease), visibility 0s 300ms;
	visibility: hidden;
	-webkit-overflow-scrolling: touch;
	width: 100vw;
	height: 100vh;
	height: 100dvh;                      /* dynamic viewport — accounts for mobile URL bar */
}
body.nav-open .mobile-nav {
	transform: translateX(0);
	visibility: visible;
	transition: transform 300ms var(--ease), visibility 0s 0s;
}

/* Lock body scroll while open. position:fixed trick keeps iOS Safari from scrolling background. */
body.nav-open {
	overflow: hidden !important;
	position: fixed;
	width: 100%;
	height: 100%;
	touch-action: none;
}

/* Internal header strip inside the drawer (brand + close) */
.mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-h);
	padding: 12px 20px;
	border-bottom: 1px solid var(--c-border-soft);
	background: #fff;
	flex: 0 0 auto;
}
.mobile-nav__head .site-brand { font-size: 18px; }
.mobile-nav__close {
	width: 44px; height: 44px;
	background: var(--c-bg-grey);
	border: 0; border-radius: var(--radius-sm);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--c-ink);
	cursor: pointer;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mobile-nav__close:hover { background: var(--c-red-50); color: var(--c-red); }
.mobile-nav__close .icon { width: 22px; height: 22px; pointer-events: none; }

/* Scrollable content pane */
.mobile-nav__inner {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 16px 20px 32px;
	display: flex;
	flex-direction: column;
}

.mobile-nav__list {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column;
}
.mobile-nav__list li,
.mobile-nav li {
	list-style: none; margin: 0; padding: 0; display: block;
}
.mobile-nav a {
	display: block;
	font-size: 18px; font-weight: 600;
	padding: 18px 4px;
	color: var(--c-ink);
	border-bottom: 1px solid var(--c-border-soft);
	text-decoration: none;
	width: 100%; box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus,
.mobile-nav .current-menu-item > a { color: var(--c-red); }

.mobile-nav__cta {
	display: inline-block;
	margin-top: auto;        /* stick CTA to bottom of scroll pane */
	margin-bottom: 8px;
	align-self: stretch;
	text-align: center;
	color: #fff !important;
	border-bottom: 0 !important;
	padding: 16px 24px !important;
	background: var(--c-red);
	border-radius: var(--radius-pill);
	font-size: 15px !important;
}

/* Desktop: drawer is dead and inert */
@media (min-width: 881px) {
	.mobile-nav { display: none !important; }
	body.nav-open { overflow: auto !important; position: static; width: auto; height: auto; touch-action: auto; }
}

/* ----------------------------- Footer */
.site-footer { background: var(--c-footer); color: var(--c-footer-text); padding: var(--space-8) 0 var(--space-5); }
.site-footer h4 { color: #fff; font-size: var(--fs-base); margin-bottom: 16px; }
.site-footer a { color: var(--c-footer-text); }
.site-footer a:hover { color: #fff; }
.footer-grid {
	display: grid; gap: var(--space-7);
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
}
.footer-brand p { font-size: var(--fs-sm); line-height: 1.7; margin-top: 14px; max-width: 320px; }
.footer-brand .site-brand { color: #fff; }
.footer-brand .site-brand__dot { background: var(--c-red); }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: var(--fs-sm); }
.footer-newsletter p { font-size: var(--fs-sm); margin-bottom: 14px; }
.footer-newsletter form { display: flex; gap: 8px; flex-direction: column; }
.footer-newsletter input[type=email] {
	background: #2A2A2A; border: 1px solid #333; border-radius: var(--radius-sm);
	color: #fff; padding: 12px 14px; font-size: var(--fs-sm);
}
.footer-newsletter input[type=email]::placeholder { color: #888; }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-5); }
.footer-social a {
	width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; background: #2A2A2A; color: #fff;
	transition: background var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--c-red); }
.footer-bottom {
	margin-top: var(--space-7); padding-top: var(--space-5);
	border-top: 1px solid #2A2A2A; font-size: var(--fs-xs);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	color: #777;
}
.footer-bottom-nav { display: flex; gap: 24px; }

/* ----------------------------- Hero */
.hero {
	position: relative; min-height: 540px; color: #fff;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}
.hero__content { position: relative; z-index: 1; text-align: center; max-width: 760px; padding: 80px 24px; }
.hero__eyebrow { color: rgba(255,255,255,.85); font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
.hero__title { font-size: var(--fs-5xl); color: #fff; line-height: 1.05; margin-bottom: 18px; font-weight: 800; }
.hero__title .accent { display: inline; color: #fff; }
.hero__subtext { font-size: var(--fs-md); color: rgba(255,255,255,.92); max-width: 580px; margin: 0 auto 28px; }
.hero__ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero__search {
	margin: 32px auto 0;
	background: #fff; border-radius: var(--radius-pill);
	padding: 8px 8px 8px 22px; max-width: 560px; width: 100%;
	display: flex; align-items: center; gap: 10px;
	color: var(--c-text); box-shadow: var(--shadow);
}
.hero__search .icon { color: var(--c-muted); flex: none; }
.hero__search input { flex: 1; border: 0; outline: 0; background: transparent; font-size: var(--fs-sm); padding: 10px 0; min-width: 0; }
.hero__search .btn { padding: 12px 22px; flex: none; }
.hero--align-left .hero__search { margin-left: 0; margin-right: 0; }

.hero--page { min-height: 460px; }

.hero__trust {
	margin: 22px auto 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
	backdrop-filter: blur(8px);
	border-radius: var(--radius-pill);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
}
.hero__trust .icon { width: 16px; height: 16px; color: #fff; opacity: .9; }
.hero--page .hero__title { font-size: var(--fs-4xl); }
.hero--align-left .hero__content { text-align: left; margin: 0; padding-left: 0; }
.hero--align-left .hero__ctas, .hero--align-left .hero__subtext { margin-left: 0; }

/* ----------------------------- Trust bar */
.trust-bar {
	background: var(--c-bg);
	padding: var(--space-6) 0;
	border-bottom: 1px solid var(--c-border-soft);
}
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item__icon {
	flex: none; width: 44px; height: 44px; border-radius: 50%;
	background: var(--c-red-50); color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
}
.trust-item__stat { font-weight: 800; color: var(--c-ink); font-size: var(--fs-md); line-height: 1.2; }
.trust-item__label { font-size: var(--fs-xs); color: var(--c-muted); }

/* ----------------------------- Card grid (mobile default: 1 col; responsive.css scales up) */
.card-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.card-grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* ----------------------------- Card base — clean editorial cards */
.card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.05);
	display: flex; flex-direction: column;
	transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
	border: 1px solid #F0EBE0;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,.06), 0 16px 32px rgba(0,0,0,.08); }
.card__media {
	position: relative; aspect-ratio: 4 / 3; overflow: hidden; display: block;
	background: var(--c-bg-grey);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-sans);
}
.card__placeholder-mark {
	font-size: 64px; font-weight: 800;
	opacity: .45; letter-spacing: -.02em;
}

/* Heart / save button — top right of media */
.card__heart {
	position: absolute; top: 14px; right: 14px;
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,.95); color: var(--c-ink);
	display: inline-flex; align-items: center; justify-content: center;
	border: 0; cursor: pointer;
	transition: transform 160ms var(--ease), color 160ms var(--ease);
	z-index: 2;
}
.card__heart:hover { color: var(--c-red); transform: scale(1.08); }
.card__heart.is-on { color: var(--c-red); }
.card__heart.is-on svg { fill: currentColor; }

/* Tags / pills (POPULAR, category) — top left of media */
.card__tag {
	position: absolute; top: 14px; left: 14px;
	display: inline-flex; align-items: center;
	font-size: 11px; font-weight: 700; letter-spacing: .08em;
	padding: 6px 12px; border-radius: 8px;
	z-index: 2;
}
.card__tag--popular { background: var(--c-red); color: #fff; }
.card__tag--guide   { background: rgba(255,255,255,.95); color: var(--c-red); }
.card__badge { /* legacy fallback for older templates */
	position: absolute; top: 12px; left: 12px;
	background: rgba(255,255,255,.95); color: var(--c-ink);
	font-size: var(--fs-xs); font-weight: 600;
	padding: 6px 10px; border-radius: var(--radius-pill);
	z-index: 2;
}

/* Event date badge — sits inside the bottom-left of the media (calendar tear-off) */
.card__date-badge {
	position: absolute; left: 14px; bottom: 14px;
	display: inline-flex; flex-direction: column;
	border-radius: 8px; overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,.25);
	min-width: 64px;
	text-align: center;
	z-index: 3;
}
.card__date-badge-month {
	background: var(--c-red); color: #fff;
	font-size: 11px; font-weight: 700; letter-spacing: .08em;
	padding: 4px 10px;
	white-space: nowrap;
}
.card__date-badge-day {
	background: #fff; color: var(--c-ink);
	font-size: 18px; font-weight: 800;
	padding: 8px 10px; line-height: 1;
	white-space: nowrap;
}

/* Card body */
.card__body { padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { margin: 0; font-size: 18px; font-weight: 700; color: var(--c-ink); line-height: 1.3; letter-spacing: -.01em; }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--c-red); }
.card__excerpt { color: var(--c-muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* Row with single icon + text (e.g. location line on event card) */
.card__row {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--c-muted); font-size: 14px;
}
.card__row .icon { width: 14px; height: 14px; color: var(--c-muted); }

/* Meta row — multiple inline items (clock, users, pin) */
.card__meta {
	display: flex; gap: 14px; flex-wrap: wrap;
	color: var(--c-muted); font-size: 13px;
}
.card__meta-item { display: inline-flex; align-items: center; gap: 5px; }
.card__meta-item .icon { width: 14px; height: 14px; }

/* Rating row (star + score + count) */
.card__rating {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 14px; color: var(--c-ink);
}
.card__rating-star { color: #F59E0B; display: inline-flex; }
.card__rating-star .icon { width: 16px; height: 16px; }
.card__rating strong { font-weight: 700; }
.card__rating-count { color: var(--c-muted); font-weight: 500; }

/* Price row */
.card__price-row {
	display: inline-flex; align-items: baseline; gap: 4px;
	margin-top: 2px;
	font-size: 14px; color: var(--c-text);
}
.card__price-label  { color: var(--c-text); }
.card__price-amount { color: var(--c-red); font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.card__price-suffix { color: var(--c-muted); }

/* Chip row inside event card (Free / English / Family) */
.card__chip-row {
	display: flex; flex-wrap: wrap; gap: 6px;
	margin-top: 2px;
}
.card__chip {
	display: inline-flex; align-items: center; gap: 4px;
	font-size: 11px; font-weight: 600;
	padding: 4px 9px; border-radius: 999px;
	background: var(--c-bg-grey); color: var(--c-text);
	line-height: 1.4;
}
.card__chip .icon { width: 11px; height: 11px; }
.card__chip--free     { background: #DCFCE7; color: #166534; }
.card__chip--paid     { background: #FEF3C7; color: #92400E; }
.card__chip--donation { background: #DBEAFE; color: #1E40AF; }
.card__chip--info     { background: var(--c-red-50); color: var(--c-red); }

/* Event type chip — small icon + label at bottom of event card */
.card__type {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--c-text); font-size: 13px; font-weight: 600;
	margin-top: 4px;
}
.card__type-icon {
	width: 28px; height: 28px; border-radius: 8px;
	background: var(--c-red-50); color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
}
.card__type-icon .icon { width: 14px; height: 14px; }

/* Legacy footer styles (kept so older cards don't break) */
.card__footer {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--c-border-soft);
}
.card__price { color: var(--c-red); font-weight: 800; font-size: var(--fs-md); }
.card__price small { color: var(--c-muted); font-weight: 500; font-size: var(--fs-xs); }
.card__cta { color: var(--c-red); font-weight: 600; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: 4px; }

/* Destination card variant */
.card--destination { aspect-ratio: 4/5; position: relative; border-radius: var(--radius); overflow: hidden; }
.card--destination .card__media { position: absolute; inset: 0; aspect-ratio: auto; }
.card--destination .card__media::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
}
.card--destination .card__body {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 18px; color: #fff; background: transparent;
}
.card--destination .card__title { color: #fff; font-size: var(--fs-lg); }
.card--destination .card__excerpt { color: rgba(255,255,255,.8); font-size: var(--fs-xs); }

/* Guide card */
.card--guide .card__media { aspect-ratio: 16/10; }
.card--guide .card__chip {
	display: inline-block; font-size: var(--fs-xs); font-weight: 600;
	color: var(--c-red); margin-bottom: 4px; letter-spacing: .08em; text-transform: uppercase;
}

/* Compact event/seasonal card */
.card--event .card__badge { background: var(--c-red); color: #fff; }
.card--event .card__date { font-size: var(--fs-xs); color: var(--c-muted); }

/* ----------------------------- Why book / Reasons */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.why-card {
	position: relative;
	background: #fff; padding: 36px 24px 28px; border-radius: var(--radius-lg);
	text-align: center;
	border: 1px solid var(--c-border-soft);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: var(--c-red);
	transform: scaleX(0); transform-origin: left;
	transition: transform 300ms var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon {
	width: 72px; height: 72px; border-radius: 50%;
	background: linear-gradient(135deg, var(--c-red-50) 0%, #FDE4E4 100%);
	color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
	transition: transform 300ms var(--ease), background 300ms var(--ease);
}
.why-card__icon .icon { width: 32px; height: 32px; }
.why-card:hover .why-card__icon {
	background: var(--c-red); color: #fff;
	transform: scale(1.08) rotate(-4deg);
}
.why-card__title { font-size: var(--fs-md); margin-bottom: 8px; color: var(--c-ink); font-weight: 700; }
.why-card__desc { color: var(--c-muted); font-size: var(--fs-sm); margin: 0; line-height: 1.6; }

/* ----------------------------- Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.review-card {
	background: #fff; border-radius: var(--radius); padding: 24px;
	border: 1px solid var(--c-border-soft); box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--c-red); display: inline-flex; gap: 2px; margin-bottom: 12px; }
.review-card .stars .icon { width: 16px; height: 16px; }
.review-card .star { color: var(--c-border); }
.review-card .star--on { color: var(--c-red); }
.review-card__quote { font-size: var(--fs-sm); color: var(--c-text); margin-bottom: 16px; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-weight: 600; color: var(--c-ink); font-size: var(--fs-sm); }
.review-card__loc { color: var(--c-muted); font-size: var(--fs-xs); }

/* ----------------------------- CTA banners */
.cta-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.cta-banner {
	border-radius: var(--radius-lg); padding: 40px;
	color: #fff; position: relative; overflow: hidden; min-height: 200px;
	display: flex; flex-direction: column; justify-content: center;
}
.cta-banner--dark { background: linear-gradient(135deg, #2A2520 0%, #15110D 100%); }
.cta-banner--dark::after {
	content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
	width: 220px; height: 220px; border-radius: 50%;
	border: 1px solid rgba(220, 38, 38, .3);
	pointer-events: none;
}
.cta-banner--red { background: var(--c-red); }
.cta-banner h3 { color: #fff; font-size: var(--fs-2xl); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.88); font-size: var(--fs-sm); margin-bottom: 18px; max-width: 320px; }
.cta-banner > div { position: relative; z-index: 2; }

/* Final CTA full-width */
.final-cta {
	background: var(--c-red);
	color: #fff; text-align: center;
	padding: 90px 24px; border-radius: var(--radius-lg);
	position: relative; overflow: hidden;
}
.final-cta h2 { color: #fff; font-size: var(--fs-3xl); margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,.9); margin-bottom: 26px; max-width: 540px; margin-inline: auto; }
.final-cta .btn--solid { background: #fff; color: var(--c-red); }
.final-cta .btn--solid:hover { background: var(--c-ink); color: #fff; }
.final-cta .btn--outline { color: #fff; border-color: rgba(255,255,255,.7); }

/* ----------------------------- Photo Gallery (experiences + events) */
.photo-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; border-radius: var(--radius); overflow: hidden; }
.photo-gallery__item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.photo-gallery__item:first-child { grid-row: 1 / 3; grid-column: 1 / 2; aspect-ratio: auto; }
.photo-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms var(--ease); }
.photo-gallery__item:hover img { transform: scale(1.04); }
.photo-gallery__more {
	position: absolute; inset: 0; background: rgba(0,0,0,.55); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: var(--fs-md);
}
@media (max-width: 640px) {
	.photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
	.photo-gallery__item:first-child { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16/9; }
}

/* ----------------------------- Single page shell */
.page-shell { padding: var(--space-7) 24px var(--space-9); }
.page-header { margin-bottom: var(--space-6); }
.page-header h1 { margin: 0 0 8px; font-size: var(--fs-3xl); }
.page-header p { color: var(--c-muted); }
.page-header--center { text-align: center; }

/* ----------------------------- Filter bar */
.filter-bar {
	background: #fff; border: 1px solid var(--c-border-soft);
	border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
	display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
	margin-bottom: var(--space-6);
}
.filter-bar__title { font-weight: 700; color: var(--c-ink); margin-right: auto; }
.filter-bar select, .filter-bar input[type=text] {
	border: 1px solid var(--c-border); border-radius: var(--radius-pill);
	padding: 10px 16px; font-size: var(--fs-sm); background: #fff; color: var(--c-text);
	min-width: 150px;
}
.filter-bar select:focus, .filter-bar input:focus { outline: 2px solid var(--c-red-50); border-color: var(--c-red); }

.search-row { display: flex; gap: 10px; align-items: center; margin-bottom: var(--space-5); }
.search-row input {
	flex: 1; border: 1px solid var(--c-border); border-radius: var(--radius-pill);
	padding: 14px 22px; font-size: var(--fs-sm); background: #fff;
}

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 16px; border-radius: var(--radius-pill);
	background: var(--c-bg-grey); color: var(--c-text);
	font-size: var(--fs-xs); font-weight: 600;
	border: 1px solid transparent;
	transition: all var(--dur) var(--ease);
}
.chip:hover { background: var(--c-red-50); color: var(--c-red); }
.chip.is-active { background: var(--c-red); color: #fff; }
.chip--ghost { background: transparent; border-color: var(--c-border); }

/* ----------------------------- Sub-results header */
.archive-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); flex-wrap: wrap; gap: 12px; }
.archive-meta h2 { margin: 0; font-size: var(--fs-2xl); }
.archive-meta .sort-row { display: flex; align-items: center; gap: 8px; color: var(--c-muted); font-size: var(--fs-sm); }
.archive-meta select {
	border: 1px solid var(--c-border); border-radius: var(--radius-pill);
	padding: 6px 14px; font-size: var(--fs-sm); background: #fff;
}

/* Load more / pagination */
.load-more-row { text-align: center; margin-top: var(--space-7); }
.pagination { margin-top: var(--space-7); display: flex; justify-content: center; gap: 6px; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 38px; height: 38px; padding: 0 12px; border-radius: var(--radius-pill);
	border: 1px solid var(--c-border); color: var(--c-text); font-size: var(--fs-sm);
}
.pagination .current { background: var(--c-red); color: #fff; border-color: var(--c-red); }

/* ----------------------------- Single experience */
.experience-hero {
	position: relative; min-height: 480px;
}
.experience-hero__bg { position: absolute; inset: 0; }
.experience-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.experience-hero__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.15) 30%, rgba(0,0,0,.75) 100%);
}
.experience-hero__content {
	position: relative; z-index: 2; color: #fff;
	padding: var(--space-8) 24px var(--space-7);
	max-width: var(--container); margin: 0 auto;
	display: flex; flex-direction: column; justify-content: end;
	min-height: 480px;
}
.experience-hero__breadcrumb { font-size: var(--fs-xs); color: rgba(255,255,255,.8); margin-bottom: 10px; }
.experience-hero__rating { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); margin-bottom: 12px; color: #fff; }
.experience-hero__rating .icon--star { width: 14px; height: 14px; color: #fff; }
.experience-hero h1 { color: #fff; font-size: var(--fs-4xl); margin-bottom: 0; }

/* (Removed) — the bare .single-experience selector was matching body.single-experience
   from body_class() and turning the entire <body> into a 2-col grid, pushing all
   content to the right. New layout uses .exp-body / .exp-main / .exp-sidebar instead. */

.experience-meta {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
	background: #fff; border: 1px solid var(--c-border-soft);
	border-radius: var(--radius); padding: 20px;
}
.experience-meta__item { display: flex; gap: 12px; align-items: center; }
.experience-meta__icon { color: var(--c-red); width: 22px; height: 22px; }
.experience-meta__label { color: var(--c-muted); font-size: var(--fs-xs); }
.experience-meta__value { color: var(--c-ink); font-weight: 600; font-size: var(--fs-sm); }

.section-block { background: #fff; border-radius: var(--radius); border: 1px solid var(--c-border-soft); padding: 28px; }
.section-block h2 { font-size: var(--fs-xl); margin-bottom: 18px; }

.process-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.process-item { display: flex; gap: 14px; align-items: start; }
.process-item__num {
	flex: none; width: 28px; height: 28px; border-radius: 50%;
	background: var(--c-red-50); color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: var(--fs-sm);
}
.process-item h4 { margin: 0 0 4px; font-size: var(--fs-sm); }
.process-item p { color: var(--c-muted); font-size: var(--fs-sm); margin: 0; }

.icon-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.icon-list li { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); color: var(--c-text); }
.icon-list .icon { color: var(--c-red); width: 18px; height: 18px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }

.calendar-block { background: #fff; border-radius: var(--radius); border: 1px solid var(--c-border-soft); padding: 28px; }
.calendar-block h2 { margin-bottom: 8px; }
.calendar-block .calendar-frame {
	background: var(--c-bg-warm); border-radius: var(--radius);
	padding: 14px; margin-top: 16px; position: relative; min-height: 220px;
}
.calendar-block .calendar-frame iframe { width: 100%; min-height: 480px; border: 0; border-radius: var(--radius-sm); background: #fff; }
.calendar-block__empty { text-align: center; color: var(--c-muted); padding: 40px 20px; }
.calendar-block__empty .icon { width: 36px; height: 36px; color: var(--c-red); margin-bottom: 8px; }

.meeting-point-block { background: var(--c-bg-grey); border-radius: var(--radius); border: 1px solid var(--c-border-soft); padding: 28px; }
.meeting-point-block .map-frame { background: #DBDBDB; border-radius: var(--radius-sm); aspect-ratio: 16/8; overflow: hidden; }
.meeting-point-block .map-frame iframe { width: 100%; height: 100%; border: 0; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
	background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius);
	overflow: hidden;
}
.faq-item summary {
	list-style: none; cursor: pointer; padding: 18px 22px;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	font-weight: 600; color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+'; color: var(--c-red); font-size: 22px; line-height: 1; transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; margin: 0; color: var(--c-muted); font-size: var(--fs-sm); }

.review-summary { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.review-summary__avg { font-size: var(--fs-3xl); font-weight: 800; color: var(--c-ink); line-height: 1; }
.review-summary__meta { color: var(--c-muted); font-size: var(--fs-sm); }
.review-summary .stars .icon { width: 16px; height: 16px; }

/* Booking sidebar */
.book-sidebar {
	position: sticky; top: calc(var(--header-h) + 16px);
	background: #fff; border-radius: var(--radius); border: 1px solid var(--c-border-soft);
	box-shadow: var(--shadow);
	padding: 24px;
	align-self: start;
}
.book-sidebar__price { font-size: var(--fs-3xl); font-weight: 800; color: var(--c-ink); }
.book-sidebar__price small { color: var(--c-muted); font-size: var(--fs-sm); font-weight: 500; }
.book-sidebar__row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--c-border-soft); font-size: var(--fs-sm); }
.book-sidebar__row:last-of-type { border-bottom: 0; }
.book-sidebar .btn { margin-top: 14px; }
.book-sidebar__icons { display: flex; gap: 12px; margin-top: 14px; justify-content: center; color: var(--c-muted); }
.book-sidebar__icons button {
	width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--c-border);
	background: #fff; color: var(--c-muted); display: inline-flex; align-items: center; justify-content: center;
}
.book-sidebar__icons button:hover { border-color: var(--c-red); color: var(--c-red); }

/* ----------------------------- Single event */
/* (Removed: bare .single-event was matching body.single-event from body_class()) */
.single-event__hero {
	position: relative; min-height: 520px;
	border-radius: 0; overflow: hidden;
}
.single-event__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-event__hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2) 40%, rgba(0,0,0,.8) 100%); }
.single-event__hero-content {
	position: relative; z-index: 2; color: #fff;
	padding: var(--space-9) 24px var(--space-7);
	max-width: var(--container); margin: 0 auto;
	display: flex; flex-direction: column; justify-content: end; min-height: 520px;
}
.single-event__hero-content .event-meta-row { color: rgba(255,255,255,.85); font-size: var(--fs-sm); margin-bottom: 14px; display: inline-flex; gap: 18px; }
.single-event__hero-content h1 { color: #fff; font-size: var(--fs-4xl); }

.event-body { display: grid; grid-template-columns: 1fr 360px; gap: var(--space-7); }
.event-video {
	background: #2A2A2A; border-radius: var(--radius); aspect-ratio: 4/3;
	position: relative; display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.event-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.event-video__btn {
	position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%;
	background: var(--c-red); color: #fff; border: 0;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 12px 24px rgba(220,38,38,.4);
}
.event-tip-card {
	background: var(--c-red); color: #fff; border-radius: var(--radius);
	padding: 16px 18px; display: flex; align-items: center; gap: 12px;
	margin: 18px 0;
}
.event-tip-card .icon { width: 22px; height: 22px; }
.event-tip-card strong { font-weight: 700; }
.event-info-list {
	background: #fff; border-radius: var(--radius); border: 1px solid var(--c-border-soft);
	padding: 22px; display: grid; gap: 18px;
}
.event-info-list h3 { font-size: var(--fs-base); color: var(--c-ink); margin: 0 0 6px; font-weight: 700; }
.event-info-list p { margin: 0; font-size: var(--fs-sm); color: var(--c-text); }
.event-info-row {
	display: flex; justify-content: space-between; gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--c-border-soft);
	font-size: 14px;
	flex-wrap: wrap;
}
.event-info-row:last-child { border-bottom: 0; }
.event-info-row__label { color: var(--c-muted); font-weight: 500; }
.event-info-row__value { color: var(--c-ink); font-weight: 600; text-align: right; display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.event-info-row__value a { color: var(--c-red); }

.event-block-warm {
	background: var(--c-bg-warm);
	border-radius: var(--radius);
	padding: 24px;
	margin: 24px 0;
	border-left: 4px solid var(--c-red);
}
.event-block-warm h3 { font-size: 18px; margin-bottom: 8px; color: var(--c-ink); }
.event-block-warm p { margin: 0; color: var(--c-text); font-size: 15px; line-height: 1.7; }

.event-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }

/* ----------------------------- Single guide */
/* (Removed: bare .single-guide was matching body.single-guide via body_class() and
   turning the entire <body> into a grid container, pushing content to the right.) */
.single-guide__article { background: #fff; border-radius: var(--radius); padding: 0 0 24px; }
.single-guide__header { margin-bottom: var(--space-6); }
.single-guide__chip { display: inline-block; color: var(--c-red); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.single-guide__header h1 { font-size: var(--fs-3xl); margin-bottom: 14px; }
.single-guide__meta { color: var(--c-muted); font-size: var(--fs-sm); display: inline-flex; gap: 14px; }
.single-guide__featured { border-radius: var(--radius); overflow: hidden; margin-bottom: var(--space-6); aspect-ratio: 16/9; }
.single-guide__featured img { width: 100%; height: 100%; object-fit: cover; }
.single-guide__content { font-size: var(--fs-md); line-height: 1.75; color: var(--c-text); }
.single-guide__content h2 { margin-top: 1.6em; }
.single-guide__content figure img { border-radius: var(--radius); }
.toc-card { background: var(--c-bg-soft); border-radius: var(--radius); padding: 20px 22px; margin-bottom: var(--space-6); }
.toc-card h3 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .12em; margin: 0 0 12px; color: var(--c-ink); }
.toc-card ol { padding-left: 1.4em; margin: 0; }
.toc-card a { color: var(--c-text); }
.toc-card a:hover { color: var(--c-red); }

/* ----------------------------- Sidebar (guide) */
.site-sidebar { display: grid; gap: var(--space-5); }
.sidebar-card { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--c-border-soft); }
.sidebar-card__title { font-size: var(--fs-base); margin: 0 0 14px; color: var(--c-ink); }
.sidebar-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: var(--fs-sm); }
.sidebar-list a:hover { color: var(--c-red); }
.sidebar-card--inspire { background: var(--c-red); color: #fff; }
.sidebar-card--inspire .sidebar-card__title { color: #fff; }
.sidebar-card--inspire p { color: rgba(255,255,255,.9); font-size: var(--fs-sm); margin-bottom: 12px; }
.sidebar-card--inspire input { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 10px; width: 100%; }
.sidebar-card--inspire input::placeholder { color: rgba(255,255,255,.7); }
.sidebar-card--inspire .btn { background: #fff; color: var(--c-red); width: 100%; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ----------------------------- About page */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.about-story__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-story__media img { width: 100%; height: 100%; object-fit: cover; }
.about-story__stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-5); }
.about-stat { border-left: 2px solid var(--c-red); padding-left: 16px; }
.about-stat__num { color: var(--c-red); font-size: var(--fs-3xl); font-weight: 800; line-height: 1; }
.about-stat__label { color: var(--c-muted); font-size: var(--fs-sm); }

.focus-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-5); }
.focus-card {
	background: #fff; border-radius: var(--radius);
	padding: 28px; border: 1px solid var(--c-border-soft);
	position: relative; overflow: hidden;
	display: flex; flex-direction: column; justify-content: end; min-height: 220px;
}
.focus-card .icon { color: var(--c-red); width: 24px; height: 24px; margin-bottom: 10px; }
.focus-card h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.focus-card p { font-size: var(--fs-sm); color: var(--c-muted); margin: 0; }
.focus-card--image { padding: 0; min-height: 240px; color: #fff; }
.focus-card--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.focus-card--image::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%); }
.focus-card--image .focus-card__inner { position: relative; z-index: 2; padding: 24px; }
.focus-card--image h3 { color: #fff; }
.focus-card--image p { color: rgba(255,255,255,.9); }
.focus-card--red { background: var(--c-red); color: #fff; }
.focus-card--red h3 { color: #fff; }
.focus-card--red p { color: rgba(255,255,255,.9); }
.focus-card--red .icon { color: #fff; }
.focus-card--red ul { list-style: none; padding: 0; margin-top: 12px; display: grid; gap: 8px; font-size: var(--fs-sm); }
.focus-card--red ul li { display: flex; gap: 8px; align-items: start; }
.focus-card--red ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; margin-top: 8px; flex: none; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border-soft); }
.team-card__media { aspect-ratio: 4/3; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 18px; }
.team-card__name { font-weight: 700; color: var(--c-ink); }
.team-card__role { color: var(--c-red); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.team-card__bio { color: var(--c-muted); font-size: var(--fs-sm); margin: 0; }

.badge-row {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 40px; padding: var(--space-6) 0; opacity: .65;
	color: var(--c-muted); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

.about-final-cta {
	background: #1F1B17; border-radius: var(--radius-lg);
	padding: 56px 32px; text-align: center; color: #fff;
}
.about-final-cta h2 { color: #fff; }
.about-final-cta p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.about-final-cta .btn--solid { background: var(--c-red); color: #fff; }
.about-final-cta .btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }

/* ----------------------------- Partners page */
.partners-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.partners-why-card { background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.partners-why-card .icon-wrap {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--c-red-50); color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.partners-why-card h3 { font-size: var(--fs-md); }
.partners-why-card p { color: var(--c-muted); font-size: var(--fs-sm); margin: 0; }

.partners-how { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.partners-how__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.partners-how__media img { width: 100%; height: 100%; object-fit: cover; }
.partners-how__stat {
	position: absolute; left: 24px; bottom: 24px; background: var(--c-red); color: #fff;
	padding: 14px 18px; border-radius: var(--radius);
}
.partners-how__stat-num { font-size: var(--fs-xl); font-weight: 800; line-height: 1; }
.partners-how__stat-label { font-size: var(--fs-xs); }

.partners-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--c-border-soft); }
.partners-step:last-child { border-bottom: 0; }
.partners-step__icon {
	flex: none; width: 36px; height: 36px; border-radius: 50%;
	background: var(--c-red-50); color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.partners-step h3 { margin: 0 0 4px; font-size: var(--fs-md); }
.partners-step p { color: var(--c-muted); font-size: var(--fs-sm); margin: 0; }

.partners-look { background: #1F1B17; color: #fff; border-radius: var(--radius-lg); padding: 56px 40px; position: relative; overflow: hidden; }
.partners-look h2 { color: #fff; }
.partners-look p.subtext { color: rgba(255,255,255,.7); }
.partners-look ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partners-look li { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); }
.partners-look li .icon { color: var(--c-red); }

/* ----------------------------- Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: var(--fs-xs); font-weight: 600; color: var(--c-ink); text-transform: uppercase; letter-spacing: .08em; }
.form-row input, .form-row select, .form-row textarea {
	background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
	padding: 14px 16px; font-size: var(--fs-sm); color: var(--c-text); width: 100%;
	font-family: inherit;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row--full { grid-column: 1 / -1; }
.form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--c-border-soft); padding: 32px; box-shadow: var(--shadow-sm); }

/* ----------------------------- Contact */
.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: var(--space-5); }
.support-card { background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius); padding: 24px; }
.support-card h3 { font-size: var(--fs-md); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 8px; }
.support-card h3 .chip { background: var(--c-red); color: #fff; font-size: 9px; padding: 2px 8px; letter-spacing: .12em; }
.support-card__row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: var(--fs-sm); border-bottom: 1px solid var(--c-border-soft); }
.support-card__row:last-child { border-bottom: 0; }
.support-card__row .day { color: var(--c-muted); }
.support-card__row .hr { color: var(--c-ink); font-weight: 600; }

.contact-card-list { display: grid; gap: 14px; margin-top: 16px; }
.contact-info-card {
	background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius);
	padding: 18px; display: flex; gap: 12px; align-items: center;
}
.contact-info-card__icon { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--c-red-50); color: var(--c-red); display: inline-flex; align-items: center; justify-content: center; }
.contact-info-card__title { color: var(--c-ink); font-weight: 700; font-size: var(--fs-sm); }
.contact-info-card__text { color: var(--c-muted); font-size: var(--fs-sm); }
.contact-share { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.contact-share a {
	width: 36px; height: 36px; border-radius: 50%; background: #fff;
	border: 1px solid var(--c-border); color: var(--c-muted);
	display: inline-flex; align-items: center; justify-content: center;
}
.contact-share a:hover { color: var(--c-red); border-color: var(--c-red); }

.invite-banner {
	border-radius: var(--radius-lg); overflow: hidden; position: relative;
	min-height: 240px; padding: 40px; color: #fff;
	display: flex; flex-direction: column; justify-content: end;
	margin-top: var(--space-7);
}
.invite-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.invite-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75) 100%); }
.invite-banner > * { position: relative; z-index: 2; }
.invite-banner h3 { color: #fff; font-size: var(--fs-2xl); margin-bottom: 8px; }
.invite-banner p { color: rgba(255,255,255,.9); margin-bottom: 18px; max-width: 460px; }

/* ----------------------------- Newsletter form */
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input { padding: 12px 14px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-size: var(--fs-sm); }

/* ===========================================================
   PHOTO GALLERY — square photo grid, mobile-first
   Mobile (≤480)  : 2 cols
   Phone (481-767): 3 cols
   Tablet (768+)  : 4 cols
   =========================================================== */
.photo-gallery {
	background: #fff;
	border: 1px solid var(--c-border-soft);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow-sm);
	box-sizing: border-box;
	width: 100%;
}
.photo-gallery__title {
	font-size: 22px; font-weight: 800; color: var(--c-ink);
	margin: 0 0 16px;
	letter-spacing: -.01em;
	display: block;
}

/* Mobile-first: 2 columns by default */
.photo-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
	width: 100%;
}

/* Photo card */
.photo-gallery__item {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;             /* square cells — Instagram-style */
	overflow: hidden;
	border-radius: 8px;
	background: var(--c-bg-grey);
	cursor: zoom-in;
	transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.photo-gallery__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
	z-index: 1;
}
.photo-gallery__item img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	border-radius: inherit;
	transition: transform 400ms var(--ease);
}
.photo-gallery__item:hover img { transform: scale(1.06); }

/* Lighten hover indicator with a subtle overlay */
.photo-gallery__item::after {
	content: '';
	position: absolute; inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 200ms var(--ease);
	pointer-events: none;
}
.photo-gallery__item:hover::after { background: rgba(0, 0, 0, .08); }

/* Phone landscape / small tablet: 3 columns */
@media (min-width: 481px) {
	.photo-gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
}

/* Tablet portrait+: 4 columns */
@media (min-width: 768px) {
	.photo-gallery        { padding: 28px; }
	.photo-gallery__grid  { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
}

/* Wide desktop: 5 columns */
@media (min-width: 1280px) {
	.photo-gallery__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
}

/* Lightbox overlay (rendered by JS) */
.pg-lightbox {
	position: fixed; inset: 0;
	background: rgba(0, 0, 0, .92);
	z-index: 10000;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms var(--ease);
}
.pg-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}
.pg-lightbox__img {
	max-width: 96vw; max-height: 90vh;
	width: auto; height: auto;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(0,0,0,.6);
}
.pg-lightbox__close,
.pg-lightbox__prev,
.pg-lightbox__next {
	position: absolute;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,.95);
	color: var(--c-ink);
	border: 0; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform 160ms var(--ease), background 160ms var(--ease);
}
.pg-lightbox__close { top: 20px; right: 20px; }
.pg-lightbox__prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.pg-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.pg-lightbox__close:hover,
.pg-lightbox__prev:hover,
.pg-lightbox__next:hover { background: var(--c-red); color: #fff; }
.pg-lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.pg-lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
.pg-lightbox__count {
	position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
	color: #fff; font-size: 14px; font-weight: 600;
	background: rgba(0,0,0,.5); padding: 6px 14px; border-radius: 999px;
}

/* Lightbox: smaller controls on small screens */
@media (max-width: 768px) {
	.pg-lightbox__close,
	.pg-lightbox__prev,
	.pg-lightbox__next { width: 40px; height: 40px; }
	.pg-lightbox__close { top: 12px; right: 12px; }
	.pg-lightbox__prev  { left: 8px; }
	.pg-lightbox__next  { right: 8px; }
}

/* ===========================================================
   TRAVEL GUIDE ARCHIVE — "Your Guide to Japan" hub
   =========================================================== */

/* Hero */
.tg-hero {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	color: #fff;
}
.tg-hero__bg { position: absolute; inset: 0; z-index: 0; }
.tg-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.tg-hero__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(110deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 60%, transparent 100%);
}
.tg-hero__content {
	position: relative; z-index: 2;
	padding: 64px 24px;
	max-width: var(--container);
	margin: 0 auto;
	box-sizing: border-box;
}
.tg-hero__eyebrow {
	display: inline-block;
	color: var(--c-red);
	font-size: 12px; font-weight: 700;
	letter-spacing: .18em;
	margin-bottom: 14px;
}
.tg-hero__title {
	color: #fff;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.02em;
	margin: 0 0 16px;
}
.tg-hero__dot { color: var(--c-red); }
.tg-hero__sub {
	color: rgba(255,255,255,.92);
	font-size: 15px;
	line-height: 1.55;
	max-width: 460px;
	margin: 0 0 24px;
}
.tg-hero__search {
	display: flex; align-items: center;
	background: #fff;
	border-radius: 999px;
	padding: 6px 6px 6px 22px;
	max-width: 460px;
	box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.tg-hero__search input {
	flex: 1; border: 0; outline: 0;
	font-size: 14px; padding: 10px 0;
	background: transparent;
	color: var(--c-text);
}
.tg-hero__search button {
	flex: 0 0 auto;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--c-red);
	color: #fff; border: 0;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
}
.tg-hero__search button .icon { width: 18px; height: 18px; }

/* Generic section */
.tg-section {
	padding: 56px 0;
}
.tg-section__title {
	font-size: 26px; font-weight: 800; color: var(--c-ink);
	margin: 0 0 28px;
	letter-spacing: -.01em;
}
.tg-section__title--left { text-align: left; }
.tg-section__cta { text-align: center; margin-top: 28px; }
.tg-link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--c-red); font-weight: 600; font-size: 14px;
}
.tg-link .icon { width: 14px; height: 14px; }
.tg-dot { color: var(--c-muted-2); margin: 0 4px; }

/* Browse by Category — grid of cards with emoji icons */
.tg-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.tg-category-card {
	display: flex; align-items: center; gap: 14px;
	background: #fff;
	border: 1px solid var(--c-border-soft);
	border-radius: 14px;
	padding: 16px 18px;
	text-decoration: none;
	color: var(--c-ink);
	transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.tg-category-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,.08);
	border-color: transparent;
}
.tg-category-card__icon {
	flex: 0 0 44px;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--c-bg-warm);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 22px;
	line-height: 1;
}
.tg-category-card__body {
	display: flex; flex-direction: column; gap: 4px;
	min-width: 0;
}
.tg-category-card__name {
	font-weight: 700;
	font-size: 14px;
	color: var(--c-ink);
	line-height: 1.25;
}
.tg-category-card__count {
	color: var(--c-muted);
	font-size: 12px;
}

/* Featured Articles */
.tg-featured-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.tg-featured-card {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid var(--c-border-soft);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 2px rgba(0,0,0,.04);
	transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.tg-featured-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.tg-featured-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.tg-featured-card__media img,
.tg-featured-card__media .card__placeholder {
	width: 100%; height: 100%; object-fit: cover;
}
.tg-featured-card__badge {
	position: absolute;
	top: 14px; left: 14px;
	display: inline-flex;
	padding: 5px 10px;
	background: var(--c-red);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	border-radius: 6px;
}
.tg-featured-card__body { padding: 20px 22px 22px; }
.tg-featured-card__title {
	font-size: 18px;
	font-weight: 800;
	color: var(--c-ink);
	margin: 0 0 10px;
	line-height: 1.3;
	letter-spacing: -.01em;
}
.tg-featured-card__meta {
	display: inline-flex; align-items: center;
	color: var(--c-muted);
	font-size: 13px;
}

/* Latest + Sidebar */
.tg-latest-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.tg-article-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.tg-article-row {
	display: grid;
	grid-template-columns: 110px 1fr 24px;
	gap: 16px;
	align-items: center;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--c-border-soft);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.tg-article-row:hover {
	transform: translateX(2px);
	box-shadow: 0 6px 18px rgba(0,0,0,.07);
}
.tg-article-row__media {
	width: 110px; height: 110px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--c-bg-grey);
	position: relative;
}
.tg-article-row__media img,
.tg-article-row__media .card__placeholder {
	width: 100%; height: 100%; object-fit: cover;
}
.tg-article-row__body { min-width: 0; }
.tg-article-row__title {
	font-size: 16px; font-weight: 800; color: var(--c-ink);
	margin: 0 0 6px;
	line-height: 1.3;
	letter-spacing: -.01em;
}
.tg-article-row__excerpt {
	color: var(--c-muted); font-size: 13.5px;
	line-height: 1.5;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tg-article-row__meta {
	color: var(--c-muted); font-size: 12px;
	display: inline-flex; align-items: center;
}
.tg-article-row__arrow {
	color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
}
.tg-article-row__arrow .icon { width: 16px; height: 16px; }

/* Sidebar */
.tg-sidebar {
	display: flex; flex-direction: column;
	gap: 18px;
}
.tg-card {
	background: #fff;
	border: 1px solid var(--c-border-soft);
	border-radius: 14px;
	padding: 22px;
}
.tg-card__title {
	font-size: 16px; font-weight: 800; color: var(--c-ink);
	margin: 0 0 14px;
}
.tg-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tg-chip {
	display: inline-flex;
	padding: 6px 14px;
	background: var(--c-bg-warm);
	color: var(--c-text);
	font-size: 12px; font-weight: 600;
	border-radius: 999px;
	text-decoration: none;
	transition: background 160ms var(--ease), color 160ms var(--ease);
}
a.tg-chip:hover { background: var(--c-red); color: #fff; }

/* Subscribe card */
.tg-subscribe {
	background: linear-gradient(135deg, var(--c-red) 0%, #B11717 100%);
	color: #fff;
	border-radius: 14px;
	padding: 22px;
	position: relative;
	overflow: hidden;
}
.tg-subscribe::after {
	content: '';
	position: absolute;
	right: -30px; bottom: -30px;
	width: 140px; height: 140px;
	background: radial-gradient(circle at center, rgba(255,255,255,.18) 0%, transparent 70%);
	pointer-events: none;
}
.tg-subscribe__title {
	color: #fff;
	font-size: 16px; font-weight: 800;
	margin: 0 0 8px;
	position: relative;
}
.tg-subscribe__sub {
	color: rgba(255,255,255,.9);
	font-size: 13px;
	margin: 0 0 14px;
	line-height: 1.5;
	position: relative;
}
.tg-subscribe__form {
	display: flex; flex-direction: column; gap: 10px;
	position: relative;
}
.tg-subscribe__form input {
	border: 0;
	background: #fff;
	color: var(--c-ink);
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
	outline: 0;
}
.tg-subscribe__form input::placeholder { color: var(--c-muted-2); }
.tg-subscribe__form .btn--solid {
	background: var(--c-ink) !important;
	color: #fff !important;
	border: 0;
}
.tg-subscribe__form .btn--solid:hover { background: #000 !important; }
.tg-subscribe__small {
	color: rgba(255,255,255,.78);
	font-size: 11px;
	margin: 10px 0 0;
	text-align: center;
	position: relative;
}

/* Responsive: phone landscape */
@media (min-width: 640px) {
	.tg-hero__title       { font-size: 56px; }
	.tg-category-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tg-featured-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tg-article-row       { grid-template-columns: 130px 1fr 24px; }
	.tg-article-row__media{ width: 130px; height: 130px; }
}

/* Tablet+ */
@media (min-width: 880px) {
	.tg-hero              { min-height: 460px; }
	.tg-hero__content     { padding: 96px 24px; }
	.tg-hero__title       { font-size: 64px; }
	.tg-section           { padding: 72px 0; }
	.tg-category-grid     { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
	.tg-featured-grid     { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
	.tg-latest-layout     { grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
	.tg-section__title    { font-size: 28px; }
}

/* Wide desktop */
@media (min-width: 1180px) {
	.tg-hero              { min-height: 520px; }
	.tg-hero__title       { font-size: 72px; }
}

/* ----------------------------- 404 + Search */
.error-shell { text-align: center; padding: var(--space-9) 24px; }
.error-shell h1 { font-size: var(--fs-5xl); color: var(--c-red); margin-bottom: 8px; }
.error-shell p { color: var(--c-muted); max-width: 520px; margin: 0 auto var(--space-6); }

/* ===========================================================
   SINGLE EXPERIENCE — modern redesign
   =========================================================== */

/* Hero — block layout, no flex, content positioned by min-height + flex-end inside content */
.exp-hero {
	position: relative;
	color: #fff;
	overflow: hidden;
	background: #1a1a1a;
}
.exp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.exp-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-hero__bg::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.2) 30%, rgba(0,0,0,.85) 100%);
}
.exp-hero__content {
	position: relative; z-index: 2;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 120px 24px 48px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 520px;
	box-sizing: border-box;
}
.exp-hero__crumb { font-size: 12px; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.exp-hero__crumb a:hover { color: #fff; text-decoration: underline; }
.exp-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 14px; border-radius: var(--radius-pill);
	background: rgba(255,255,255,.16); color: #fff;
	font-size: 12px; font-weight: 600;
	backdrop-filter: blur(8px);
}
.pill .icon { width: 14px; height: 14px; color: var(--c-red); }
.pill--rating { background: var(--c-red); }
.pill--rating .icon { color: #fff; }
.exp-hero__title { color: #fff; font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin: 0; max-width: 800px; }

/* Body — CSS Grid with minmax(0,1fr); same horizontal rhythm as homepage sections */
.exp-body {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 48px 24px 80px 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 40px;
	align-items: start;
	box-sizing: border-box;
}
.exp-main {
	min-width: 0;
	max-width: 100%;
	display: flex; flex-direction: column; gap: 28px;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.exp-main > * { min-width: 0; max-width: 100%; box-sizing: border-box; }
.exp-main img, .exp-main video, .exp-main iframe { max-width: 100%; height: auto; }
.exp-sidebar { min-width: 0; max-width: 100%; }
.exp-sidebar > * { box-sizing: border-box; max-width: 100%; }
@media (max-width: 1024px) {
	.exp-body { grid-template-columns: 1fr; padding: var(--space-7) 20px; gap: 28px; }
}
@media (max-width: 640px) {
	.exp-body { padding: var(--space-6) 16px; gap: 22px; }
}

/* Generic block — used inside .exp-main */
.exp-block {
	background: #fff;
	border: 1px solid var(--c-border-soft);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
	.exp-block { padding: 22px 18px; }
}
.exp-block__title { font-size: 22px; font-weight: 800; color: var(--c-ink); margin-bottom: 14px; letter-spacing: -.01em; }
.exp-block__lede  { color: var(--c-muted); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.exp-prose        { color: var(--c-text); font-size: 15px; line-height: 1.75; }
.exp-prose p:last-child { margin-bottom: 0; }

/* Meta strip (Duration / Group / Language / Experience) */
.exp-meta-strip {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	background: var(--c-bg-warm);
	border-radius: var(--radius);
	padding: 20px;
}
.exp-meta-strip__item { display: flex; gap: 12px; align-items: center; }
.exp-meta-strip__icon {
	flex: none; width: 40px; height: 40px; border-radius: 50%;
	background: #fff; color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-sm);
}
.exp-meta-strip__icon .icon { width: 18px; height: 18px; }
.exp-meta-strip__label { color: var(--c-muted); font-size: 12px; line-height: 1.2; }
.exp-meta-strip__value { color: var(--c-ink); font-weight: 700; font-size: 14px; line-height: 1.3; }

/* Gallery */
.exp-gallery {
	display: grid; grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 8px; min-height: 360px;
}
.exp-gallery__item { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.exp-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.exp-gallery__item:hover img { transform: scale(1.05); }
.exp-gallery__item--0 { grid-row: 1 / 3; }

/* Highlights / Inclusions two-col */
.exp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.exp-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.exp-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--c-text); line-height: 1.5; }
.exp-list__check {
	flex: none; width: 22px; height: 22px; border-radius: 50%;
	background: var(--c-red-50); color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.exp-list__check .icon { width: 12px; height: 12px; }

/* Calendar */
.exp-calendar {
	background: #fff; border: 1px solid var(--c-border-soft);
	border-radius: var(--radius); padding: 32px;
	box-shadow: var(--shadow-sm);
}
.exp-calendar__inner { text-align: center; padding: 16px 0; }
.exp-calendar__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 72px; height: 72px; border-radius: 50%;
	background: var(--c-red-50); color: var(--c-red);
	margin: 0 auto 18px;
}
.exp-calendar__icon .icon { width: 32px; height: 32px; }
.exp-calendar__inner h3 { font-size: 22px; font-weight: 800; color: var(--c-ink); margin-bottom: 6px; }
.exp-calendar__sub { color: var(--c-muted); margin-bottom: 22px; font-size: 14px; }
.exp-calendar__frame {
	background: var(--c-bg-warm); border-radius: var(--radius);
	padding: 12px;
}
.exp-calendar__frame iframe {
	width: 100% !important; min-height: 480px; border: 0; border-radius: var(--radius-sm); background: #fff;
}

/* Meeting */
.exp-meeting {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 16px; background: var(--c-bg-warm); border-radius: var(--radius);
	margin-bottom: 16px;
}
.exp-meeting__icon {
	flex: none; width: 40px; height: 40px; border-radius: 50%;
	background: #fff; color: var(--c-red);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-sm);
}
.exp-meeting__label { font-size: 12px; color: var(--c-muted); }
.exp-meeting__addr  { font-size: 15px; color: var(--c-ink); font-weight: 600; }
.exp-map {
	border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/8;
	background: var(--c-bg-grey);
}
.exp-map iframe { width: 100%; height: 100%; border: 0; }

/* Reviews */
.exp-reviews-head { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.exp-reviews-avg { display: flex; align-items: center; gap: 10px; }
.exp-reviews-avg__num { font-size: 28px; font-weight: 800; color: var(--c-red); line-height: 1; }
.exp-reviews-avg__count { color: var(--c-muted); font-size: 13px; }
.exp-reviews-avg .stars .icon { width: 18px; height: 18px; }
.exp-reviews { display: grid; gap: 18px; }
.exp-review {
	border: 1px solid var(--c-border-soft); border-radius: var(--radius);
	padding: 18px;
}
.exp-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.exp-review__avatar {
	flex: none; width: 40px; height: 40px; border-radius: 50%;
	background: var(--c-red); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 16px;
}
.exp-review__name { font-weight: 700; color: var(--c-ink); font-size: 14px; }
.exp-review__loc  { color: var(--c-muted); font-size: 12px; }
.exp-review__stars { margin-left: auto; color: var(--c-red); }
.exp-review__stars .stars .icon { width: 14px; height: 14px; }
.exp-review__quote { color: var(--c-text); font-size: 14px; line-height: 1.6; margin: 0; }

/* ───── Sticky sidebar ───── */
.exp-sidebar { position: relative; }
.exp-sidebar__card {
	position: sticky; top: calc(var(--header-h) + 16px);
	background: #fff; border: 1px solid var(--c-border-soft);
	border-radius: var(--radius); padding: 28px;
	box-shadow: var(--shadow);
}
.exp-sidebar__price {
	font-size: 36px; font-weight: 800; color: var(--c-ink);
	letter-spacing: -.02em; margin-bottom: 18px;
	padding-bottom: 18px; border-bottom: 1px solid var(--c-border-soft);
	display: flex; align-items: baseline; gap: 6px;
}
.exp-sidebar__price small {
	font-size: 14px; color: var(--c-muted); font-weight: 500;
}
.exp-sidebar__row {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 18px;
}
.exp-sidebar__row label { font-size: 14px; color: var(--c-text); font-weight: 600; }
.exp-sidebar__stepper {
	display: inline-flex; align-items: center;
	border: 1px solid var(--c-border); border-radius: var(--radius-pill);
	overflow: hidden;
}
.exp-sidebar__stepper button {
	background: #fff; border: 0; width: 32px; height: 32px;
	font-size: 18px; color: var(--c-ink); cursor: pointer;
}
.exp-sidebar__stepper button:hover { background: var(--c-red-50); color: var(--c-red); }
.exp-sidebar__stepper input {
	border: 0; outline: 0; text-align: center; width: 40px;
	font-size: 14px; font-weight: 700; color: var(--c-ink);
	background: transparent;
	-moz-appearance: textfield;
}
.exp-sidebar__stepper input::-webkit-outer-spin-button,
.exp-sidebar__stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.exp-sidebar .btn { margin-top: 4px; }
.exp-sidebar .btn .icon { width: 16px; height: 16px; }

.exp-sidebar__icons {
	display: flex; gap: 8px; margin-top: 14px; justify-content: center;
}
.exp-sidebar__icons button {
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid var(--c-border);
	background: #fff; color: var(--c-muted);
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: all var(--dur) var(--ease);
}
.exp-sidebar__icons button:hover { border-color: var(--c-red); color: var(--c-red); }
.exp-sidebar__icons button.is-on { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.exp-sidebar__icons button.is-on svg { fill: currentColor; }

.exp-sidebar__trust {
	list-style: none; padding: 18px 0 0; margin: 18px 0 0;
	border-top: 1px solid var(--c-border-soft);
	display: grid; gap: 10px;
}
.exp-sidebar__trust li {
	display: flex; align-items: center; gap: 8px;
	font-size: 12px; color: var(--c-muted);
}
.exp-sidebar__trust .icon { color: var(--c-red); width: 14px; height: 14px; }

/* ───── Mobile collapse ───── */
@media (max-width: 1024px) {
	.exp-sidebar__card { position: static; }
	.exp-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; min-height: 0; }
	.exp-gallery__item--0 { grid-row: 1; grid-column: 1 / -1; }
}
@media (max-width: 768px) {
	.exp-hero { min-height: 420px; }
	.exp-hero__content { padding: 56px 20px 36px; }
	.exp-hero__title { font-size: 32px; }
	.exp-block { padding: 24px 18px; }
	.exp-block__title { font-size: 18px; }
	.exp-meta-strip { grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px; }
	.exp-two-col { grid-template-columns: 1fr; }
	.exp-calendar { padding: 24px 18px; }
	.exp-calendar__inner h3 { font-size: 18px; }
	.exp-calendar__frame iframe { min-height: 380px; }
	.exp-map { aspect-ratio: 16/10; }
	.exp-sidebar__card { padding: 22px 18px; }
	.exp-sidebar__price { font-size: 28px; }
	.exp-reviews-head { flex-direction: column; }
	.exp-gallery { grid-template-rows: 180px 180px 180px; }
	.exp-review__stars { margin-left: 0; }
	.exp-review__head { flex-wrap: wrap; }
}
@media (max-width: 480px) {
	.exp-hero { min-height: 380px; }
	.exp-hero__content { min-height: 380px; padding: 80px 16px 32px; }
	.exp-hero__title { font-size: 26px; }
	.exp-meta-strip { grid-template-columns: 1fr; }
	.exp-gallery { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px 160px 160px; }
	.exp-gallery__item--0 { grid-column: 1; }
}

/* ===========================================================
   SINGLE GUIDE — editorial article layout
   =========================================================== */

.guide-hero {
	background: var(--c-bg-warm);
	padding: 56px 0 32px;
}
.guide-hero__chip {
	display: inline-block;
	color: var(--c-red);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.guide-hero__title {
	font-size: 44px;
	font-weight: 800;
	color: var(--c-ink);
	letter-spacing: -.02em;
	line-height: 1.1;
	margin: 0 0 16px;
	max-width: 800px;
}
.guide-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: var(--c-muted);
	font-size: 14px;
}
.guide-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.guide-hero__meta .icon { width: 14px; height: 14px; }

.guide-body {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 48px 24px 80px 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
	box-sizing: border-box;
}
.guide-article { min-width: 0; }
.guide-sidebar {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 1024px) {
	.guide-body { grid-template-columns: 1fr; padding: var(--space-7) 20px; gap: 32px; }
}
@media (max-width: 640px) {
	.guide-body { padding: var(--space-6) 16px; gap: 24px; }
}

.guide-article__featured {
	margin: 0 0 32px;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16/9;
}
.guide-article__featured img {
	width: 100%; height: 100%; object-fit: cover;
}

.guide-article__content {
	font-size: 17px;
	line-height: 1.75;
	color: var(--c-text);
}
.guide-article__content h2 {
	font-size: 28px;
	margin-top: 2em;
	margin-bottom: .6em;
	color: var(--c-ink);
}
.guide-article__content h3 {
	font-size: 22px;
	margin-top: 1.6em;
	margin-bottom: .5em;
	color: var(--c-ink);
}
.guide-article__content p { margin-bottom: 1.3em; }
.guide-article__content img,
.guide-article__content figure img {
	border-radius: var(--radius);
	margin: 24px 0;
}
.guide-article__content blockquote {
	border-left: 4px solid var(--c-red);
	background: var(--c-bg-warm);
	padding: 18px 22px;
	margin: 28px 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--c-ink);
}
.guide-article__content a {
	color: var(--c-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.guide-article__content ul,
.guide-article__content ol { margin: 1em 0 1.5em; padding-left: 1.4em; }
.guide-article__content li { margin-bottom: 8px; }
.guide-article__content code {
	background: var(--c-bg-grey); padding: 2px 6px; border-radius: 4px; font-size: .9em;
}

.guide-article__footer {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--c-border-soft);
	display: flex;
	gap: 14px;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	font-size: 14px;
	color: var(--c-muted);
}

/* Mobile collapse */
@media (max-width: 1024px) {
	.guide-hero { padding: 40px 0 24px; }
	.guide-hero__title { font-size: 36px; }
}
@media (max-width: 640px) {
	.guide-hero__title { font-size: 28px; }
	.guide-article__content { font-size: 16px; }
	.guide-article__content h2 { font-size: 22px; }
	.guide-article__content h3 { font-size: 18px; }
}
