/* ===== BASE / RESET ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--cream: #f5efe0;
	--parchment: #ede4cc;
	--brown-dark: #3b2212;
	--brown-mid: #6b3e26;
	--brown-light: #9c6a3c;
	--red: #c0272d;
	--red-dark: #8b1a1f;
	--gold: #d4a017;
	--gold-light: #f0c040;
	--text-dark: #2a1608;
	--text-body: #4a2e10;
	--white: #fffdf7;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 400;
	background: var(--cream);
	color: var(--text-body);
	line-height: 1.55;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

/* ===== NAVIGATION ===== */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	background: var(--brown-dark);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.site-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: "Dancing Script", cursive;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gold-light);
	letter-spacing: 0.02em;
}

.site-nav__logo {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	object-fit: contain;
	flex: 0 0 auto;
}

.site-nav__brand:hover {
	color: var(--gold-light);
}

.site-nav__links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__links a {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--parchment);
	transition: color 0.2s ease;
}

.site-nav__links a:hover {
	color: var(--gold-light);
}

.site-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.site-nav__toggle-bar {
	display: block;
	height: 3px;
	width: 26px;
	background: var(--parchment);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.site-nav__dropdown {
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--brown-dark);
	padding: 1.2rem 5%;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	z-index: 99;
}

.site-nav__dropdown.is-open {
	display: block;
}

.site-nav__dropdown ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
}

.site-nav__dropdown a {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--parchment);
}

.site-nav__dropdown a:hover {
	color: var(--gold-light);
}

@media (max-width: 768px) {
	.site-nav__links {
		display: none;
	}

	.site-nav__toggle {
		display: flex;
	}
}

@media (min-width: 769px) {
	.site-nav__dropdown {
		display: none !important;
	}
}

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 5% 3rem;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 60% 40%, rgba(212, 160, 23, 0.18) 0%, transparent 60%),
		radial-gradient(ellipse at 20% 80%, rgba(192, 39, 45, 0.1) 0%, transparent 50%),
		var(--cream);
}

.hero__photo {
	position: absolute;
	inset: 0;
	background: url("assets/hero-banner.png") center / cover no-repeat;
	opacity: 0.35;
	z-index: 0;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: min(1100px, 94vw);
	animation: fadeUp 0.9s ease both;
}

.hero__content {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero__logo {
	max-width: min(1000px, 92vw);
	height: auto;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 8px 32px rgba(59, 34, 18, 0.22));
}

.hero__tagline {
	font-family: "Playfair Display", Georgia, serif;
	font-style: italic;
	font-size: clamp(1.22rem, 2.85vw, 1.5rem);
	color: var(--brown-dark);
	line-height: 1.45;
	letter-spacing: 0.02em;
	text-shadow:
		0 0 1px var(--cream),
		0 1px 0 rgba(255, 253, 247, 0.75),
		0 0 28px rgba(245, 239, 224, 0.95);
	margin: 1.25rem 0 2.5rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-cta {
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 14px 36px;
	border-radius: 50px;
	background: var(--brown-dark);
	color: var(--gold-light);
	border: 2px solid var(--brown-dark);
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
	background: var(--red);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.hero-cta-outline {
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 14px 36px;
	border-radius: 50px;
	border: 2px solid var(--brown-dark);
	color: var(--brown-dark);
	background: transparent;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.hero-cta-outline:hover {
	background: var(--brown-dark);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.hero__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.hero__pill {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	color: var(--brown-mid);
	background: var(--parchment);
	border: 1px solid rgba(107, 62, 38, 0.2);
	border-radius: 30px;
	padding: 6px 16px;
}

@media (max-width: 768px) {
	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.hero-cta,
	.hero-cta-outline {
		max-width: 220px;
		width: 100%;
		text-align: center;
	}
}

/* ===== SECTION SHARED ===== */
.section-label {
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 0.75rem;
}

.section-head {
	font-family: "Dancing Script", cursive;
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--brown-dark);
	margin: 0 0 1rem;
	text-align: center;
}

.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	font-family: "Lato", sans-serif;
	font-size: 0.85rem;
	color: var(--brown-light);
}

.section-divider::before,
.section-divider::after {
	content: "";
	flex: 1;
	max-width: 120px;
	height: 1px;
	background: rgba(212, 160, 23, 0.45);
}

/* ===== MENU ===== */
.menu {
	padding: 80px 5%;
	background: var(--white);
}

.menu-category {
	margin-bottom: 2.5rem;
}

.menu-category__badge {
	display: inline-block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #fff;
	background: var(--brown-dark);
	padding: 6px 22px;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
}

.menu-card {
	background: var(--cream);
	border: 1px solid rgba(107, 62, 38, 0.12);
	border-radius: 12px;
	padding: 1.1rem 1.3rem;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.menu-card--lift:hover {
	box-shadow: 0 6px 20px rgba(59, 34, 18, 0.1);
	transform: translateY(-2px);
}

.menu-card__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.75rem;
}

.menu-card__name {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--text-dark);
	margin: 0;
	flex: 1;
}

.menu-card__price {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--red);
	white-space: nowrap;
}

.menu-card__desc {
	font-family: "Lato", sans-serif;
	font-size: 0.8rem;
	color: var(--brown-mid);
	margin: 0.3rem 0 0;
	line-height: 1.4;
}

.menu-card__footer {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 0.65rem;
	margin-left: auto;
	gap: 0.35rem;
}

.menu-card__meta {
	font-family: "Lato", sans-serif;
	font-size: 0.72rem;
	color: var(--brown-light);
	text-align: right;
}

.halal-tag {
	font-family: "Lato", sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 2px 8px;
	border-radius: 20px;
	background: #d4edda;
	color: #1a5c2e;
}

.non-halal-tag {
	font-family: "Lato", sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 2px 8px;
	border-radius: 20px;
	background: #f8d7da;
	color: var(--red-dark);
}

.menu-intro {
	text-align: center;
	margin-bottom: 0.75rem;
}

/* ===== DELIVEROO BANNER ===== */
.deliveroo-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	background: #fff;
	border: 2px solid #00ccbc;
	border-radius: 14px;
	padding: 1rem 1.5rem;
	margin: 0 auto 2rem;
	max-width: 560px;
	box-shadow: 0 2px 12px rgba(0, 204, 188, 0.1);
}

.deliveroo-banner__text {
	font-family: "Lato", sans-serif;
	font-size: 0.92rem;
	color: var(--text-body);
	margin: 0;
	line-height: 1.45;
}

.deliveroo-banner__text strong {
	display: block;
	font-size: 1rem;
	color: var(--brown-dark);
	margin-bottom: 0.15rem;
}

.deliveroo-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 10px 22px;
	border-radius: 50px;
	background: #00ccbc;
	color: #fff;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.2s ease;
	flex-shrink: 0;
}

.deliveroo-btn:hover {
	background: #00b5a5;
	transform: translateY(-1px);
}

.deliveroo-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	flex-shrink: 0;
}

.extras-intro {
	text-align: left;
	margin-bottom: 1rem;
}

.extras-grid {
	justify-items: stretch;
}

.menu-load-error {
	font-family: "Lato", sans-serif;
	text-align: center;
	padding: 2rem 1rem;
	color: var(--red-dark);
}

.find-us__intro {
	text-align: center;
}

/* ===== DIETARY / ALLERGY ===== */
.allergy {
	padding: 80px 5%;
	background: var(--parchment);
}

.allergy .wrap {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.allergy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	text-align: left;
	margin-top: 1.5rem;
}

.allergy-card {
	border-radius: 14px;
	padding: 1.5rem;
}

.allergy-card--halal {
	background: #e8f5e9;
	border: 2px solid #81c784;
}

.allergy-card--halal h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: #1b5e20;
	margin: 0 0 0.75rem;
}

.allergy-card--halal ul {
	margin: 0;
	padding-left: 1.15rem;
	font-family: "Lato", sans-serif;
	font-size: 0.88rem;
	line-height: 1.55;
	color: #2e7d32;
}

.allergy-card--non {
	background: #fdecea;
	border: 2px solid #e57373;
}

.allergy-card--non h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--red-dark);
	margin: 0 0 0.75rem;
}

.allergy-card--non ul {
	margin: 0;
	padding-left: 1.15rem;
	font-family: "Lato", sans-serif;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--brown-mid);
}

.allergy-card--non li {
	margin-bottom: 0.65rem;
}

.allergy-card--non li:last-child {
	margin-bottom: 0;
}

.allergy-card--non em {
	display: block;
	margin-top: 0.2rem;
	font-style: italic;
	font-size: 0.82rem;
	color: var(--brown-mid);
}

.allergy-note {
	font-family: "Lato", sans-serif;
	font-size: 0.8rem;
	font-style: italic;
	color: var(--brown-mid);
	margin-top: 1.5rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.allergy-wide {
	margin-top: 1.5rem;
	text-align: left;
}

.allergy-card--reg14 {
	background: var(--white);
	border: 2px solid var(--brown-light);
	border-radius: 14px;
	padding: 1.5rem;
}

.allergy-card--reg14 h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--brown-dark);
	margin: 0 0 0.5rem;
	text-align: center;
}

.allergy-card--reg14 > p {
	font-family: "Lato", sans-serif;
	font-size: 0.82rem;
	color: var(--brown-mid);
	margin: 0 0 1rem;
	line-height: 1.5;
	text-align: center;
}

.allergy-14 {
	margin: 0;
	padding-left: 1.15rem;
	font-family: "Lato", sans-serif;
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--text-body);
	column-count: 2;
	column-gap: 2rem;
}

.allergy-14 li {
	break-inside: avoid;
	margin-bottom: 0.35rem;
}

@media (max-width: 520px) {
	.allergy-14 {
		column-count: 1;
	}
}

/* ===== OUR STORY ===== */
.story {
	padding: 80px 5%;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(212, 160, 23, 0.12) 0%, transparent 55%),
		var(--cream);
}

.story .wrap {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.story-body {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-body);
	text-align: left;
}

.story-body p {
	margin: 0 0 1rem;
}

.story-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 2rem;
}

.story-chip {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 8px 20px;
	border-radius: 30px;
	background: var(--brown-dark);
	color: var(--gold-light);
}

/* ===== FIND US ===== */
.find-us {
	padding: 80px 5%;
	background: var(--brown-dark);
	color: var(--parchment);
}

.find-us .wrap {
	max-width: 860px;
	margin: 0 auto;
}

.find-us .section-label {
	background: var(--red);
	color: var(--white);
}

.find-us .section-head {
	color: var(--gold-light);
}

.find-us-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.find-us-grid {
		grid-template-columns: 1fr;
	}
}

.find-us h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gold);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 0.5rem;
	margin: 0 0 1rem;
}

.find-us address {
	font-style: normal;
	font-family: "Lato", sans-serif;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--parchment);
}

.find-us address strong {
	display: block;
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: 0.35rem;
}

.find-us .muted {
	display: block;
	margin-top: 1rem;
	font-style: italic;
	font-size: 0.82rem;
	opacity: 0.85;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Lato", sans-serif;
	font-size: 0.92rem;
}

.hours-table th {
	text-align: left;
	font-weight: 700;
	padding: 0.4rem 0;
	color: var(--parchment);
	width: 42%;
}

.hours-table td {
	padding: 0.4rem 0;
	color: var(--gold-light);
}

.map-wrap {
	margin-top: 2rem;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	aspect-ratio: 16 / 9;
	max-height: 320px;
}

.map-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #1e0e05;
	padding: 2rem 5%;
	text-align: center;
}

.site-footer__brand {
	font-family: "Dancing Script", cursive;
	font-size: 1.3rem;
	color: var(--gold-light);
	margin-bottom: 0.35rem;
}

.site-footer__line {
	font-family: "Lato", sans-serif;
	font-size: 0.78rem;
	color: var(--parchment);
	opacity: 0.85;
	margin: 0.25rem 0;
}

.site-footer__social {
	margin-top: 1.25rem;
}

.site-footer__social-label {
	font-family: "Lato", sans-serif;
	font-size: 0.72rem;
	color: #888;
	margin-bottom: 0.5rem;
}

.site-footer__icons {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.site-footer__icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--parchment);
	transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__icons a:hover {
	background: var(--gold);
	color: var(--brown-dark);
}

.site-footer__icons svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.hero__inner {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ===== COOKIE CONSENT BANNER (GDPR) ===== */
.cookie-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 200;
	display: none;
	padding: 1rem 5% calc(1rem + env(safe-area-inset-bottom, 0));
	font-family: "Lato", sans-serif;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--text-body);
	background: var(--parchment);
	border-top: 2px solid var(--brown-dark);
	box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
}

.cookie-consent-banner.cookie-consent-banner--visible {
	display: block;
}

.cookie-consent-banner__inner {
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem 1.5rem;
}

.cookie-consent-banner__text {
	flex: 1 1 280px;
	margin: 0;
	max-width: 52rem;
}

.cookie-consent-banner__privacy {
	flex: 0 0 auto;
	font-size: 0.8rem;
}

.cookie-consent-banner__privacy a {
	color: var(--brown-dark);
	text-decoration: underline;
	font-weight: 700;
	text-underline-offset: 3px;
}

.cookie-consent-banner__privacy a:hover {
	color: var(--red);
}

.cookie-consent-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 220px;
}

.cookie-consent-banner__accept {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.65rem 1.25rem;
	border: 2px solid var(--brown-dark);
	border-radius: 8px;
	cursor: pointer;
	background: var(--brown-dark);
	color: var(--gold-light);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-banner__accept:hover {
	background: var(--brown-mid);
	border-color: var(--brown-mid);
	color: var(--gold-light);
}

.cookie-consent-banner__decline {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.65rem 1.25rem;
	border: 2px solid var(--brown-dark);
	border-radius: 8px;
	cursor: pointer;
	background: transparent;
	color: var(--brown-dark);
	transition: background 0.2s ease, color 0.2s ease;
}

.cookie-consent-banner__decline:hover {
	background: rgba(107, 62, 38, 0.08);
}

@media (max-width: 560px) {
	.cookie-consent-banner__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-consent-banner__actions {
		justify-content: stretch;
		flex-direction: column;
	}

	.cookie-consent-banner__accept,
	.cookie-consent-banner__decline {
		width: 100%;
	}
}

/* ===== MAP — fallback when Maps / consent declined ===== */
.map-wrap.map-wrap--fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.35rem;
	background: var(--cream);
	border: 1px solid rgba(59, 34, 18, 0.2);
}

.map-wrap.map-wrap--fallback .map-wrap__notice {
	font-family: "Lato", sans-serif;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--text-body);
	text-align: center;
	margin: 0;
	max-width: 28rem;
}

.map-wrap.map-wrap--fallback .map-wrap__notice-link {
	color: var(--brown-mid);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	white-space: nowrap;
}

.map-wrap.map-wrap--fallback .map-wrap__notice-link:hover {
	color: var(--red);
}
