:root {
	/* Palette */
	--asphalt: #16242B;
	--asphalt-2: #1F343D;
	--paper: #F3ECDC;
	--paper-2: #EAE0C8;
	--cream: #FBF8F0;
	--terracotta: #D9714E;
	--terracotta-dk: #B85738;
	--pine: #3F6354;
	--pine-dk: #2E4A3F;
	--mustard: #E3A53C;
	--mustard-dk: #B9802A;
	--ink: #23211B;

	/* Functional aliases */
	--bg: #F3ECDC;
	--bg-soft: #fbf8f3;
	--surface: #FBF8F0;
	--surface-alt: #EAE0C8;
	--text: #23211B;
	--muted: #6B5D52;
	--primary: #D9714E;
	--primary-dark: #B85738;
	--secondary: #3F6354;
	--secondary-soft: #e4ede8;
	--line: rgba(35, 33, 27, 0.12);
	--line-strong: rgba(35, 33, 27, 0.18);
	--shadow: 0 18px 42px -10px rgba(22, 36, 43, 0.28);
	--shadow-soft: 0 10px 28px rgba(22, 36, 43, 0.08);

	/* Typography */
	--f-display: 'Fraunces', serif;
	--f-label: 'Oswald', sans-serif;
	--f-body: 'Manrope', sans-serif;

	--radius-xl: 28px;
	--radius-lg: 22px;
	--radius-md: 16px;
	--container: min(1180px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--f-body);
	color: var(--text);
	background: var(--paper);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	width: 100%;
}

.page-shell {
	min-height: 100vh;
	padding-bottom: 56px;
}

.hero,
.section {
	width: var(--container);
	margin: 0 auto;
}

.hero {
	padding: 22px 0 44px;
	background: radial-gradient(120% 140% at 15% -10%, #213A45 0%, var(--asphalt) 55%, #0E1A1F 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	left: 50%; bottom: -8%;
	width: 2px; height: 65%;
	background: repeating-linear-gradient(to bottom, var(--mustard) 0 20px, transparent 20px 40px);
	opacity: 0.28;
	transform: translateX(-50%);
	pointer-events: none;
}

.hero-stars {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		radial-gradient(2px 2px at 8% 18%, rgba(255,255,255,.55), transparent),
		radial-gradient(1.5px 1.5px at 75% 12%, rgba(255,255,255,.45), transparent),
		radial-gradient(2px 2px at 58% 35%, rgba(255,255,255,.35), transparent),
		radial-gradient(1.5px 1.5px at 28% 52%, rgba(255,255,255,.4), transparent),
		radial-gradient(2px 2px at 88% 58%, rgba(255,255,255,.35), transparent),
		radial-gradient(1.5px 1.5px at 42% 72%, rgba(255,255,255,.45), transparent),
		radial-gradient(2px 2px at 70% 82%, rgba(255,255,255,.3), transparent),
		radial-gradient(1px 1px at 18% 88%, rgba(255,255,255,.3), transparent),
		radial-gradient(1.5px 1.5px at 92% 28%, rgba(255,255,255,.4), transparent),
		radial-gradient(2px 2px at 35% 8%, rgba(255,255,255,.5), transparent);
}

.hero-stage {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	gap: 28px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 22px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.13);
	width: var(--container);
	margin: 0 auto 4px;
}

.brand {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.brand strong {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--cream);
}

.brand-kicker,
.eyebrow,
.label,
.card-kicker {
	font-family: var(--f-label);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--secondary);
}

.brand-kicker {
	color: var(--mustard);
}

.menu {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.menu a {
	padding: 8px 14px;
	border-radius: 999px;
	font-family: var(--f-label);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(251, 248, 240, 0.65);
	transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--cream);
}

.menu-toggle {
	display: none;
}

.hero-content,
.hero-visual {
	border-radius: 28px;
	background: rgba(22, 36, 43, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(16px);
}

.hero-content {
	padding: 52px 50px;
}

.hero-kicker-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-edition {
	font-family: var(--f-label);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mustard);
}

.hero-note {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-note strong {
	display: block;
	margin-bottom: 8px;
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--cream);
}

.hero-note p {
	margin: 0;
	color: rgba(251, 248, 240, 0.6);
	line-height: 1.7;
}

.hero h1,
.section h2,
.love-card h2 {
	margin: 10px 0 18px;
	font-family: var(--f-display);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.hero h1 {
	font-size: clamp(3.2rem, 5vw, 5.2rem);
	max-width: 10ch;
	color: var(--cream);
}

.section h2,
.love-card h2 {
	font-size: clamp(2.1rem, 3.8vw, 3.6rem);
}

.hero-copy,
.section-heading p,
.feature-card p,
.hint-box p,
.love-card p,
.assumptions p,
.cost-item p,
.timeline-day p,
.restaurant-card p,
.route-leg p {
	color: var(--muted);
	line-height: 1.72;
}

.hero-copy {
	max-width: 52ch;
	font-size: 1rem;
	color: rgba(251, 248, 240, 0.68);
}

.hero-copy::first-letter,
.love-card p::first-letter {
	font-family: var(--f-display);
	font-size: 1.45em;
	line-height: 0.9;
	font-weight: 700;
	color: var(--terracotta);
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 28px 0 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button.primary {
	background: linear-gradient(135deg, var(--terracotta) 0%, #e8926b 100%);
	color: #1B1209;
	box-shadow: 0 14px 28px rgba(217, 113, 78, 0.3);
}

.button.secondary {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: var(--cream);
}

.hero-stats,
.summary-grid,
.feature-grid,
.gallery-grid {
	display: grid;
	gap: 18px;
}

.hero-stats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stats article {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
}

.hero-stats article::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 14px;
	width: 22px;
	height: 2px;
	background: var(--mustard);
	opacity: 0.5;
}

.hero-stats .label {
	color: rgba(251, 248, 240, 0.5);
}

.hero-stats strong {
	display: block;
	margin-top: 10px;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--cream);
}

.hero-visual {
	padding: 22px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	gap: 16px;
}

.hero-gallery {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 12px;
	min-height: 360px;
}

.hero-photo {
	position: relative;
	margin: 0;
	border-radius: 24px;
	overflow: hidden;
	background: #d8d0c5;
}

.hero-photo img {
	height: 100%;
	object-fit: cover;
}

.hero-photo figcaption {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 252, 247, 0.9);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--secondary);
}

.hero-photo-large {
	grid-row: span 2;
	min-height: 360px;
}

.hero-photo-small {
	min-height: 174px;
}

.countdown-card {
	padding: 22px;
	border-radius: 22px;
	background: rgba(22, 36, 43, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	position: relative;
}

.countdown-card .card-kicker {
	color: var(--mustard);
}

.countdown-card p {
	color: rgba(251, 248, 240, 0.6);
	margin: 0;
}

.countdown-card p strong {
	color: var(--cream);
}

.countdown-card>* {
	position: relative;
	z-index: 1;
}

.countdown-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 18px 0;
}

.countdown-grid div {
	padding: 14px 10px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown-grid span {
	color: rgba(251, 248, 240, 0.5);
}

.countdown-grid strong {
	display: block;
	font-size: 1.7rem;
	font-family: var(--f-display);
	color: var(--mustard);
}

.section {
	padding: 36px 30px 44px;
	position: relative;
	border-radius: 28px;
	background: var(--cream);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	margin-bottom: 20px;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 24px;
}

.section-heading h2 {
	max-width: 11ch;
}

.section-heading p:last-child {
	max-width: 58ch;
}

.compact-heading {
	max-width: 700px;
}

.summary-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	gap: 28px;
	align-items: start;
}

.summary-layout>.section-heading {
	position: sticky;
	top: 96px;
	padding-right: 12px;
}

.summary-grid,
.feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-list {
	grid-template-columns: 1fr;
	max-width: 820px;
}

.summary-body {
	display: grid;
	gap: 22px;
}

.summary-quote {
	margin: 28px 0 0;
	padding-left: 18px;
	border-left: 3px solid var(--primary);
	font-family: "Fraunces", serif;
	font-size: 1.35rem;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--text);
	position: relative;
}

.summary-quote::before {
	content: "\201C";
	position: absolute;
	left: -4px;
	top: -22px;
	font-family: "Fraunces", serif;
	font-size: 3.5rem;
	line-height: 1;
	color: rgba(201, 109, 58, 0.18);
}

.summary-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 22px 24px;
	border-radius: 26px;
	background: linear-gradient(135deg, #1f4754 0%, #2f6170 100%);
	color: #fffaf4;
	box-shadow: 0 18px 34px rgba(32, 76, 89, 0.16);
}

.summary-strip .label,
.summary-strip strong {
	color: #fffaf4;
}

.summary-strip strong {
	display: block;
	margin-top: 8px;
	font-family: "Fraunces", serif;
	font-size: 1.45rem;
	line-height: 1.1;
}

.glass-card,
.feature-card,
.cost-panel,
.hint-box,
.map-card,
.timeline-day,
.restaurant-card,
.love-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-soft);
}

.glass-card,
.feature-card,
.cost-panel,
.restaurant-card,
.love-card {
	padding: 28px;
	position: relative;
	overflow: hidden;
}

.glass-card h3,
.feature-card h3,
.restaurant-card h3,
.map-sidebar h3,
.cost-panel h3 {
	font-family: "Fraunces", serif;
	letter-spacing: -0.02em;
}

.glass-card::before,
.feature-card::before,
.restaurant-card::before,
.cost-panel::before,
.love-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary), #ebb07a);
	opacity: 0.9;
}

.glass-card ul,
.timeline-highlights,
.restaurant-card ul {
	margin: 16px 0 0;
	padding-left: 18px;
	color: var(--muted);
	line-height: 1.7;
}

.map-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	gap: 28px;
	align-items: start;
}

.map-card {
	padding: 16px;
	background: #ffffff;
	border-radius: 30px;
}

#trip-map {
	height: 560px;
	border-radius: 22px;
	border: 1px solid rgba(61, 45, 35, 0.06);
}

.map-sidebar {
	display: grid;
	gap: 18px;
	align-self: stretch;
}

.map-sidebar h3 {
	margin: 0;
	font-family: "Fraunces", serif;
	font-size: 1.7rem;
	letter-spacing: -0.02em;
}

.route-legs {
	display: grid;
	gap: 12px;
}

.route-leg,
.hint-box {
	padding: 20px;
	border-radius: 22px;
	background: #fffdfa;
	border: 1px solid rgba(61, 45, 35, 0.08);
}

.route-leg-top {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.route-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--secondary-soft);
	color: var(--secondary);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route-leg-top p {
	margin: 4px 0 0;
	font-size: 0.96rem;
	line-height: 1.6;
}

.route-leg-footer {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(61, 45, 35, 0.08);
}

.route-chip {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: #f4ede3;
	color: var(--secondary);
	font-size: 0.84rem;
	font-weight: 700;
}

.route-leg strong,
.cost-item strong,
.timeline-day h3,
.restaurant-card h3,
.feature-card h3,
.glass-card h3,
.hint-box strong {
	display: block;
	margin-bottom: 10px;
	font-weight: 800;
}

.hint-box strong {
	font-size: 1rem;
	color: var(--text);
}

.hint-box p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.timeline-list {
	display: grid;
	gap: 22px;
}

.timeline-day {
	display: grid;
	grid-template-columns: 72px 0.96fr 1.04fr;
	gap: 26px;
	padding: 22px;
	overflow: hidden;
}

.timeline-day.is-alt {
	grid-template-columns: 72px 1.04fr 0.96fr;
}

.timeline-chapter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 10px;
	gap: 6px;
}

.timeline-number {
	font-family: var(--f-display);
	font-size: 2rem;
	line-height: 1;
	letter-spacing: -0.04em;
}

.timeline-icon-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
}

.timeline-icon-badge svg {
	width: 18px;
	height: 18px;
}

.timeline-word {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--f-label);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.6;
}

/* Timeline color accents */
.timeline-day.accent-pine .timeline-chapter { color: var(--pine); }
.timeline-day.accent-pine .timeline-icon-badge { background: rgba(63,99,84,.14); color: var(--pine); }
.timeline-day.accent-pine { border-left: 3px solid var(--pine); }

.timeline-day.accent-terracotta .timeline-chapter { color: var(--terracotta-dk); }
.timeline-day.accent-terracotta .timeline-icon-badge { background: rgba(217,113,78,.14); color: var(--terracotta-dk); }
.timeline-day.accent-terracotta { border-left: 3px solid var(--terracotta); }

.timeline-day.accent-mustard .timeline-chapter { color: var(--mustard-dk); }
.timeline-day.accent-mustard .timeline-icon-badge { background: rgba(227,165,60,.18); color: var(--mustard-dk); }
.timeline-day.accent-mustard { border-left: 3px solid var(--mustard); }

.timeline-day.accent-asphalt .timeline-chapter { color: var(--asphalt-2); }
.timeline-day.accent-asphalt .timeline-icon-badge { background: rgba(22,36,43,.1); color: var(--asphalt-2); }
.timeline-day.accent-asphalt { border-left: 3px solid var(--asphalt-2); }

.timeline-day.is-alt .timeline-media {
	order: 3;
}

.timeline-day.is-alt .timeline-content {
	order: 2;
}

.timeline-media {
	position: relative;
	min-height: 320px;
	border-radius: 24px;
	overflow: hidden;
	background: #d5d0ca;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.timeline-slides,
.timeline-slide {
	position: absolute;
	inset: 0;
}

.timeline-slide {
	margin: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.timeline-slide.is-active {
	opacity: 1;
}

.timeline-slide img {
	height: 100%;
	object-fit: cover;
}

.timeline-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 16, 18, 0.02) 30%, rgba(12, 12, 12, 0.62) 100%);
	pointer-events: none;
}

.timeline-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 3;
	padding: 11px 14px;
	border-radius: 999px;
	background: rgba(255, 251, 245, 0.92);
	color: var(--primary-dark);
	font-weight: 800;
}

.carousel-arrow,
.carousel-dot {
	border: 0;
	cursor: pointer;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 251, 245, 0.92);
	color: var(--primary-dark);
	font-size: 1.6rem;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.carousel-arrow.prev {
	left: 14px;
}

.carousel-arrow.next {
	right: 14px;
}

.carousel-dots {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 3;
	display: inline-flex;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(255, 251, 245, 0.82);
	backdrop-filter: blur(8px);
}

.carousel-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(91, 73, 59, 0.32);
	transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
	background: var(--primary);
	transform: scale(1.18);
}

.timeline-content {
	padding: 18px 18px 18px 4px;
}

.timeline-content h3 {
	font-family: "Fraunces", serif;
	font-size: 1.85rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--text);
	max-width: 12ch;
}

.timeline-closing {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(61, 45, 35, 0.08);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--secondary);
}

.timeline-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 14px 0 18px;
}

.timeline-meta span,
.tag {
	display: inline-flex;
	padding: 9px 13px;
	border-radius: 999px;
	background: var(--secondary-soft);
	color: var(--secondary);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.feature-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
	min-height: 210px;
	background: linear-gradient(180deg, #fffefb 0%, #f7f2e9 100%);
}

.cost-layout {
	grid-template-columns: 1.1fr 0.9fr;
}

.cost-breakdown {
	display: grid;
	gap: 14px;
}

.cost-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 22px;
	padding: 20px 0;
	border-radius: 18px;
	border: 0;
	border-bottom: 1px solid rgba(61, 45, 35, 0.08);
	background: transparent;
}

.cost-item:first-child {
	padding-top: 4px;
}

.cost-item:last-child {
	padding-bottom: 4px;
	border-bottom: 0;
}

.cost-copy {
	max-width: 52ch;
}

.cost-tag {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--secondary-soft);
	color: var(--secondary);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cost-copy strong {
	font-family: "Fraunces", serif;
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.cost-copy p {
	margin: 8px 0 0;
	font-size: 0.98rem;
	line-height: 1.68;
}

.cost-figure {
	padding-top: 6px;
	text-align: right;
}

.cost-item .price {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--primary-dark);
	white-space: nowrap;
}

.cost-panel.highlight {
	background: linear-gradient(180deg, #214c59 0%, #2f6271 100%);
	border-color: rgba(255, 255, 255, 0.06);
	box-shadow: 0 20px 38px rgba(32, 76, 89, 0.16);
}

.cost-panel.highlight h3,
.cost-panel.highlight .grand-total,
.cost-panel.highlight .assumptions p {
	color: #fffaf4;
}

.grand-total {
	margin: 8px 0 24px;
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	font-family: "Fraunces", serif;
	letter-spacing: -0.04em;
}

.restaurant-card {
	padding: 0;
	overflow: hidden;
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: stretch;
}

.restaurant-visual {
	min-height: 100%;
}

.restaurant-card img,
.restaurant-placeholder {
	height: 100%;
}

.restaurant-card img {
	object-fit: cover;
}

.restaurant-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eef2f3, #f5ece2);
	color: var(--secondary);
	font-family: "Fraunces", serif;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.restaurant-card .content {
	padding: 26px;
}

.restaurant-card.no-image .content {
	padding-top: 28px;
}

.restaurant-lead {
	margin: 0 0 18px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--text);
}

.restaurant-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.restaurant-meta span {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 14px;
	border-top: 1px solid rgba(61, 45, 35, 0.08);
	color: var(--muted);
	font-size: 0.95rem;
}

.restaurant-meta strong {
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--secondary);
}

.gallery-grid {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 94px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid rgba(61, 45, 35, 0.08);
	box-shadow: var(--shadow-soft);
	background: #ddd5cb;
}

.gallery-item::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 18px;
	pointer-events: none;
}

.gallery-item img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-item .overlay {
	position: absolute;
	inset: auto 0 0;
	padding: 18px;
	color: #fff9f3;
	background: linear-gradient(180deg, transparent, rgba(18, 16, 14, 0.82));
	font-weight: 700;
}

.gallery-item .overlay strong {
	display: block;
	margin-top: 8px;
	font-family: "Fraunces", serif;
	font-size: 1.3rem;
	line-height: 1.05;
}

.gallery-item .overlay .label {
	color: rgba(251, 200, 120, 0.88);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
}

.gallery-item.wide {
	grid-column: span 7;
	grid-row: span 3;
}

.gallery-item.tall {
	grid-column: span 5;
	grid-row: span 4;
}

.gallery-item.medium {
	grid-column: span 4;
	grid-row: span 3;
}

.gallery-item.small {
	grid-column: span 3;
	grid-row: span 2;
}

.love-card {
	text-align: center;
	padding: 42px 38px;
	background: linear-gradient(180deg, #fffdf9 0%, #f5eee6 100%);
}

.love-card p {
	max-width: 62ch;
	margin-left: auto;
	margin-right: auto;
}

.love-cover-top,
.love-signoff {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.cover-mark {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--primary-dark);
}

.love-card h2 {
	max-width: 12ch;
	margin-left: auto;
	margin-right: auto;
}

.love-card p {
	font-size: 1.02rem;
}

.love-signoff {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(61, 45, 35, 0.08);
}

.love-signoff span {
	font-family: "Fraunces", serif;
	font-size: 1.2rem;
	color: var(--secondary);
}


.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: #fffaf4;
	color: var(--text);
}

.leaflet-container a {
	color: var(--secondary);
}

/* Hero text overrides for dark background */
.hero .eyebrow {
	color: rgba(251, 248, 240, 0.58);
}

.hero .section-heading p,
.hero-copy,
.hero .muted {
	color: rgba(251, 248, 240, 0.62);
}

/* Summary quote */
.summary-quote {
	border-left-color: var(--terracotta);
	color: var(--ink);
}

.summary-quote::before {
	color: rgba(217, 113, 78, 0.2);
}

/* Summary strip */
.summary-strip {
	background: linear-gradient(135deg, var(--asphalt) 0%, var(--asphalt-2) 100%);
}

/* Feature cards */
.feature-card {
	background: linear-gradient(180deg, var(--cream) 0%, var(--paper-2) 100%);
}

/* Active nav link */
.menu a.is-active {
	background: rgba(255, 255, 255, 0.14);
	color: var(--cream);
}

/* Receipt / budget table */
.receipt {
	background: var(--surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.receipt-row {
	display: grid;
	grid-template-columns: 1.4fr 1.4fr 0.5fr;
	gap: 14px;
	padding: 18px 26px;
	border-bottom: 1px dashed var(--line);
	align-items: center;
}

.receipt-row:last-child {
	border-bottom: 0;
}

.receipt-head {
	font-family: var(--f-label);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--muted);
	background: var(--surface-alt);
}

.receipt-leg {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.receipt-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 8px;
	background: var(--secondary-soft);
	color: var(--secondary);
	margin-top: 2px;
}

.receipt-leg strong {
	display: block;
	font-weight: 700;
	font-size: 1rem;
}

.receipt-tag {
	font-family: var(--f-label);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--muted);
	font-style: normal;
	margin-top: 3px;
	display: block;
}

.receipt-note {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.receipt-price {
	font-family: var(--f-label);
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-dark);
	white-space: nowrap;
}

.txt-right {
	text-align: right;
}

.receipt-total {
	background: linear-gradient(135deg, var(--asphalt) 0%, var(--asphalt-2) 100%);
	color: var(--cream);
}

.receipt-total .receipt-leg strong {
	color: var(--cream);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-family: var(--f-label);
}

.receipt-total .receipt-note {
	color: rgba(251, 248, 240, 0.55);
	font-size: 0.82rem;
}

.receipt-grand {
	font-family: var(--f-display);
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--mustard);
	white-space: nowrap;
}

.receipt-note-footer {
	margin-top: 14px;
	font-size: 0.82rem;
	color: var(--muted);
	padding-left: 4px;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 900;
	align-items: center;
	justify-content: center;
}

.lightbox.is-open {
	display: flex;
}

.lb-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 8, 6, 0.9);
	backdrop-filter: blur(10px);
}

.lb-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 251, 245, 0.94);
	color: var(--text);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.15s ease;
}

.lb-close:hover {
	transform: scale(1.08);
}

.lb-prev,
.lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 251, 245, 0.94);
	color: var(--text);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.15s ease;
}

.lb-prev {
	left: 20px;
}

.lb-next {
	right: 20px;
}

.lb-prev:hover {
	transform: translateY(-50%) scale(1.08);
}

.lb-next:hover {
	transform: translateY(-50%) scale(1.08);
}

.lb-panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 0 80px;
	max-width: 100vw;
	max-height: 100vh;
}

.lb-img {
	max-width: 100%;
	max-height: 82vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 20px;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.lb-caption {
	color: rgba(255, 250, 244, 0.78);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
}

/* Gallery item clickable cursor */
.gallery-item {
	cursor: pointer;
}

/* Timeline curiosities block */
.timeline-curiosity {
	margin-top: 14px;
	padding: 14px 16px;
	border-radius: 14px;
	background: var(--secondary-soft);
	font-size: 0.92rem;
	color: var(--secondary);
	line-height: 1.6;
}

.timeline-curiosity strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
