/* =====================================================================
   Mussel Beach — main stylesheet.
   Accessible-first, mobile-first, no builder cruft.
   WCAG 2.1 AA contrast for all text.
   ===================================================================== */

/* --- Custom properties -------------------------------------------------- */
:root {
	--c-navy: #0f2847;
	--c-navy-dark: #0a1a30;
	--c-orange: #b8521a;          /* 4.86:1 vs white — passes WCAG AA normal text */
	--c-orange-dark: #8a3d14;     /* hover — visibly darker, 7.4:1 vs white */
	--c-cream: #f9f5ef;
	--c-ink: #111;
	--c-ink-soft: #3a3a3a;
	--c-muted: #6a6a6a;           /* 4.98:1 on cream, 5.41:1 on white */
	--c-rule: #d8d2c6;

	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--fs-xs: 0.8125rem;   /* 13px */
	--fs-sm: 0.9375rem;   /* 15px */
	--fs-base: 1rem;
	--fs-lg: 1.125rem;
	--fs-xl: 1.375rem;
	--fs-2xl: 1.75rem;
	--fs-3xl: 2.25rem;
	--fs-4xl: 3rem;

	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.5rem;
	--space-6: 2rem;
	--space-7: 3rem;
	--space-8: 4rem;

	--radius: 4px;
	--shadow-sm: 0 2px 8px rgba(15, 40, 71, 0.08);
	--shadow-md: 0 8px 24px rgba(15, 40, 71, 0.12);

	--container: 1200px;
	--container-narrow: 780px;
}

/* Headings: Playfair Display. Body / nav / buttons: DM Sans. Keep weights tight. */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* --- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.55;
	color: var(--c-ink);
	background: var(--c-cream);
}

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

button { font: inherit; cursor: pointer; }
a { color: var(--c-orange); text-decoration: underline; text-underline-offset: 0.15em; }
a:hover { color: var(--c-orange-dark); }

/* Focus styles — visible and consistent across browsers. */
:focus-visible {
	outline: 3px solid var(--c-orange);
	outline-offset: 3px;
	border-radius: 2px;
}

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 var(--space-4);
	color: var(--c-navy);
}
h1 { font-size: clamp(2rem, 5vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.5rem, 3.5vw, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }

p { margin: 0 0 var(--space-4); }

/* --- Utilities ---------------------------------------------------------- */
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	top: -3em;
	left: 1rem;
	padding: 0.75rem 1rem;
	background: var(--c-navy);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius);
	z-index: 1000;
	transition: top 0.2s;
}
.skip-link:focus { top: 1rem; color: #fff; }

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--c-orange);
	color: #fff;
	text-decoration: none;
	border: 2px solid var(--c-orange);
	border-radius: var(--radius);
	font-weight: 600;
	line-height: 1.2;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn:hover, .btn:focus-visible { background: var(--c-orange-dark); border-color: var(--c-orange-dark); color: #fff; }
.btn--cta { background: var(--c-orange); }

/* --- Site header -------------------------------------------------------- */
.site-header {
	background: var(--c-cream);
	border-bottom: 1px solid var(--c-rule);
	position: sticky;
	top: 0;
	z-index: 50;
}
.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--space-4) var(--space-5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
}
.site-logo { display: inline-flex; text-decoration: none; }
.site-logo img { max-height: 64px; width: auto; }
.site-logo--text {
	font-family: var(--font-display);
	font-size: var(--fs-xl);
	color: var(--c-navy);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
}

/* Nav toggle (mobile). */
.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	background: transparent;
	border: 2px solid var(--c-navy);
	border-radius: var(--radius);
	color: var(--c-navy);
	position: relative;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 22px; height: 2px;
	background: currentColor;
	position: relative;
	transition: transform 0.2s, top 0.2s, bottom 0.2s, background 0.2s;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: ""; position: absolute; left: 0;
}
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

/* Primary nav. */
.site-nav {
	display: none;
	position: absolute;
	top: 100%; left: 0; right: 0;
	background: var(--c-cream);
	border-bottom: 1px solid var(--c-rule);
	padding: var(--space-4) var(--space-5);
}
.site-nav.is-open { display: block; }
.site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}
.site-nav__list a {
	display: block;
	padding: 0.75rem 0;
	color: var(--c-navy);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-size: var(--fs-sm);
}
.site-nav__list a:hover, .site-nav__list a:focus-visible { color: var(--c-orange); }
.site-nav__list .current-menu-item > a { color: var(--c-orange); }
.site-nav__cta { margin-top: var(--space-3); align-self: flex-start; }

@media (min-width: 900px) {
	.nav-toggle { display: none; }
	.site-nav {
		display: flex !important;
		position: static;
		padding: 0;
		background: transparent;
		border: 0;
		align-items: center;
		gap: var(--space-5);
	}
	.site-nav__list { flex-direction: row; gap: var(--space-5); }
	.site-nav__list a { padding: 0; }
	.site-nav__cta { margin: 0 0 0 var(--space-3); }
}

/* --- Main + generic page wrap ------------------------------------------- */
.site-main { outline: none; }
.page-wrap {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: var(--space-7) var(--space-5);
}
.page-article__header h1 { margin-bottom: var(--space-5); }

/* --- Hero (shared across page templates) --------------------------------
   Stack: navy base → image (z0) → navy gradient overlay (z1) → text (z2).
   The gradient overlay guarantees ≥4.5:1 contrast for white text even when
   the underlying image has bright regions. */
.page-hero, .home-hero {
	position: relative;
	background: var(--c-navy);
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-hero__image, .home-hero__image {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.55;
	z-index: 0;
}
.page-hero::before, .home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(15, 40, 71, 0.4), rgba(15, 40, 71, 0.55));
	z-index: 1;
}
.page-hero__inner, .home-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--space-8) var(--space-5);
	text-align: center;
	width: 100%;
}
.page-hero__title, .home-hero__title { color: #fff; }
.page-hero__subhead, .home-hero__subhead { font-size: var(--fs-lg); max-width: 820px; margin: 0 auto var(--space-5); }

/* Inner pages use a shorter hero (40vh); home uses a near-full-screen hero. */
.page-hero { min-height: 40vh; }
.home-hero { min-height: 75vh; }
@media (min-width: 800px) {
	.home-hero { min-height: 85vh; }
}
@media (min-width: 800px) and (max-height: 600px) {
	/* Landscape phones/short laptops — don't crowd. */
	.home-hero { min-height: 500px; }
}

.home-hero__title { font-size: clamp(2.5rem, 7vw, 5rem); margin-bottom: var(--space-4); }
.home-hero__subhead { font-size: clamp(1.125rem, 2vw, 1.375rem); }

/* Dual CTA button group. */
.home-hero__cta-group {
	display: flex;
	gap: var(--space-3);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--space-5);
}
.home-hero__cta { margin: 0; }
.btn--outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
.btn--outline:hover, .btn--outline:focus-visible {
	background: #fff;
	color: var(--c-navy);
	border-color: #fff;
}

/* --- Home: intro ──────────────────────────────────────────────────────
   Two-column when an intro image is present; centered single-column when
   it's text-only. */
.home-intro { padding: var(--space-8) var(--space-5); }
.home-intro__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: var(--space-7);
	align-items: center;
}
@media (min-width: 900px) {
	.home-intro__inner:has(.home-intro__figure) { grid-template-columns: 1fr 1fr; }
}
/* Text-only: center the block and the text inside it. */
.home-intro__inner:not(:has(.home-intro__figure)) {
	max-width: var(--container-narrow);
	text-align: center;
}
.home-intro__figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* --- Image row — 3-up edge-to-edge, no overlay text. ------------------- */
.image-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	background: var(--c-ink);
	width: 100%;
}
.image-row__cell { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; }
.image-row__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 800px) {
	.image-row { grid-template-columns: 1fr; }
	.image-row__cell { aspect-ratio: 4 / 3; }
}

/* --- Home: feature (2-column, image + text) ---------------------------- */
.home-feature { padding: var(--space-8) var(--space-5); }
.home-feature__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: var(--space-7);
	align-items: center;
}
@media (min-width: 900px) {
	.home-feature__inner { grid-template-columns: 1fr 1fr; }
}
.home-feature__figure { margin: 0; }
.home-feature__figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: auto; }
.home-feature__title { margin-bottom: var(--space-4); }
.home-feature__cta { margin-top: var(--space-5); margin-bottom: 0; }

/* --- Reviews grid (3-up desktop → 1-up mobile) -------------------------- */
.reviews {
	background: var(--c-navy);
	color: #fff;
	padding: clamp(3rem, 7vw, 5rem) var(--space-5);
}
.reviews__inner { max-width: var(--container); margin: 0 auto; }
.reviews__title {
	text-align: center;
	color: #fff;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.reviews-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--space-5);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	align-items: stretch;
}
.review {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: var(--space-5);
	display: flex;
	flex-direction: column;
}
.review__quote {
	margin: 0 0 var(--space-4);
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--fs-lg);
	line-height: 1.45;
	flex: 1 1 auto;
}
.review__quote p { margin: 0; }
.review__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: var(--space-2) var(--space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: var(--space-3);
	margin-top: auto;
}
.review__attr {
	font-style: normal;
	font-weight: 600;
	color: #fff;
	font-size: var(--fs-sm);
	flex: 1 1 auto;
}
.review__source {
	display: inline-block;
	padding: 0.2em 0.65em;
	background: var(--c-orange);
	color: #fff;
	border-radius: 999px;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
}

/* --- Visit Us band ------------------------------------------------------ */
.visit {
	background: var(--c-orange);
	color: #fff;
	padding: clamp(3rem, 7vw, 5rem) var(--space-5);
	text-align: center;
}
.visit__inner { max-width: var(--container); margin: 0 auto; }
.visit__headline {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	line-height: 1.1;
	color: #fff;
	margin: 0 0 var(--space-4);
}
.visit__subhead {
	font-family: var(--font-body);
	font-size: var(--fs-lg);
	max-width: 720px;
	margin: 0 auto var(--space-6);
	color: #fff;
}
.visit__details {
	display: grid;
	gap: var(--space-5);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	max-width: 720px;
	margin: 0 auto var(--space-6);
}
.visit__detail-label {
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 var(--space-2);
	color: rgba(255, 255, 255, 0.85);
}
.visit__address { font-style: normal; font-size: var(--fs-lg); }
.visit .hours-list__row { justify-content: center; gap: var(--space-2); }
.visit__cta-group { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }

/* --- Menu page ---------------------------------------------------------- */
.menu-intro {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: var(--space-7) var(--space-5) 0;
	text-align: center;
}
.menu-sections {
	padding: var(--space-7) var(--space-5);
}
.menu-sections__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: var(--space-7);
}
@media (min-width: 900px) {
	.menu-sections__inner { grid-template-columns: 1fr 1fr; gap: var(--space-7) var(--space-8); }
}

.menu-section { background: #fff; border: 1px solid var(--c-rule); border-radius: var(--radius); padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.menu-section__figure { margin: 0; aspect-ratio: 16/9; overflow: hidden; }
.menu-section__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-section__title {
	margin: 0;
	padding: var(--space-4) var(--space-5) var(--space-3);
	border-bottom: 2px solid var(--c-orange);
	font-size: var(--fs-2xl);
}
.menu-section__note { padding: 0 var(--space-5); }
.menu-section > .menu-items { padding: var(--space-5); }
.menu-section:not(.menu-section--has-image) .menu-section__title { padding-top: var(--space-5); }
.menu-section__note {
	margin: 0 0 var(--space-4);
	color: var(--c-muted);
	font-size: var(--fs-sm);
	font-style: italic;
}

.menu-items { list-style: none; margin: 0; padding: var(--space-5); display: grid; gap: var(--space-4); }
.menu-section--has-image .menu-section__note + .menu-items,
.menu-section--has-image .menu-section__title + .menu-items { padding-top: var(--space-4); }
.menu-item { padding: 0; }
.menu-item__header {
	display: flex;
	align-items: baseline;
	gap: var(--space-3);
	margin-bottom: var(--space-1);
}
.menu-item__name { margin: 0; font-size: var(--fs-lg); font-family: var(--font-body); font-weight: 700; color: var(--c-ink); flex: 1 1 auto; line-height: 1.25; }
.menu-item__raw-marker { color: var(--c-orange); margin-left: 0.1em; }
.menu-item__price { font-weight: 700; color: var(--c-navy); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item__description { margin: 0; color: var(--c-ink-soft); font-size: var(--fs-sm); }

.menu-addons { padding: var(--space-7) var(--space-5); background: var(--c-navy); color: #fff; }
.menu-addons__inner { max-width: var(--container-narrow); margin: 0 auto; text-align: center; }
.menu-addons__inner h2 { color: #fff; }
.addons-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3) var(--space-5); }
.addons-list__row { display: inline-flex; gap: var(--space-2); align-items: baseline; }
.addons-list__name { font-weight: 600; }
.addons-list__price { color: var(--c-cream); opacity: 0.85; font-variant-numeric: tabular-nums; }

.menu-happy-hour { padding: var(--space-7) var(--space-5); text-align: center; }
.menu-happy-hour__inner { max-width: var(--container-narrow); margin: 0 auto; }
.menu-happy-hour__time { font-size: var(--fs-lg); color: var(--c-orange); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.menu-happy-hour__list { list-style: none; padding: 0; margin: var(--space-5) 0 0; display: grid; gap: var(--space-2); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.menu-happy-hour__list li { padding: var(--space-3); background: var(--c-cream); border-radius: var(--radius); font-weight: 600; }

.menu-footnotes { padding: var(--space-6) var(--space-5); background: var(--c-cream); border-top: 1px solid var(--c-rule); }
.menu-footnotes__inner { max-width: var(--container-narrow); margin: 0 auto; font-size: var(--fs-sm); color: var(--c-muted); }
.menu-footnotes dl { margin: 0; }
.menu-footnote { display: flex; gap: var(--space-3); margin-bottom: var(--space-2); }
.menu-footnote dt { font-weight: 700; color: var(--c-orange); flex: 0 0 auto; }
.menu-footnote dd { margin: 0; }

/* --- Breadcrumbs ------------------------------------------------------- */
/* Default (standalone band — used by page.php fallback). */
.breadcrumbs {
	background: var(--c-cream);
	border-bottom: 1px solid var(--c-rule);
	padding: var(--space-3) var(--space-5);
	font-size: var(--fs-sm);
}
.breadcrumbs__inner {
	max-width: var(--container);
	margin: 0 auto;
	color: var(--c-ink-soft);
}
.breadcrumbs a {
	color: var(--c-navy);
	text-decoration: none;
}
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { text-decoration: underline; }
.breadcrumbs__sep { margin: 0 0.4em; color: var(--c-muted); }
.breadcrumbs [aria-current="page"] { color: var(--c-ink-soft); font-weight: 600; }

/* When nested inside the hero: transparent, light text — meets WCAG AA on
   the hero overlay (navy with image @ 0.55 opacity). */
.page-hero .breadcrumbs {
	background: transparent;
	border: 0;
	padding: 0;
	margin-top: var(--space-4);
}
.page-hero .breadcrumbs__inner { color: rgba(255, 255, 255, 0.85); }
.page-hero .breadcrumbs a { color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }
.page-hero .breadcrumbs a:hover, .page-hero .breadcrumbs a:focus-visible { color: #fff; }
.page-hero .breadcrumbs__sep { color: rgba(255, 255, 255, 0.6); }
.page-hero .breadcrumbs [aria-current="page"] { color: #fff; }

/* --- Contact body ------------------------------------------------------- */
.contact-body { padding: var(--space-7) var(--space-5); }
.contact-body__inner { max-width: var(--container-narrow); margin: 0 auto; }

/* --- About page --------------------------------------------------------- */

/* Welcome — centered intro by default, 2-column (image left) when an image is set. */
.about-welcome { padding: clamp(3rem, 6vw, 5rem) var(--space-5) clamp(2rem, 4vw, 3rem); }
.about-welcome__inner {
	max-width: var(--container-narrow);
	margin: 0 auto;
	text-align: center;
	font-size: var(--fs-lg);
	line-height: 1.6;
}
.about-welcome--with-image .about-welcome__inner {
	max-width: var(--container);
	display: grid;
	gap: var(--space-7);
	align-items: center;
	text-align: left;
}
@media (min-width: 900px) {
	.about-welcome--with-image .about-welcome__inner {
		grid-template-columns: 1fr 1fr;
	}
}
.about-welcome__figure { margin: 0; }
.about-welcome__figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Alternating image + text bands. */
.about-band { padding: clamp(2.5rem, 5vw, 4rem) var(--space-5); }
.about-band:nth-child(even of .about-band) { background: var(--c-cream); }
.about-band__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: var(--space-7);
	align-items: center;
}
@media (min-width: 900px) {
	.about-band__inner { grid-template-columns: 1fr 1fr; }
	.about-band--flip .about-band__figure { order: 2; }
}
.about-band__figure { margin: 0; }
.about-band__figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.about-band__title { margin-bottom: var(--space-4); }

/* Text-only band: center the column. */
.about-band--text .about-band__inner {
	max-width: var(--container-narrow);
	text-align: center;
	grid-template-columns: 1fr;
}

/* Pull quote — centered band, navy background. */
.about-quote {
	background: var(--c-navy);
	color: #fff;
	padding: clamp(3rem, 6vw, 5rem) var(--space-5);
	text-align: center;
}
.about-quote__inner {
	max-width: 820px;
	margin: 0 auto;
	border: 0;
}
.about-quote__text {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	line-height: 1.4;
	margin: 0 0 var(--space-4);
	color: #fff;
}
.about-quote__attr {
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: var(--fs-sm);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

/* Closing CTA — light band, dual buttons. */
.about-cta { padding: clamp(3rem, 6vw, 5rem) var(--space-5); text-align: center; background: #fff; }
.about-cta__inner { max-width: var(--container-narrow); margin: 0 auto; }
.about-cta__title { margin-bottom: var(--space-3); }
.about-cta__subhead { font-size: var(--fs-lg); margin: 0 0 var(--space-6); color: var(--c-ink-soft); }
.about-cta__group {
	display: flex;
	gap: var(--space-3);
	justify-content: center;
	flex-wrap: wrap;
}

/* Dark outline button — for use on light backgrounds (orange button as primary). */
.btn--outline-dark {
	background: transparent;
	color: var(--c-navy);
	border-color: var(--c-navy);
}
.btn--outline-dark:hover, .btn--outline-dark:focus-visible {
	background: var(--c-navy);
	color: #fff;
	border-color: var(--c-navy);
}

.contact-grid {
	display: grid;
	gap: var(--space-5);
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	margin-top: var(--space-5);
}
.contact-card { background: #fff; border: 1px solid var(--c-rule); padding: var(--space-5); border-radius: var(--radius); }
.contact-card h2 { margin-top: 0; font-size: var(--fs-xl); }
.contact-card a {
	color: var(--c-orange);
	text-decoration: none;
	font-weight: 600;
}
.contact-card a:hover,
.contact-card a:focus-visible {
	color: var(--c-orange-dark);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}
.contact-map { margin-top: var(--space-6); }
.contact-map iframe { width: 100%; height: 400px; border: 0; border-radius: var(--radius); }

/* --- Site footer -------------------------------------------------------- */
.site-footer { background: var(--c-navy); color: var(--c-cream); padding: var(--space-7) var(--space-5) var(--space-5); }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { text-decoration: underline; }
.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: var(--space-6);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.site-footer__heading { color: #fff; font-size: var(--fs-lg); margin-bottom: var(--space-3); }
.hours-list { margin: 0; }
.hours-list__row { display: flex; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-2); }
.hours-list__row dt { font-weight: 600; }
.hours-list__row dd { margin: 0; }
.social-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer__copyright { max-width: var(--container); margin: var(--space-6) auto 0; padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); }

/* --- 404 ---------------------------------------------------------------- */
.error-404 { padding: var(--space-8) var(--space-5); text-align: center; }
.error-404__inner { max-width: 520px; margin: 0 auto; }

/* --- Print -------------------------------------------------------------- */
@media print {
	.site-header, .site-footer, .nav-toggle, .site-nav__cta { display: none !important; }
	body { background: #fff; color: #000; }
	a { color: inherit; text-decoration: none; }
}
