/*
Theme Name: Barolo
Theme URI: https://example.com/barolo
Author: Barolo Restaurant
Author URI: https://example.com
Description: A fast, SEO-friendly theme for Barolo Italian restaurant — Fort Lauderdale fine dining, reservations, and mobile-first layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: barolo
Tags: custom-logo, custom-menu, featured-images, food-and-drink, one-column, threaded-comments, translation-ready

Barolo theme — Italian restaurant, minimal assets, accessible markup.
*/

/* ==========================================================================
   Design tokens — Barolo palette
   ========================================================================== */
:root {
	--barolo-bg: #1a1714;
	--barolo-bg-elevated: #242019;
	--barolo-surface: #f5f0e8;
	--barolo-surface-muted: #ebe4d8;
	--barolo-accent: #722f37;
	--barolo-accent-hover: #8b3a42;
	--barolo-gold: #c4a35a;
	--barolo-gold-muted: #b8986a;
	--barolo-text: #2a2622;
	--barolo-text-inverse: #f5f0e8;
	--barolo-text-muted: rgba(245, 240, 232, 0.78);
	--barolo-border: rgba(196, 163, 90, 0.35);
	--barolo-font-serif: "Cormorant Garamond", "Georgia", serif;
	--barolo-font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
	--barolo-max: 72rem;
	--barolo-radius: 2px;
	--barolo-space: clamp(1rem, 4vw, 2.5rem);
	--barolo-header-h: 4.25rem;
}

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

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

body {
	margin: 0;
	font-family: var(--barolo-font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--barolo-text);
	background: var(--barolo-surface);
}

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0.5rem;
	z-index: 100000;
	padding: 0.75rem 1.25rem;
	background: var(--barolo-accent);
	color: var(--barolo-text-inverse);
	text-decoration: none;
	font-weight: 600;
	border-radius: var(--barolo-radius);
}

.skip-link:focus {
	left: 0.5rem;
	outline: 2px solid var(--barolo-gold);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Typography */
h1,
h2,
h3,
.barolo-font-serif {
	font-family: var(--barolo-font-serif);
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: clamp(2.25rem, 6vw, 3.75rem);
	margin: 0 0 0.75rem;
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0 0 1rem;
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	margin: 0 0 0.5rem;
}

p {
	margin: 0 0 1rem;
}

a {
	color: var(--barolo-accent);
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--barolo-accent-hover);
}

a:focus-visible {
	outline: 2px solid var(--barolo-gold);
	outline-offset: 2px;
}

/* Layout */
.barolo-wrap {
	width: 100%;
	max-width: var(--barolo-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--barolo-space);
	padding-right: var(--barolo-space);
}

/* ----- Site header (dark) -----
   The header overlays page content: it sits transparently at the very
   top of every page and gains a solid (blurred) background + shadow as
   soon as the user scrolls (the `is-scrolled` class is toggled on
   <body> by assets/js/nav.js). */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	color: var(--barolo-text-inverse);
	border-bottom: 0;
	transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

body.is-scrolled .site-header {
	background: rgba(16, 14, 12, 0.5);
	-webkit-backdrop-filter: blur(10px) saturate(1.1);
	backdrop-filter: blur(10px) saturate(1.1);
	border-bottom: 1px solid var(--barolo-border);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--barolo-header-h);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.site-branding .custom-logo {
	max-height: 52px;
	width: auto;
	height: auto;
}

.site-title {
	margin: 0;
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.site-title a {
	color: inherit;
	text-decoration: none;
}

.site-title a:hover {
	color: var(--barolo-gold);
}

/* Phone in header — always tappable */
.header-phone {
	margin: 0;
	font-weight: 600;
	white-space: nowrap;
}

.header-phone a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--barolo-text-inverse);
	text-decoration: none;
	border-bottom: 1px solid var(--barolo-gold);
	padding-bottom: 1px;
}

.header-phone a:hover {
	color: var(--barolo-gold);
}

.header-phone__icon {
	display: inline-flex;
	align-items: center;
	color: var(--barolo-gold);
	line-height: 0;
}

.header-phone__icon svg {
	display: block;
}

/* On narrow screens collapse to an icon-only tap target so the number
   doesn't push the hamburger out of the viewport. */
@media (max-width: 599px) {
	/* Group the phone and hamburger together on the right, logo on the left. */
	.site-header__inner {
		gap: 0.5rem;
	}

	.site-branding {
		margin-right: auto;
	}

	.header-phone__label {
		/* Keep the visible text out of the flow but expose it to AT. */
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.header-phone a {
		gap: 0;
		min-width: 44px;
		min-height: 44px;
		justify-content: center;
		padding: 0;
		border: 1px solid var(--barolo-border);
		border-radius: var(--barolo-radius);
	}

	.header-phone a:hover {
		border-color: var(--barolo-gold);
	}
}

/* Primary nav */
.main-nav {
	display: none;
}

.main-nav.is-open {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--barolo-bg);
	border-bottom: 1px solid var(--barolo-border);
	padding: 1rem var(--barolo-space) 1.5rem;
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.main-nav a {
	display: block;
	padding: 0.65rem 0;
	color: var(--barolo-text-inverse);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.8125rem;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
	color: var(--barolo-gold);
}

.main-nav .reserve-cta a {
	color: var(--barolo-gold);
}

/* Nav toggle */
.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--barolo-border);
	color: var(--barolo-text-inverse);
	cursor: pointer;
	border-radius: var(--barolo-radius);
	font: inherit;
}

.nav-toggle:hover {
	border-color: var(--barolo-gold);
	color: var(--barolo-gold);
}

.nav-toggle .nav-toggle__icon {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

@media (min-width: 960px) {
	.nav-toggle {
		display: none;
	}

	.main-nav {
		display: block;
		position: static;
		padding: 0;
		background: transparent;
		border: none;
		grid-column: 2;
		min-width: 0;
		width: 100%;
	}

	.main-nav ul {
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
		width: 100%;
	}

	.main-nav a {
		padding: 0.5rem 0;
	}

	/* 3 columns: logo | nav (flexes) | phone. Phone is always the last
	   grid item so it sits on the true right edge. Last <li> gets
	   margin-left: auto so “Reservations” parks at the end of the nav
	   row even when WP does not add .reserve-cta to that link. */
	.site-header__inner {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		min-width: 0;
		gap: 0 0.75rem;
	}

	.site-branding {
		grid-column: 1;
		margin: 0;
	}

	/* Pin the last link (keep Reservations as the last item in the menu) so
	   this works even when the OpenTable class isn’t applied. */
	.main-nav #primary-menu > li:last-child {
		margin-left: auto;
	}

	.header-phone {
		grid-column: 3;
		justify-self: end;
		margin: 0 0 0 0.5rem;
		font-weight: 500;
		font-size: 0.8125rem;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		padding-left: 0.75rem;
		border-left: 1px solid var(--barolo-border);
	}

	.header-phone a {
		border-bottom: 0;
		padding-bottom: 0;
	}

	/* Reservations CTA as a pill button on desktop. */
	.main-nav .reserve-cta a {
		display: inline-block;
		padding: 0.5rem 0.9rem;
		line-height: 1;
		border: 1px solid var(--barolo-gold);
		border-radius: var(--barolo-radius);
		color: var(--barolo-gold);
		transition: background-color 150ms ease, color 150ms ease;
	}

	.main-nav .reserve-cta a:hover,
	.main-nav .reserve-cta.current-menu-item > a {
		background: var(--barolo-gold);
		color: var(--barolo-bg);
	}
}

.header-bar {
	position: relative;
}

/* Break the header out of the shared max-width container so the logo sits
   flush to the left edge of the viewport and the nav/phone sit flush to
   the right — only the horizontal padding is preserved. */
.site-header .barolo-wrap {
	max-width: none;
	width: 100%;
	/* Same inset on left and right as the logo/phone from the screen edges. */
	--barolo-header-pad: clamp(1.25rem, 3.5vw, 2.5rem);
	padding-left: max(var(--barolo-header-pad), env(safe-area-inset-left, 0px));
	padding-right: max(var(--barolo-header-pad), env(safe-area-inset-right, 0px));
}

@media (min-width: 960px) {
	.header-bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		gap: 2rem;
	}
}

/* ----- Main ----- */
.site-main {
	min-height: 50vh;
}

/* Hero (front page) — fills the viewport; header overlays on top. */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: flex-end;
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
	overflow: hidden;
}

/* Anchor targets — offset so the sticky header doesn't overlap the section
   when smooth-scrolling lands. */
#story,
#chef-section {
	scroll-margin-top: var(--barolo-header-h);
}

/* Hero scroll-down indicator — a single small chevron with a gentle dip. */
.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: clamp(1rem, 3vw, 2rem);
	transform: translateX(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: rgba(245, 240, 232, 0.8);
	text-decoration: none;
	transition: color 200ms ease;
}

.hero__scroll:hover,
.hero__scroll:focus-visible {
	color: var(--barolo-gold);
}

.hero__scroll-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	animation: barolo-hero-chevron 2.4s ease-in-out infinite;
}

.hero__scroll-chevron svg {
	display: block;
}

@keyframes barolo-hero-chevron {
	0%, 55%, 100% {
		transform: translateY(0);
		opacity: 0.85;
	}
	30% {
		transform: translateY(4px);
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__scroll-chevron {
		animation: none;
	}
}

.hero__media {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #2a1810 0%, var(--barolo-bg) 45%, #0d0c0a 100%);
}

.hero__picture {
	position: absolute;
	inset: 0;
	display: block;
	margin: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(26, 23, 20, 0.95) 0%,
		rgba(26, 23, 20, 0.35) 50%,
		rgba(26, 23, 20, 0.5) 100%
	);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--barolo-max);
	margin: 0 auto;
	padding: var(--barolo-space);
	padding-bottom: clamp(2rem, 6vw, 4rem);
}

.hero__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--barolo-gold);
	margin-bottom: 0.5rem;
}

.hero h1 {
	color: inherit;
}

.hero__lead {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	max-width: 38rem;
	color: var(--barolo-text-muted);
	margin-bottom: 1.5rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
}

/* Menu page hero */
.menu-hero {
	position: relative;
	min-height: min(70vh, 640px);
	display: flex;
	align-items: flex-end;
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
	overflow: hidden;
}

.menu-hero__media {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, #2a2218 0%, var(--barolo-bg) 50%, #0d0c0a 100%);
}

.menu-hero__picture {
	position: absolute;
	inset: 0;
	display: block;
	margin: 0;
}

.menu-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
	display: block;
}

.menu-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(26, 23, 20, 0.94) 0%,
		rgba(26, 23, 20, 0.42) 42%,
		rgba(26, 23, 20, 0.12) 72%,
		rgba(18, 16, 14, 0.45) 100%
	);
	pointer-events: none;
}

.menu-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--barolo-max);
	margin: 0 auto;
	padding: var(--barolo-space);
	padding-bottom: clamp(2rem, 5.5vw, 3.5rem);
}

.menu-hero__title {
	margin: 0 0 0.65rem;
	font-family: var(--barolo-font-serif);
	font-size: clamp(2.1rem, 6vw, 3.35rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: 0.02em;
	color: inherit;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.menu-hero__tagline {
	margin: 0 0 1.25rem;
	max-width: 36rem;
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.55;
	color: var(--barolo-text-muted);
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.menu-hero__actions {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
}

.menu-hero__pdf {
	margin: 0;
}

/* ----- About page hero -----
   Immersive full-bleed section. Vertically centers content over the image
   so the eye lands on the headline rather than scanning to a corner.
   Shares the same overlay technique as the menu hero; the gradient is
   radial rather than directional to keep more of the photo visible. */
.about-hero {
	position: relative;
	min-height: min(70vh, 640px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
	overflow: hidden;
}

.about-hero__media {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, #2a2218 0%, var(--barolo-bg) 50%, #0d0c0a 100%);
}

.about-hero__picture {
	position: absolute;
	inset: 0;
	display: block;
	margin: 0;
}

.about-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	display: block;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse at 50% 42%,
		rgba(26, 23, 20, 0.22) 0%,
		rgba(26, 23, 20, 0.62) 55%,
		rgba(18, 16, 14, 0.88) 100%
	);
	pointer-events: none;
}

.about-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: clamp(4rem, 10vw, 7rem);
	padding-bottom: clamp(3rem, 7vw, 5rem);
	text-align: center;
}

.about-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin: 0 0 1.25rem;
	font-family: var(--barolo-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--barolo-gold);
}

.about-hero__eyebrow::before,
.about-hero__eyebrow::after {
	content: "";
	display: block;
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.about-hero__title {
	margin: 0 0 1.1rem;
	font-family: var(--barolo-font-serif);
	font-size: clamp(2.4rem, 7vw, 4.25rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0.01em;
	color: var(--barolo-text-inverse);
	text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
}

.about-hero__lead {
	margin: 0 auto;
	max-width: 36rem;
	font-size: clamp(1rem, 2.2vw, 1.15rem);
	line-height: 1.6;
	color: var(--barolo-text-muted);
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

/* ----- About page — Chef section (Lo Chef) -----
   Atmospheric dark panel: a large centered pull quote acts as an
   immersive chapter break, followed by a portrait + biography grid.
   The ornament between the eyebrow and quote echoes the gold rule
   motifs used throughout the theme. */
.chef-section {
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
	padding: clamp(4.5rem, 11vw, 8rem) 0;
	position: relative;
	overflow: hidden;
}

/* Subtle vignette at the top and bottom edges to blend with adjacent
   sections. Uses a pseudo-element so it never competes with content. */
.chef-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(26, 23, 20, 0.6) 0%, transparent 18%),
		linear-gradient(to top,    rgba(26, 23, 20, 0.6) 0%, transparent 18%);
	pointer-events: none;
	z-index: 0;
}

.chef-section__wrap {
	position: relative;
	z-index: 1;
}

/* Quote block — centered, full-width treatment */
.chef-section__quote-wrap {
	text-align: center;
	max-width: 54rem;
	margin: 0 auto clamp(3rem, 8vw, 5.5rem);
}

.chef-section__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin: 0 0 2rem;
	font-family: var(--barolo-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--barolo-gold);
}

.chef-section__eyebrow::before,
.chef-section__eyebrow::after {
	content: "";
	display: block;
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: 0.6;
}

/* Diamond ornament — a small rotated square that serves as the
   chapter-break motif between the eyebrow and the quote. */
.chef-section__ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	margin-bottom: 2.25rem;
}

.chef-section__ornament::before,
.chef-section__ornament::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	background: var(--barolo-gold);
	opacity: 0.4;
}

.chef-section__ornament-mark {
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid var(--barolo-gold);
	transform: rotate(45deg);
	opacity: 0.7;
	flex-shrink: 0;
}

.chef-section__quote {
	margin: 0;
	padding: 0;
	border: none;
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.55rem, 3.8vw, 2.5rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.38;
	letter-spacing: 0.01em;
	color: var(--barolo-text-inverse);
	quotes: "\201C" "\201D";
}

.chef-section__quote p {
	margin: 0;
}

.chef-section__quote p::before {
	content: open-quote;
	color: var(--barolo-gold);
	font-size: 1.4em;
	line-height: 0;
	vertical-align: -0.35em;
	margin-right: 0.06em;
	opacity: 0.85;
}

.chef-section__quote p::after {
	content: close-quote;
	color: var(--barolo-gold);
	font-size: 1.4em;
	line-height: 0;
	vertical-align: -0.35em;
	margin-left: 0.04em;
	opacity: 0.85;
}

/* Portrait + biography — stacks on mobile, side-by-side on wider viewports */
.chef-section__profile {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

@media (min-width: 640px) {
	.chef-section__profile {
		grid-template-columns: clamp(200px, 28vw, 430px) 1fr;
		align-items: center;
	}
}

.chef-section__portrait-wrap {
	position: relative;
}

/* Offset gold frame — a pseudo-element border drawn slightly inset
   from the image edge to give the portrait a composed, editorial feel. */
.chef-section__portrait-wrap::after {
	content: "";
	position: absolute;
	inset: 0.75rem -0.75rem -0.75rem 0.75rem;
	border: 1px solid rgba(196, 163, 90, 0.3);
	pointer-events: none;
}

.chef-section__portrait {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center 20%;
	display: block;
	position: relative;
	z-index: 1;
}

/* Biography column */
.chef-section__bio {
	display: flex;
	flex-direction: column;
}

.chef-section__name {
	margin: 0 0 0.4rem;
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	font-weight: 600;
	letter-spacing: 0.035em;
	line-height: 1.1;
	color: var(--barolo-text-inverse);
}

.chef-section__role {
	margin: 0 0 1.85rem;
	font-family: var(--barolo-font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--barolo-gold);
}

.chef-section__bio-text {
	margin: 0 0 1.15rem;
	font-size: 1.0625rem;
	line-height: 1.78;
	color: var(--barolo-text-muted);
	max-width: 52ch;
}

.chef-section__bio-text:last-of-type {
	margin-bottom: 0;
}

.chef-section__credential {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--barolo-border);
	font-family: var(--barolo-font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(196, 163, 90, 0.55);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.65rem 1.5rem;
	font-family: var(--barolo-font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--barolo-radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:focus-visible {
	outline: 2px solid var(--barolo-gold);
	outline-offset: 3px;
}

.btn--primary {
	background: var(--barolo-accent);
	color: var(--barolo-text-inverse);
	border-color: var(--barolo-accent);
}

.btn--primary:hover {
	background: var(--barolo-accent-hover);
	border-color: var(--barolo-accent-hover);
	color: var(--barolo-text-inverse);
}

.btn--ghost {
	background: transparent;
	color: var(--barolo-text-inverse);
	border-color: var(--barolo-gold);
}

.btn--ghost:hover {
	background: rgba(196, 163, 90, 0.12);
	color: var(--barolo-gold);
}

.btn--dark {
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
	border-color: var(--barolo-bg);
}

.btn--dark:hover {
	background: var(--barolo-accent);
	border-color: var(--barolo-accent);
	color: var(--barolo-text-inverse);
}

/* Content sections */
.section {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.section--cream {
	background: var(--barolo-surface);
}

.section--dark {
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
}

.section--dark h2,
.section--dark h3 {
	color: inherit;
}

.section--dark p {
	color: var(--barolo-text-muted);
}

.section__intro {
	max-width: 42rem;
	margin-bottom: 2rem;
}

/* ----- Front page — editorial manifesto / Chapter 00 -----
   Matches the chapter rhythm of the feature and reservations sections:
   eyebrow · serif title · long-form editorial body · closing envoi. */
.manifesto {
	position: relative;
}

.manifesto__inner {
	max-width: 44rem;
	margin: 0 auto;
	padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}

.manifesto__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0 0 1.25rem;
	font-family: var(--barolo-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--barolo-accent);
}

.manifesto__eyebrow::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.75;
}

.manifesto__title {
	margin: 0 0 1.75rem;
	font-family: var(--barolo-font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--barolo-bg);
}

.manifesto__lead {
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.15rem, 2.4vw, 1.35rem);
	line-height: 1.6;
	color: var(--barolo-text);
	margin: 0 0 1.5rem;
	letter-spacing: 0.01em;
}

.manifesto__lead > p {
	margin: 0 0 1rem;
}

.manifesto__lead > p:last-child {
	margin-bottom: 0;
}

.manifesto__lead::first-letter,
.manifesto__lead > p:first-child::first-letter {
	float: left;
	font-size: clamp(2.75rem, 6vw, 3.5rem);
	line-height: 0.85;
	padding-right: 0.4rem;
	margin-top: 0.08em;
	font-weight: 600;
	color: var(--barolo-gold);
}

.manifesto__name {
	font-weight: 600;
	color: var(--barolo-bg);
	letter-spacing: 0.02em;
}

.manifesto__pull {
	quotes: "“" "”" "‘" "’";
	font-style: italic;
	color: var(--barolo-accent);
	font-weight: 500;
}

.manifesto__text {
	margin: 0 0 1.1rem;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: rgba(42, 38, 34, 0.92);
	max-width: 40rem;
}

.manifesto__text:last-of-type {
	margin-bottom: 0;
}

.manifesto__text--emphasis {
	font-size: 1.09375rem;
	padding: 1.15rem 0 0;
	margin-top: 0.35rem;
	border-top: 1px solid rgba(196, 163, 90, 0.45);
	color: var(--barolo-text);
}

/* Closing Italian envoi — an italic serif line centered under a thin gold
   rule. No box, no shadow: the same chapter-break motif used elsewhere. */
.manifesto__benvenuti {
	position: relative;
	max-width: 36rem;
	margin: clamp(2rem, 5vw, 2.75rem) auto 0;
	padding: clamp(1.5rem, 3vw, 2rem) 0 0;
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.65;
	text-align: center;
	color: var(--barolo-bg);
}

.manifesto__benvenuti::before {
	content: "";
	display: block;
	width: 3rem;
	height: 1px;
	margin: 0 auto 1.5rem;
	background: var(--barolo-gold);
	opacity: 0.8;
}

/* ----- Feature sections (Menu / About on the home page) -----
   Each feature is a full-bleed split layout: a large image on one side,
   editorial copy on the other. Variants (--dark / --gold) give each
   section its own mood so the home page reads as two distinct worlds. */
.feature {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
}

.feature__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--barolo-bg);
}

.feature__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature:hover .feature__img,
.feature:focus-within .feature__img {
	transform: scale(1.04);
}

.feature__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: clamp(2.5rem, 7vw, 5rem) var(--barolo-space);
}

.feature__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0 0 1.25rem;
	font-family: var(--barolo-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--barolo-gold);
}

.feature__eyebrow::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.8;
}

.feature__title {
	margin: 0 0 1.25rem;
	font-family: var(--barolo-font-serif);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01em;
	max-width: 18ch;
	color: inherit;
}

.feature__lead {
	margin: 0 0 2rem;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.65;
	max-width: 38ch;
	opacity: 0.88;
}

.feature__cta {
	margin: 0;
}

/* Dark variant — intended for the Menu section. */
.feature--dark {
	background: var(--barolo-accent-hover);
	color: var(--barolo-text-inverse);
}

/* Gold variant — background sampled from the Barolo wordmark to tie the
   About section visually back to the brand. Dark ink on warm gold for a
   warm, editorial "hospitality" feel. */
.feature--gold {
	background: var(--barolo-gold-muted);
	color: var(--barolo-bg);
}

.feature--gold .feature__eyebrow {
	color: var(--barolo-bg);
}

.feature--gold .feature__eyebrow::before {
	opacity: 0.5;
}

/* Desktop: split the section 50/50. On --image-right variants the media
   column is swapped to the right via flex order on the grid children. */
@media (min-width: 800px) {
	.feature {
		grid-template-columns: 1fr 1fr;
		min-height: min(86vh, 720px);
	}

	.feature__media {
		aspect-ratio: auto;
		height: 100%;
	}

	.feature--image-right .feature__media {
		order: 2;
	}

	.feature--image-right .feature__body {
		order: 1;
	}

	.feature__body {
		padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
	}
}

/* ----- Reservations (closing chapter on the home page) -----
   Dark atmospheric panel that bookends the hero and picks up the same
   typographic family (eyebrow + serif headline + editorial lead) used by
   the Menu and About feature sections. */
.reservations-block {
	position: relative;
	isolation: isolate;
	padding: clamp(3.5rem, 8vw, 6rem) 0;
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
}

/* Two panes (::before left, ::after right) so each photo uses background-size:
   cover inside its pane — no stretched aspect ratios. Gradient per pane for readability. */

.reservations-block::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image:
		linear-gradient(
			180deg,
			rgba(26, 23, 20, 0.56) 0%,
			rgba(26, 23, 20, 0.96) 100%
		),
		url("assets/images/navy-sideboard-s-shaped-wine-rack.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	pointer-events: none;
}

.reservations-block::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image:
		linear-gradient(
			180deg,
			rgba(26, 23, 20, 0.56) 0%,
			rgba(26, 23, 20, 0.96) 100%
		),
		url("assets/images/fine-dining-wine-cellar-glass-wall.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	pointer-events: none;
}

@media (max-width: 720px) {
	.reservations-block::before {
		right: 0;
		bottom: auto;
		width: 100%;
		height: 50%;
	}

	.reservations-block::after {
		left: 0;
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		height: 50%;
	}
}

.reservations-block .barolo-wrap {
	position: relative;
	z-index: 1;
}

.reservations-block__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
}

/* Centered eyebrow with a thin rule on each side, echoing the chapter
   markers on the Menu / About feature sections. */
.reservations-block__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0;
	font-family: var(--barolo-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--barolo-gold);
}

.reservations-block__eyebrow::before,
.reservations-block__eyebrow::after {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.reservations-block h2 {
	margin: 0;
	font-family: var(--barolo-font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: inherit;
}

.reservations-block__lead {
	margin: 0;
	max-width: 36ch;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.65;
	color: var(--barolo-text-muted);
}

.reservations-block__actions {
	margin: 0.5rem 0 0;
}

.reservations-block__phone {
	margin: 0;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	color: var(--barolo-text-muted);
}

.reservations-block__phone a {
	color: var(--barolo-gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(196, 163, 90, 0.4);
	padding-bottom: 1px;
	transition: color 200ms ease, border-color 200ms ease;
}

.reservations-block__phone a:hover {
	color: var(--barolo-text-inverse);
	border-color: var(--barolo-gold);
}

.opentable-embed {
	margin-top: 1.5rem;
	min-height: 120px;
}

.opentable-embed iframe {
	max-width: 100%;
	border: 0;
	border-radius: var(--barolo-radius);
}

/* Default page / post */
.page-header {
	padding: calc(var(--barolo-header-h) + clamp(2rem, 5vw, 3.5rem)) 0 1.5rem;
	background: var(--barolo-bg);
	color: var(--barolo-text-inverse);
}

.page-header h1 {
	margin: 0;
}

.page-header .barolo-wrap > p {
	margin: 0.5rem 0 0;
	color: var(--barolo-text-muted);
	font-size: 1rem;
}

.page-header__tagline {
	max-width: 36rem;
	line-height: 1.55;
}

.page-header__actions {
	margin-top: 1rem !important;
}

.page-header__pdf {
	margin-top: 0;
}

.page-featured {
	margin: 0;
	padding: 0;
	max-width: none;
}

.page-featured__img {
	width: 100%;
	display: block;
	max-height: min(52vh, 560px);
	object-fit: cover;
}

.page-featured__caption {
	font-size: 0.875rem;
	color: #5c564e;
	padding: 0.5rem var(--barolo-space) 0;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.entry-content {
	padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
	max-width: 48rem;
	margin: 0 auto;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2 {
	margin-top: 2rem;
}

.entry-content img {
	height: auto;
	max-width: 100%;
	border-radius: var(--barolo-radius);
}

/* Menu page — full board layout */
.menu-page--board {
	max-width: 58rem;
	padding-top: clamp(2.5rem, 6vw, 4rem);
}

.menu-board {
	--menu-dish-radius: 3px;
}

.menu-board__lede {
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.55;
	color: #4a433a;
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.75rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(196, 163, 90, 0.35);
}

.menu-chapter {
	margin: 0 0 clamp(2.5rem, 5vw, 3.75rem);
}

.menu-chapter:last-of-type {
	margin-bottom: 2rem;
}

.menu-chapter__head {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 0.65rem 1.35rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.85rem;
	border-bottom: 2px solid rgba(114, 47, 55, 0.2);
	position: relative;
}

.menu-chapter--brush-right .menu-chapter__head {
	flex-direction: row-reverse;
}

.menu-chapter__brush {
	flex: 0 0 auto;
	line-height: 0;
	align-self: flex-end;
	position: relative;
	margin-bottom: 0.1rem;
}

.menu-chapter__brush img {
	display: block;
	width: clamp(6.75rem, 26vw, 10.75rem);
	height: auto;
	filter: drop-shadow(0 3px 12px rgba(26, 23, 20, 0.12));
	opacity: 0.94;
}

.menu-chapter__brush--mirror img {
	transform: scaleX(-1);
}

.menu-chapter__title {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin: 0;
	flex: 1 1 14rem;
	min-width: 0;
	font-family: var(--barolo-font-serif);
	font-weight: 600;
	line-height: 1.15;
}

.menu-chapter__title::after {
	content: "";
	display: block;
	width: 3.75rem;
	height: 2px;
	background: var(--barolo-gold);
	margin-top: 0.4rem;
}

@media (max-width: 560px) {
	.menu-chapter--brush .menu-chapter__head {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.5rem;
	}

	.menu-chapter--brush-right .menu-chapter__title {
		order: -1;
	}

	.menu-chapter--brush .menu-chapter__title::after {
		margin-left: auto;
		margin-right: auto;
	}
}

.menu-chapter__title-it {
	font-size: clamp(1.65rem, 3.5vw, 2.1rem);
	color: var(--barolo-bg);
	letter-spacing: 0.02em;
}

.menu-chapter__title-en {
	font-family: var(--barolo-font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--barolo-accent);
}

.menu-chapter__note {
	font-size: 0.9375rem;
	font-style: italic;
	color: #5c564e;
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	background: rgba(196, 163, 90, 0.12);
	border-left: 3px solid var(--barolo-gold);
	border-radius: var(--menu-dish-radius);
}

.menu-dish-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.menu-dish {
	margin: 0;
	padding: 1.15rem 1.15rem 1.2rem 1.35rem;
	background: linear-gradient(
		125deg,
		rgba(255, 255, 255, 0.65) 0%,
		rgba(245, 240, 232, 0.92) 48%,
		rgba(235, 228, 216, 0.55) 100%
	);
	border: 1px solid rgba(42, 38, 34, 0.08);
	border-left: 3px solid rgba(196, 163, 90, 0.65);
	border-radius: var(--menu-dish-radius);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-dish:hover,
.menu-dish:focus-within {
	transform: translateY(-2px);
	box-shadow:
		0 14px 32px rgba(26, 23, 20, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
	border-left-color: var(--barolo-accent);
}

.menu-dish__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-bottom: 0.45rem;
}

.menu-dish__name {
	margin: 0;
	font-family: var(--barolo-font-serif);
	font-size: clamp(1.12rem, 2.2vw, 1.28rem);
	font-weight: 600;
	color: var(--barolo-bg);
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.menu-dish__price {
	margin: 0;
	flex-shrink: 0;
	font-family: var(--barolo-font-serif);
	font-size: 1.125rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--barolo-accent);
	letter-spacing: 0.02em;
}

.menu-dish__desc {
	margin: 0;
	font-size: 0.96875rem;
	line-height: 1.68;
	color: #5c564e;
}

.menu-dish__addon {
	margin: 0.65rem 0 0;
	font-size: 0.875rem;
	font-style: italic;
	color: #4a433a;
}

.menu-dish__addon-price {
	font-style: normal;
	font-weight: 600;
	font-family: var(--barolo-font-serif);
	color: var(--barolo-accent);
	white-space: nowrap;
}

.menu-board__policies {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding: 1.5rem 1.25rem;
	background: var(--barolo-surface-muted);
	border: 1px solid rgba(42, 38, 34, 0.1);
	border-radius: var(--barolo-radius);
}

.menu-board__policies-list {
	margin: 0;
	padding: 0 0 0 1.15rem;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: #5c564e;
}

.menu-board__policies-list li {
	margin-bottom: 0.5rem;
}

.menu-board__policies-list li:last-child {
	margin-bottom: 0;
}

/* Legacy block-editor menu classes (optional content) */
.menu-page .menu-intro {
	margin-bottom: 2rem;
	color: #5c564e;
	font-size: 1rem;
}

.menu-page .menu-section {
	margin-bottom: 2.5rem;
}

.menu-page .menu-section h2 {
	border-bottom: 1px solid rgba(42, 38, 34, 0.15);
	padding-bottom: 0.5rem;
	margin-bottom: 1.25rem;
}

.menu-page .menu-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem 1.5rem;
	align-items: baseline;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px dashed rgba(42, 38, 34, 0.12);
}

.menu-page .menu-item:last-child {
	border-bottom: none;
}

.menu-page .menu-item .desc {
	grid-column: 1 / -1;
	font-size: 0.9375rem;
	color: #5c564e;
	margin: 0;
}

.menu-page .price {
	font-family: var(--barolo-font-serif);
	font-weight: 600;
	color: var(--barolo-accent);
	white-space: nowrap;
}

/* Footer */
.site-footer {
	background: var(--barolo-gold-muted);
	color: var(--barolo-surface-muted);
	padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
	border-top: 1px solid var(--barolo-border);
}

.site-footer a {
	color: inherit;
	text-decoration: none;
	transition: text-decoration-color 200ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.site-footer h2,
.site-footer h3 {
	color: var(--barolo-text-inverse);
	font-size: 1rem;
	margin: 0 0 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: var(--barolo-font-sans);
	font-weight: 600;
}

.footer-brand__logo {
	margin: 0 0 0.75rem;
	line-height: 0;
}

.footer-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.footer-brand .custom-logo {
	max-height: 64px;
	width: auto;
	height: auto;
}

.footer-brand__title {
	margin: 0 0 0.75rem;
}

.footer-brand__title a {
	color: inherit;
	text-decoration: none;
}

.footer-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav a {
	text-decoration: none;
	display: inline-block;
	padding: 0.25rem 0;
}

.footer-social {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.footer-contact address {
	font-style: normal;
	margin: 0;
}

.footer-bottom {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--barolo-border);
	font-size: 0.875rem;
	text-align: center;
}

/* 404 */
.error-404 {
	text-align: center;
	padding: clamp(4rem, 12vw, 8rem) var(--barolo-space);
}

.error-404 h1 {
	color: var(--barolo-accent);
}

/* Sticky mobile CTA bar */
.mobile-cta-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	display: flex;
	gap: 0.5rem;
	padding: 0.65rem var(--barolo-space);
	background: var(--barolo-bg);
	border-top: 1px solid var(--barolo-border);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

.mobile-cta-bar .btn {
	flex: 1;
	min-height: 48px;
	font-size: 0.75rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

/* Reserve space for fixed bar on small viewports only; desktop hides the bar. */
body.has-mobile-cta {
	padding-bottom: 5rem;
}

@media (min-width: 960px) {
	.mobile-cta-bar {
		display: none;
	}

	body.has-mobile-cta {
		padding-bottom: 0;
	}
}

/* WordPress block alignment */
.alignwide {
	max-width: var(--barolo-max);
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.wp-block-image figcaption {
	font-size: 0.875rem;
	color: #5c564e;
	margin-top: 0.5rem;
}
