/* ==========================================================================
   La Favorita — "Tricolor con disciplina"
   Implements the Claude Design handoff (La Favorita.dc.html) exactly:
   paper & carbone grounds, disciplined tricolor stripes, Bodoni Moda
   display / Hanken Grotesk body / Space Mono ticket accents, pill
   buttons, dotted-leader carta rows, numbered italic section headers.
   Mobile-first: base styles are the 390px layout.
   ========================================================================== */

/* --- Fonts (self-hosted) -------------------------------------------------- */

@font-face {
	font-family: 'Bodoni Moda';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/bodoni-moda-latin-500-normal.woff2') format('woff2'),
	     url('../fonts/bodoni-moda-latin-ext-500-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Bodoni Moda';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/bodoni-moda-latin-600-normal.woff2') format('woff2'),
	     url('../fonts/bodoni-moda-latin-ext-600-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Bodoni Moda';
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/bodoni-moda-latin-500-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Hanken Grotesk';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/hanken-grotesk-latin-400-normal.woff2') format('woff2'),
	     url('../fonts/hanken-grotesk-latin-ext-400-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Hanken Grotesk';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/hanken-grotesk-latin-600-normal.woff2') format('woff2'),
	     url('../fonts/hanken-grotesk-latin-ext-600-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Hanken Grotesk';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/hanken-grotesk-latin-700-normal.woff2') format('woff2'),
	     url('../fonts/hanken-grotesk-latin-ext-700-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Space Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/space-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Space Mono';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/space-mono-latin-700-normal.woff2') format('woff2');
}

/* --- Tokens ---------------------------------------------------------------- */

:root {
	/* Palette — Sistema de diseño §01 */
	--campari:      #c42b23;
	--basilico:     #245138;
	--ottone:       #b8934a;
	--carbone:      #191512;
	--carbone-deep: #0f0c0a;
	--carta:        #f3ead9;
	--carta-warm:   #eadfc9;
	--card:         #fbf6ec;
	--ink:          #211c18;
	--ink-mid:      #3a332e;
	--ink-soft:     #5b5147;
	--stone:        #8a8175;
	--rust:         #a64b2a;
	--rosso-scuro:  #9e2a20;
	--oro:          #e7c579;
	--oro-scuro:    #8a6a24;
	--on-dark:        #f3ead9;
	--on-dark-bright: #fbf6ec;
	--on-dark-mid:    #d8cebf;
	--on-dark-soft:   #c9bda8;
	--on-dark-muted:  #b8ab9c;
	--hairline:      rgba(33, 28, 24, 0.12);
	--hairline-soft: rgba(33, 28, 24, 0.1);
	--hairline-dark: rgba(243, 234, 217, 0.24);

	/* Type */
	--font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', serif;
	--font-body: 'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;
	--font-mono: 'Space Mono', 'SFMono-Regular', Menlo, monospace;

	/* Layout */
	--content-wide: 80rem;
	--gutter: clamp(1.125rem, 3.4vw, 3rem);
	--tap-min: 44px;

	/* Motion */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--dur: 350ms;
}

/* --- Base ----------------------------------------------------------- */

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

body {
	margin: 0;
	background: var(--carta);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 0.938rem;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.02;
	margin: 0 0 0.6em;
	text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--campari); }

::selection { background: var(--campari); color: var(--on-dark-bright); }

:focus-visible {
	outline: 2px solid var(--ottone);
	outline-offset: 3px;
	border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

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

.container { max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--gutter); }

/* Mono eyebrow — Space Mono uppercase kicker */
.eyebrow {
	font-family: var(--font-mono);
	font-size: 0.688rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rust);
	margin: 0 0 0.9em;
}

/* Tricolor stripe — THE brand motif. Full-width 3px by default. */
.tricolor { display: flex; height: 3px; }
.tricolor > i { flex: 1; }
.tricolor > i:nth-child(1) { background: var(--basilico); }
.tricolor > i:nth-child(2) { background: var(--carta); }
.tricolor > i:nth-child(3) { background: var(--campari); }
.tricolor--badge { height: 4px; width: 118px; border-radius: 2px; overflow: hidden; }
.tricolor--badge > i:nth-child(2) { background: #c9bda8; }

/* --- Buttons: pills ------------------------------------------------------------ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 100px;
	font-family: var(--font-body);
	font-size: 0.938rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 0;
	transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--campari); color: var(--on-dark-bright); }
.btn--primary:hover { background: var(--rosso-scuro); color: var(--on-dark-bright); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--carta); }
.btn--outline-light { background: rgba(251, 246, 236, 0.14); backdrop-filter: blur(6px); color: var(--on-dark-bright); border: 1px solid rgba(251, 246, 236, 0.4); }
.btn--outline-light:hover { background: rgba(251, 246, 236, 0.26); color: var(--on-dark-bright); }
.btn--whatsapp { background: var(--basilico); color: var(--on-dark-bright); }
.btn--whatsapp:hover { background: #1b3e2b; color: var(--on-dark-bright); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 0.844rem; }

/* --- Site nav ------------------------------------------------------------------- */

.site-nav { position: sticky; top: 0; z-index: 100; }
body.admin-bar .site-nav { top: 32px; }

.site-nav__bar { background: var(--carbone); color: var(--on-dark); }
.site-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	max-width: var(--content-wide);
	margin-inline: auto;
	padding: 12px var(--gutter);
	min-height: 70px;
}
.site-nav__left { display: flex; align-items: center; gap: 34px; min-width: 0; }

.site-nav__brand { display: block; flex: none; }
.site-nav__brand img { height: 30px; width: auto; }
.site-nav__brand-text {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--on-dark-bright);
	white-space: nowrap;
}
/* On phones the wide wordmark collides with the pills — the design's
   mobile nav uses the text brand instead. */
.site-nav__brand-img { display: none; }
@media (min-width: 40em) {
	.site-nav__brand-img { display: block; }
	.site-nav__brand-text--mobile-only { display: none; }
}

.site-nav__links { display: none; gap: 26px; font-size: 0.875rem; font-weight: 600; color: var(--on-dark-mid); }
.site-nav__links a { padding-bottom: 3px; border-bottom: 2px solid transparent; }
.site-nav__links a:hover { color: var(--on-dark-bright); }
.site-nav__links a[aria-current="true"] { color: var(--on-dark-bright); border-bottom-color: var(--campari); }
@media (min-width: 64em) { .site-nav__links { display: flex; } }

.site-nav__controls { display: flex; align-items: center; gap: 8px; }

/* Pill dropdowns (location / language) */
.nav-pill { position: relative; }
.nav-pill__toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 0 13px;
	background: transparent;
	border: 1px solid var(--hairline-dark);
	border-radius: 9px;
	color: var(--on-dark);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.844rem;
	cursor: pointer;
	white-space: nowrap;
}
.nav-pill__toggle:hover { background: rgba(243, 234, 217, 0.1); }
.nav-pill__toggle--mono { font-family: var(--font-mono); font-weight: 700; font-size: 0.781rem; }
.nav-pill__caret { opacity: 0.6; font-size: 0.7em; }
.nav-pill__menu {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	min-width: 11rem;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--carbone);
	border: 1px solid rgba(243, 234, 217, 0.14);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
	z-index: 110;
}
.nav-pill__menu[hidden] { display: none; }
.nav-pill__menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: var(--tap-min);
	padding: 4px 12px;
	border-radius: 8px;
	color: var(--on-dark);
	font-size: 0.875rem;
	font-weight: 600;
}
.nav-pill__menu a:hover { background: rgba(243, 234, 217, 0.1); color: var(--on-dark-bright); }
.nav-pill__menu a[aria-current="true"] { color: var(--oro); }

/* Narrow Android widths (≤416px): the location name can't share the bar
   with the brand — collapse the pill to the pin only (menu still opens). */
@media (max-width: 26em) {
	.site-nav__inner { gap: 6px; }
	.site-nav__controls { gap: 6px; }
	.nav-pill--location .nav-pill__label { display: none; }
	.nav-pill__toggle { padding: 0 10px; }
	.site-nav__brand-text { font-size: 1.125rem; }
}

.site-nav__reserve { display: none; }
@media (min-width: 40em) { .site-nav__reserve { display: inline-flex; min-height: 38px; padding: 0 18px; font-size: 0.844rem; } }

/* Hamburger (mobile) */
.site-nav__burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: transparent;
	border: 1px solid var(--hairline-dark);
	border-radius: 9px;
	color: var(--on-dark);
	font-size: 1rem;
	cursor: pointer;
}
@media (min-width: 64em) { .site-nav__burger { display: none; } }

.site-nav__panel { background: var(--carbone); border-top: 1px solid rgba(243, 234, 217, 0.1); padding: 10px var(--gutter) 18px; }
.site-nav__panel[hidden] { display: none; }
.site-nav__panel a {
	display: flex;
	align-items: center;
	min-height: var(--tap-min);
	color: var(--on-dark);
	font-size: 1rem;
	font-weight: 600;
	border-bottom: 1px solid rgba(243, 234, 217, 0.08);
}
.site-nav__panel a[aria-current="true"] { color: var(--oro); }

/* --- Breadcrumbs — Space Mono with campari slashes ----------------------------- */

.breadcrumbs { font-family: var(--font-mono); font-size: 0.719rem; letter-spacing: 0.02em; color: var(--ink-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 7px; }
.breadcrumbs li + li::before { content: '/'; color: var(--campari); }
.breadcrumbs a:hover { color: var(--campari); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }
.breadcrumbs--on-dark { color: var(--oro); }
.breadcrumbs--on-dark [aria-current="page"] { color: var(--on-dark-bright); }

/* --- Home hero ------------------------------------------------------------------- */

.hero-home { background: var(--carta); }
.hero-home__text { padding: 34px 22px 26px; text-align: center; }
.hero-home__logo { width: 112px; height: 112px; object-fit: contain; margin: 0 auto 16px; animation: lf-rise 700ms var(--ease-out) both; }
.hero-home__stripe { margin: 0 auto 18px; }
.hero-home__title { font-size: clamp(2.125rem, 5.4vw, 3.75rem); font-weight: 500; letter-spacing: -0.01em; line-height: 0.98; margin: 0 0 14px; }
.hero-home__title em { font-style: italic; color: var(--rosso-scuro); }
.hero-home__lead { font-size: 0.906rem; line-height: 1.55; color: var(--ink-mid); margin: 0 0 22px; }
.hero-home__actions { display: flex; flex-direction: column; gap: 10px; }
.hero-home__meta { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.03em; color: var(--ink-soft); margin-top: 24px; }
.hero-home__media { position: relative; height: 260px; overflow: hidden; background: var(--carbone); }
.hero-home__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-home__caption {
	position: absolute;
	left: 16px;
	bottom: 14px;
	font-family: var(--font-mono);
	font-size: 0.656rem;
	letter-spacing: 0.06em;
	color: var(--on-dark);
	background: rgba(25, 21, 18, 0.5);
	backdrop-filter: blur(4px);
	padding: 6px 10px;
	border-radius: 6px;
}
@media (min-width: 64em) {
	.hero-home { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 560px; }
	.hero-home__text {
		padding: 64px 56px 56px;
		text-align: left;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
	.hero-home__logo { width: 132px; height: 132px; margin: 0 0 22px; }
	.hero-home__stripe { margin: 0 0 22px; }
	.hero-home__title { max-width: 14ch; margin-bottom: 20px; }
	.hero-home__lead { font-size: 1.063rem; max-width: 48ch; margin-bottom: 30px; }
	.hero-home__actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; }
	.hero-home__media { height: auto; }
	.hero-home__caption { left: 24px; bottom: 22px; }
}

@keyframes lf-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* --- Value strip ------------------------------------------------------------------ */

.value-strip {
	background: var(--carbone);
	color: var(--on-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 15px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.063rem;
	flex-wrap: wrap;
}
.value-strip i { color: var(--campari); font-style: normal; font-size: 7px; }
@media (min-width: 64em) { .value-strip { gap: 38px; padding: 20px; font-size: 1.375rem; } .value-strip i { font-size: 9px; } }

/* --- Sections shared -------------------------------------------------------------- */

.section-head { margin-bottom: 20px; }
.section-head--center { text-align: center; }
.section-head h2 { font-size: clamp(1.625rem, 3vw, 2.375rem); margin: 0; }
.section-link { font-weight: 700; font-size: 0.875rem; color: var(--campari); white-space: nowrap; }
.section-link:hover { color: var(--rosso-scuro); }

/* --- Story ------------------------------------------------------------------------- */

.story { padding: 36px 0 30px; }
.story__inner { display: grid; gap: 0; max-width: var(--content-wide); margin-inline: auto; }
.story__text { padding: 0 22px; }
.story__title { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.05; margin: 0 0 14px; max-width: 16ch; }
.story__body { font-size: 0.906rem; line-height: 1.6; color: var(--ink-mid); }
.story__sign { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.story__sign-stripe { display: flex; height: 3px; width: 56px; }
.story__sign-stripe i { flex: 1; }
.story__sign-stripe i:first-child { background: var(--basilico); }
.story__sign-stripe i:last-child { background: var(--campari); }
.story__sign span { font-family: var(--font-display); font-style: italic; font-size: 1.188rem; }
.story__media { border-radius: 12px; overflow: hidden; height: 210px; margin: 18px 22px 0; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media--desktop { display: none; }
@media (min-width: 64em) {
	.story { padding: 0; }
	.story__inner { grid-template-columns: 1fr 1fr; align-items: center; }
	.story__text { padding: 70px 56px; }
	.story__body { font-size: 1.031rem; }
	.story__media { border-radius: 0; height: 100%; min-height: 440px; margin: 0; }
	.story__media--desktop { display: block; }
	.story__media--mobile-only { display: none; }
}

/* --- Highlights ---------------------------------------------------------------------- */

.highlights { background: var(--carta-warm); padding: 30px 0 34px; }
.highlights__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 0 22px; margin-bottom: 16px; }
.highlights__rail { display: flex; gap: 14px; overflow-x: auto; padding: 0 22px 6px; -webkit-overflow-scrolling: touch; }
.highlight-card { flex: none; width: 190px; background: var(--card); border-radius: 13px; overflow: hidden; box-shadow: 0 2px 10px rgba(33, 28, 24, 0.07); }
.highlight-card__photo { height: 180px; overflow: hidden; }
.highlight-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.highlight-card__body { padding: 13px 14px 15px; }
.highlight-card__cat { font-family: var(--font-mono); font-size: 0.594rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); }
.highlight-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; line-height: 1.05; margin-top: 3px; overflow-wrap: anywhere; }
.highlight-card__price { font-family: var(--font-mono); font-weight: 700; font-size: 0.813rem; color: var(--campari); margin-top: 6px; white-space: nowrap; }
.highlight-card__desc { display: none; font-size: 0.813rem; line-height: 1.45; color: var(--ink-soft); margin: 8px 0 0; }
@media (min-width: 64em) {
	.highlights { padding: 66px 0; }
	.highlights__head { padding: 0 56px; margin-bottom: 34px; }
	.highlights__rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 56px; overflow: visible; }
	.highlight-card { width: auto; border-radius: 14px; }
	.highlight-card__photo { height: auto; aspect-ratio: 4 / 5; }
	.highlight-card__body { padding: 16px 16px 18px; }
	.highlight-card__cat { font-size: 0.656rem; }
	.highlight-card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 5px; }
	.highlight-card__name { font-size: 1.25rem; min-width: 0; }
	.highlight-card__price { font-size: 0.844rem; flex: none; margin-top: 0; }
	.highlight-card__desc { display: block; }
}

/* --- Location cards (home) -------------------------------------------------------------- */

.loc-cards { padding: 34px 22px 30px; max-width: var(--content-wide); margin-inline: auto; }
.loc-cards__grid { display: flex; flex-direction: column; gap: 16px; }
.loc-card { border-radius: 14px; overflow: hidden; background: var(--card); box-shadow: 0 2px 10px rgba(33, 28, 24, 0.07); }
.loc-card__photo { height: 150px; overflow: hidden; }
.loc-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.loc-card__body { padding: 16px 18px 18px; }
.loc-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; margin: 0 0 4px; }
.loc-card__addr { font-size: 0.844rem; color: var(--ink-soft); line-height: 1.5; }
.loc-card__hours { font-family: var(--font-mono); font-size: 0.781rem; color: var(--basilico); margin-top: 8px; }
.loc-card__actions { display: flex; gap: 8px; margin-top: 14px; }
.loc-card__actions .btn--primary { flex: 1; }
@media (min-width: 64em) {
	.loc-cards { padding: 66px 56px; }
	.loc-cards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
	.loc-card { border-radius: 16px; }
	.loc-card__photo { height: 230px; }
	.loc-card__body { padding: 24px 26px 26px; }
	.loc-card__name { font-size: 1.75rem; margin-bottom: 6px; }
	.loc-card__addr { font-size: 0.906rem; }
}

/* --- Gallery teaser (home) + photo grids -------------------------------------------------- */

.gallery-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (min-width: 64em) { .gallery-teaser { grid-template-columns: repeat(4, 1fr); } }
.gallery-teaser a { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.gallery-teaser a:hover img { transform: scale(1.04); }
.gallery-teaser__more {
	position: absolute;
	inset: 0;
	background: rgba(25, 21, 18, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--on-dark-bright);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.188rem;
}

/* --- Contact band (dark CTA) ---------------------------------------------------------------- */

.contact-band { background: var(--carbone); color: var(--on-dark); padding: 36px 22px; text-align: center; }
.contact-band h2 { font-size: clamp(1.625rem, 3vw, 2.375rem); color: var(--on-dark); margin: 0 0 8px; }
.contact-band p { color: var(--on-dark-muted); font-size: 0.875rem; margin: 0 0 20px; }
.contact-band__actions { display: flex; flex-direction: column; gap: 10px; max-width: 30rem; margin-inline: auto; }
@media (min-width: 40em) {
	.contact-band { padding: 60px 56px; }
	.contact-band p { font-size: 1rem; margin-bottom: 26px; }
	.contact-band__actions { flex-direction: row; justify-content: center; max-width: none; }
}

/* --- Footer ------------------------------------------------------------------------------ */

.site-footer { background: var(--carbone-deep); color: var(--on-dark-soft); padding: 30px 0 28px; }
.site-footer__inner { max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--gutter); }
.site-footer .tricolor { margin-bottom: 24px; }
.site-footer__grid { display: grid; gap: 24px; text-align: center; }
.site-footer__logo { width: 150px; margin-inline: auto; }
.site-footer__tagline { font-family: var(--font-mono); font-size: 0.656rem; letter-spacing: 0.1em; color: var(--ottone); margin-top: 12px; }
.site-footer h3 { font-family: var(--font-body); font-weight: 700; color: var(--on-dark); font-size: 0.875rem; margin: 0 0 10px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; font-size: 0.844rem; line-height: 1.7; }
.site-footer a:hover { color: var(--oro); }
.site-footer__legal { font-size: 0.75rem; color: #6b6155; margin-top: 28px; }
@media (min-width: 64em) {
	.site-footer { padding: 48px 0 34px; }
	.site-footer .tricolor { margin-bottom: 34px; }
	.site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; text-align: left; }
	.site-footer__logo { width: 170px; margin: 0 0 14px; }
	.site-footer__tagline { font-size: 0.75rem; }
}

/* --- Menu (carta) page ------------------------------------------------------------------------ */

.carta-head { padding: 16px 0 4px; }
.carta-head__title { font-size: clamp(2.5rem, 5vw, 3.5rem); margin: 10px 0 4px; line-height: 1; }
.carta-head__title em { font-style: italic; font-size: 0.54em; color: var(--rosso-scuro); }
.carta-head__lead { font-size: 0.813rem; color: var(--ink-soft); margin: 0; max-width: 60ch; }
.carta-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.carta-head__allergens { display: none; font-family: var(--font-mono); font-size: 0.781rem; color: var(--campari); font-weight: 700; white-space: nowrap; }
@media (min-width: 64em) {
	.carta-head { padding: 30px 0 8px; }
	.carta-head__lead { font-size: 0.938rem; margin-top: 10px; }
	.carta-head__allergens { display: inline; }
}

/* Sticky category + diet bar */
.carta-bar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(243, 234, 217, 0.94);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid var(--hairline-soft);
	border-bottom: 1px solid var(--hairline);
	padding: 10px 0 9px;
	margin-top: 16px;
}
body.admin-bar .carta-bar { top: 32px; }
.carta-bar__cats, .carta-bar__diets {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 var(--gutter);
	scrollbar-width: none;
}
.carta-bar__cats::-webkit-scrollbar, .carta-bar__diets::-webkit-scrollbar { display: none; }
.carta-bar__diets { padding-top: 9px; }
.carta-bar__cats a {
	flex: none;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid rgba(33, 28, 24, 0.22);
	border-radius: 100px;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--ink-mid);
	white-space: nowrap;
}
.carta-bar__cats a:hover { border-color: var(--ink); color: var(--ink); }
.carta-bar__cats a[aria-current="true"] { background: var(--ink); border-color: var(--ink); color: var(--carta); }
.carta-bar__diets a {
	flex: none;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	border-radius: 100px;
	font-size: 0.719rem;
	font-weight: 600;
	white-space: nowrap;
	border: 1px solid transparent;
}
.carta-bar__diets a[data-diet="todo"] { background: var(--campari); color: var(--on-dark-bright); }
.carta-bar__diets a[data-diet="todo"][aria-current="false"] { background: transparent; border-color: rgba(33, 28, 24, 0.22); color: var(--ink-mid); }
.carta-bar__diets a[data-diet="vegetariano"] { border-color: rgba(36, 81, 56, 0.35); color: var(--basilico); }
.carta-bar__diets a[data-diet="picante"] { border-color: rgba(196, 43, 35, 0.3); color: var(--rust); }
.carta-bar__diets a[data-diet="sin-gluten"] { border-color: rgba(184, 147, 74, 0.4); color: var(--oro-scuro); }
.carta-bar__diets a[data-diet="sin-lactosa"] { border-color: rgba(90, 81, 71, 0.4); color: var(--ink-soft); }
.carta-bar__diets a[aria-current="true"]:not([data-diet="todo"]) { background: var(--ink); border-color: var(--ink); color: var(--carta); }
@media (min-width: 64em) {
	.carta-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px var(--gutter); }
	.carta-bar__cats, .carta-bar__diets { padding: 0; overflow: visible; flex-wrap: wrap; }
	.carta-bar__diets { padding-top: 0; }
	.carta-bar__cats a { font-size: 0.813rem; padding: 0 14px; }
	.carta-bar__diets a { font-size: 0.781rem; padding: 0 13px; }
}

/* Category section — numbered italic header + hairline */
.carta-section { padding-top: 22px; }
.carta-section__head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.carta-section__num { font-family: var(--font-mono); color: var(--campari); font-size: 0.75rem; }
.carta-section__name { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.688rem; color: var(--ink); }
.carta-section__count { font-family: var(--font-mono); font-size: 0.656rem; color: var(--stone); }
.carta-section__sub { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); margin: 2px 0 4px; }
.carta-section__rule { display: none; }
@media (min-width: 64em) {
	.carta-section { padding-top: 40px; }
	.carta-section__head { gap: 14px; margin-bottom: 2px; }
	.carta-section__num { font-size: 0.875rem; }
	.carta-section__name { font-size: 2.375rem; }
	.carta-section__sub { display: inline; font-size: 0.688rem; margin: 0; }
	.carta-section__count { font-size: 0.688rem; }
	.carta-section__rule { display: block; flex: 1; height: 1px; background: rgba(33, 28, 24, 0.14); }
	.carta-section__list { column-count: 2; column-gap: 56px; margin-top: 8px; }
}

/* Dish row — dotted leader */
.dish { display: flex; gap: 12px; padding: 13px 0; border-top: 1px solid var(--hairline-soft); break-inside: avoid; }
.dish__photo { width: 56px; height: 56px; border-radius: 9px; overflow: hidden; flex: none; }
.dish__photo img { width: 100%; height: 100%; object-fit: cover; }
.dish__main { flex: 1; min-width: 0; }
.dish__row { display: flex; align-items: baseline; gap: 7px; }
.dish__name { font-weight: 600; font-size: 0.938rem; color: var(--ink); line-height: 1.15; }
.dish__leader { flex: 1; border-bottom: 1px dotted rgba(33, 28, 24, 0.3); transform: translateY(-4px); min-width: 12px; }
.dish__price { font-family: var(--font-mono); font-weight: 700; font-size: 0.844rem; color: var(--ink); white-space: nowrap; }
.dish__desc { font-size: 0.781rem; line-height: 1.4; color: var(--ink-soft); margin: 5px 0 0; }
.diet-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.594rem;
	letter-spacing: 0.02em;
	padding: 2px 7px;
	border-radius: 100px;
	margin: 5px 5px 0 0;
}
.diet-tag--vegetariano { background: rgba(36, 81, 56, 0.1); color: var(--basilico); border: 1px solid rgba(36, 81, 56, 0.28); }
.diet-tag--picante { background: rgba(196, 43, 35, 0.1); color: var(--rust); border: 1px solid rgba(196, 43, 35, 0.28); }
.diet-tag--sin-gluten { background: rgba(184, 147, 74, 0.14); color: var(--oro-scuro); border: 1px solid rgba(184, 147, 74, 0.4); }
.diet-tag--sin-lactosa { background: rgba(90, 81, 71, 0.12); color: var(--ink-soft); border: 1px solid rgba(90, 81, 71, 0.3); }
@media (min-width: 64em) {
	.dish { gap: 14px; padding: 15px 0; }
	.dish__photo { width: 66px; height: 66px; border-radius: 10px; }
	.dish__row { gap: 9px; }
	.dish__name { font-size: 1rem; }
	.dish__price { font-size: 0.875rem; }
	.dish__desc { font-size: 0.813rem; line-height: 1.45; }
	.diet-tag { font-size: 0.625rem; padding: 2px 8px; margin: 6px 5px 0 0; }
}

/* Vini — bottle/glass columns */
.vini-cols {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.06em;
	color: var(--rust);
	display: flex;
	justify-content: flex-end;
	gap: 22px;
	margin: 2px 0 4px;
}
.wine { padding: 11px 0; border-top: 1px solid var(--hairline-soft); }
.wine__row { display: flex; align-items: baseline; gap: 8px; }
.wine__name { font-weight: 600; font-size: 0.906rem; color: var(--ink); flex: 1; min-width: 0; }
.wine__bot { font-family: var(--font-mono); font-weight: 700; font-size: 0.781rem; color: var(--ink); white-space: nowrap; }
.wine__cop { font-family: var(--font-mono); font-size: 0.781rem; color: var(--oro-scuro); width: 52px; text-align: right; white-space: nowrap; }
.wine__note { font-size: 0.719rem; color: var(--ink-soft); margin-top: 2px; }
@media (min-width: 64em) {
	.vini-cols { font-size: 0.688rem; gap: 26px; }
	.wine { padding: 14px 0; }
	.wine__name { font-size: 1rem; }
	.wine__bot { font-size: 0.875rem; width: 80px; text-align: right; }
	.wine__cop { font-size: 0.875rem; width: 70px; }
	.wine__note { font-size: 0.813rem; }
}

/* Bevande promo band */
.bevande-band { margin-top: 24px; background: var(--carta-warm); border-radius: 12px; padding: 16px; text-align: center; }
.bevande-band__title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--ink); }
.bevande-band__desc { font-size: 0.781rem; color: var(--ink-soft); margin-top: 4px; }
.bevande-band__link { display: inline-block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--campari); margin-top: 8px; font-weight: 700; }
@media (min-width: 64em) {
	.bevande-band {
		margin-top: 34px;
		background: var(--carbone);
		color: var(--on-dark);
		border-radius: 16px;
		padding: 30px 34px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
		flex-wrap: wrap;
		text-align: left;
	}
	.bevande-band__title { font-size: 1.625rem; color: var(--on-dark); }
	.bevande-band__desc { color: var(--on-dark-muted); font-size: 0.875rem; }
	.bevande-band__link {
		font-family: var(--font-body);
		display: inline-flex;
		align-items: center;
		min-height: 46px;
		padding: 0 22px;
		border: 1.5px solid rgba(243, 234, 217, 0.4);
		border-radius: 100px;
		color: var(--on-dark);
		font-weight: 700;
		font-size: 0.875rem;
		margin-top: 0;
	}
	.bevande-band__link:hover { background: rgba(243, 234, 217, 0.1); color: var(--on-dark-bright); }
}

.allergen-link { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.688rem; color: var(--ink-soft); margin-top: 16px; }
.allergen-link i { color: var(--campari); font-style: normal; }
.allergen-link:hover { color: var(--campari); }

/* --- Location page ------------------------------------------------------------------------------ */

.loc-hero { position: relative; height: 420px; overflow: hidden; background: var(--carbone); }
.loc-hero img { width: 100%; height: 100%; object-fit: cover; }
.loc-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 21, 18, 0.5), rgba(25, 21, 18, 0.2) 40%, rgba(25, 21, 18, 0.8)); }
.loc-hero__content { position: absolute; left: 20px; right: 20px; bottom: 24px; color: var(--on-dark-bright); }
.loc-hero__title { font-size: clamp(3.5rem, 8vw, 5.125rem); font-weight: 500; line-height: 0.95; margin: 6px 0 4px; color: var(--on-dark-bright); }
.loc-hero__addr { font-size: 0.813rem; color: #e9dfce; }
.loc-hero__actions { display: none; }
@media (min-width: 64em) {
	.loc-hero { height: 460px; }
	.loc-hero__scrim { background: linear-gradient(180deg, rgba(25, 21, 18, 0.15), rgba(25, 21, 18, 0.72)); }
	.loc-hero__content { left: var(--gutter); right: auto; bottom: 36px; }
	.loc-hero__addr { font-size: 1rem; }
	.loc-hero__actions { display: flex; gap: 10px; position: absolute; right: var(--gutter); bottom: 36px; }
}
.loc-actions-mobile { padding: 22px var(--gutter) 6px; display: flex; gap: 10px; }
.loc-actions-mobile .btn--primary { flex: 1; }
@media (min-width: 64em) { .loc-actions-mobile { display: none; } }

.loc-info { display: grid; max-width: var(--content-wide); margin-inline: auto; }
.loc-info__facts { padding: 18px var(--gutter) 4px; display: flex; flex-direction: column; gap: 14px; }
.loc-fact { border-top: 1px solid rgba(33, 28, 24, 0.14); padding-top: 12px; }
.loc-fact__label { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.1em; color: var(--stone); text-transform: uppercase; }
.loc-fact__value { font-size: 0.938rem; margin-top: 3px; }
.loc-fact__value--hours { color: var(--basilico); font-weight: 600; }
.loc-fact__value--mono { font-family: var(--font-mono); }
.loc-info__cta { padding: 16px var(--gutter) 4px; display: flex; flex-direction: column; gap: 10px; }
.loc-info__map { margin: 16px var(--gutter) 0; height: 170px; border-radius: 12px; overflow: hidden; }
.loc-info__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 64em) {
	.loc-info { grid-template-columns: 1fr 1.1fr; }
	.loc-info__facts { padding: 56px 48px 0; gap: 22px; }
	.loc-fact { padding-top: 16px; }
	.loc-fact__label { font-size: 0.688rem; }
	.loc-fact__value { font-size: 1.125rem; margin-top: 5px; }
	.loc-info__cta { flex-direction: row; flex-wrap: wrap; padding: 28px 48px 56px; }
	.loc-info__map { grid-column: 2; grid-row: 1 / span 2; margin: 0; height: auto; min-height: 420px; border-radius: 0; }
}

.loc-gallery { background: var(--carta-warm); padding: 22px 0 24px; }
.loc-gallery__inner { max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--gutter); }
.loc-gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.loc-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.loc-gallery__grid > a { position: relative; border-radius: 10px; overflow: hidden; height: 110px; display: block; }
.loc-gallery__grid img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 64em) {
	.loc-gallery { padding: 52px 0; }
	.loc-gallery__head { margin-bottom: 22px; }
	.loc-gallery__grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 180px 180px; gap: 12px; }
	.loc-gallery__grid > a { height: auto; border-radius: 12px; }
	.loc-gallery__grid > a:first-child { grid-row: span 2; }
}

/* --- Gallery page ------------------------------------------------------------------------------- */

.gallery-masonry { column-count: 2; column-gap: 10px; padding-top: 6px; }
.gallery-masonry a { break-inside: avoid; margin-bottom: 10px; border-radius: 10px; overflow: hidden; display: block; }
.gallery-masonry img { width: 100%; display: block; }
@media (min-width: 64em) {
	.gallery-masonry { column-count: 3; column-gap: 14px; }
	.gallery-masonry a { margin-bottom: 14px; border-radius: 12px; }
}
.filter-chips { display: flex; gap: 7px; overflow-x: auto; font-family: var(--font-mono); font-size: 0.75rem; scrollbar-width: none; }
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chips a {
	flex: none;
	display: inline-flex;
	align-items: center;
	min-height: 33px;
	padding: 0 13px;
	border: 1px solid rgba(33, 28, 24, 0.22);
	border-radius: 100px;
	color: var(--ink-mid);
	white-space: nowrap;
}
.filter-chips a[aria-current="true"] { background: var(--ink); border-color: var(--ink); color: var(--carta); }
@media (min-width: 64em) { .filter-chips { flex-wrap: wrap; overflow: visible; font-size: 0.813rem; } .filter-chips a { padding: 0 15px; } }

/* --- Contact page --------------------------------------------------------------------------------- */

.contact-cards { display: flex; flex-direction: column; gap: 16px; padding: 8px 0 22px; }
.contact-card { background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(33, 28, 24, 0.07); }
.contact-card__map { height: 150px; }
.contact-card__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-card__body { padding: 16px 18px 18px; }
.contact-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 0 0 12px; }
.contact-card__facts { display: flex; flex-direction: column; gap: 11px; font-size: 0.875rem; }
.contact-fact { display: flex; gap: 10px; }
.contact-fact__label { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.08em; color: var(--rust); width: 78px; flex: none; padding-top: 2px; text-transform: uppercase; }
.contact-fact__value--hours { color: var(--basilico); font-weight: 600; }
.contact-fact__value--mono { font-family: var(--font-mono); }
.contact-card__actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.contact-card__links { display: flex; gap: 16px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--hairline); font-family: var(--font-mono); font-size: 0.719rem; color: var(--ink-soft); flex-wrap: wrap; }
.contact-card__links .is-accent { color: var(--campari); }
@media (min-width: 64em) {
	.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 0 46px; }
	.contact-card { border-radius: 16px; }
	.contact-card__map { height: 150px; }
	.contact-card__body { padding: 26px 28px 28px; }
	.contact-card__name { font-size: 2rem; margin-bottom: 16px; }
	.contact-card__facts { font-size: 0.938rem; }
	.contact-fact__label { font-size: 0.656rem; }
}

/* --- WhatsApp FAB ------------------------------------------------------------------------------------ */

.whatsapp-fab {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--basilico);
	color: var(--on-dark-bright);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	transition: transform var(--dur) var(--ease-out);
}
.whatsapp-fab:hover { transform: scale(1.08); color: var(--on-dark-bright); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* --- Reveal (kept subtle; content never depends on JS) ------------------------------------------------ */

.js-reveal .reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-reveal .reveal { opacity: 1; transform: none; } }
