/* =============================================
   RISTORANTE STELLA — Stylesheet (Nuovo Design)
   Dark elegant theme inspired by premium dining sites
   ============================================= */

:root {
    /* PALETTE — "carta antica ma moderna":
       aged parchment + warm terracotta + deep navy ink (logo) */
    --bg:           #f1e6cc;        /* aged parchment */
    --bg-alt:       #e8dab8;        /* deeper parchment — alternating */
    --bg-card:      #faf2dc;        /* lighter ivory — card surfaces */
    --bg-deep:      #1a2238;        /* deep navy ink — footer / contrast */
    --bg-deep-2:    #232c4a;        /* slightly lighter navy */

    --coral:        #c46647;        /* aged terracotta — slightly rusty */
    --coral-bright: #d77a5b;
    --coral-dark:   #a25334;
    --coral-soft:   rgba(196, 102, 71, 0.1);

    --cream:        #ead890;        /* logo's pale yellow */
    --cream-bright: #f3e2a4;

    --navy:         #1a2238;        /* logo navy — primary ink */
    --navy-soft:    #2c3656;

    --text:         #2a2418;        /* warm sepia-brown text on parchment */
    --text-muted:   #6a5d49;        /* aged ink for body copy */
    --text-dim:     #998d75;
    --border:       rgba(74, 56, 36, 0.18);
    --border-strong:rgba(74, 56, 36, 0.32);

    /* on dark sections (footer, stats) */
    --on-dark-text:       #f5ead0;
    --on-dark-text-muted: #c0b59a;
    --on-dark-border:     rgba(241, 230, 204, 0.18);

    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Nunito', 'Helvetica Neue', Arial, sans-serif;

    --header-h:     90px;
    --container:    1240px;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast:       0.25s var(--ease);
    --t-med:        0.4s var(--ease);
    --t-slow:       0.7s var(--ease);
}

/* ---------- Subtle paper grain overlay (inline SVG noise — GDPR-safe, no external load) ---------- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0 0.08 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 240px 240px;
}

/* keep page interactivity above the noise overlay */
.nav, main, section, footer { position: relative; z-index: 2; }

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--coral);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover { color: var(--coral-dark); }

button { font-family: inherit; }

/* ---------- Decorative leaf overlays ---------- */
.leaf-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    z-index: 0;
}
.leaf-bg--left  { left: 0;  top: 0;  width: 220px; transform: rotate(-15deg) translate(-30%, -10%); }
.leaf-bg--right { right: 0; top: 0;  width: 220px; transform: rotate(15deg) translate(30%, -10%); }

.section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.container {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ---------- Decorative section label (» — TEXT — «) ---------- */
.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: var(--coral);
    font-size: 0.72rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--coral);
    opacity: 0.6;
}

.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::before { display: none; }

/* ---------- Typography ---------- */
.h-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.3px;
}

.h-title em { font-style: italic; color: var(--coral); font-weight: 500; }

.h-1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.h-2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.h-3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.section__title {
    text-align: center;
    margin-bottom: 1rem;
}

.section__intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4rem;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border-strong);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
}

.btn--primary {
    background: var(--coral);
    color: var(--bg-card);
    border-color: var(--coral);
    box-shadow: 0 6px 18px rgba(224, 130, 102, 0.25);
}
.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(224, 130, 102, 0.32);
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--ghost:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--cream);
    transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med);
    /* Keep the header clear of the notch in landscape on iPhone/iPad */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.nav.scrolled {
    background: rgba(245, 232, 196, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border), 0 6px 24px rgba(29, 37, 64, 0.08);
}

.nav__inner {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--navy);
}

.nav__brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-strong);
}

.nav__brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav__brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--navy);
}

.nav__brand-name em {
    font-style: italic;
    color: var(--coral);
    font-weight: 500;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: color var(--t-fast);
    position: relative;
    padding: 0.4rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width var(--t-fast);
}

.nav__link:hover { color: var(--coral); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    background: var(--coral);
    color: var(--bg-card);
    border: 1px solid var(--coral);
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--t-fast);
}

.nav__cta:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--bg-card);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* On the homepage, before the user scrolls, the nav floats over the dark hero video —
   use light ink. Once .scrolled adds the parchment background, navy ink takes over again.
   Scoped to .nav--hero so the inner pages (no dark hero) keep their dark nav. */
.nav--hero:not(.scrolled) .nav__brand,
.nav--hero:not(.scrolled) .nav__brand-name {
    color: var(--on-dark-text);
}
.nav--hero:not(.scrolled) .nav__burger span {
    background: var(--on-dark-text);
}
@media (min-width: 769px) {
    .nav--hero:not(.scrolled) .nav__link { color: var(--on-dark-text); }
    .nav--hero:not(.scrolled) .nav__link:hover { color: var(--coral-bright); }
}
/* When the mobile panel is open, the burger sits over the light panel — keep it dark */
.nav.menu-open .nav__burger span { background: var(--navy); }

/* Lock the page behind the open mobile menu */
body.nav-locked { overflow: hidden; }

/* Contact block at the foot of the mobile menu panel — hidden on desktop */
.nav__panel-foot { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-h) + 4rem) 0 5rem;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at top right, rgba(224, 130, 102, 0.18), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(240, 226, 164, 0.35), transparent 60%),
        var(--bg);
    overflow: hidden;
}

/* Wood-oven background photo */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark wash over the photo — heavier on the left so the headline stays readable,
   lighter on the right so the oven shows through behind the floating dishes */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 72% 30%, rgba(196, 102, 71, 0.22), transparent 62%),
        linear-gradient(105deg,
            rgba(14, 16, 26, 0.90) 0%,
            rgba(14, 16, 26, 0.78) 42%,
            rgba(14, 16, 26, 0.58) 72%,
            rgba(14, 16, 26, 0.46) 100%);
}

.hero__inner {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5.8vw, 5rem);
    line-height: 1.02;
    color: var(--on-dark-text);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero__copy h1 em {
    font-style: italic;
    color: var(--coral-bright);
    font-weight: 500;
}

.hero__copy p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--on-dark-text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero__rating-score {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--on-dark-text);
    font-weight: 600;
}

.hero__rating-stars {
    color: var(--coral-bright);
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero__rating-label {
    font-size: 0.78rem;
    color: var(--on-dark-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero ghost button sits on the dark video — light outline instead of navy */
.hero .btn--ghost {
    color: var(--on-dark-text);
    border-color: rgba(245, 234, 208, 0.55);
}
.hero .btn--ghost:hover {
    background: var(--on-dark-text);
    border-color: var(--on-dark-text);
    color: var(--navy);
}

/* Hero floating dishes */
.hero__visual {
    position: relative;
    height: 560px;
}

.hero__dish {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-card);
    box-shadow: 0 24px 50px rgba(29, 37, 64, 0.18), 0 4px 12px rgba(29, 37, 64, 0.08);
    transition: transform var(--t-slow);
}

.hero__dish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__dish--1 {
    width: 290px;
    height: 290px;
    top: 0;
    right: 30px;
    animation:
        dishIn1 1.15s cubic-bezier(0.22, 0.9, 0.3, 1) 0.35s both,
        floatA 6s ease-in-out 1.5s infinite;
}

.hero__dish--2 {
    width: 240px;
    height: 240px;
    bottom: 30px;
    right: 110px;
    animation:
        dishIn2 1.2s cubic-bezier(0.22, 0.9, 0.3, 1) 0.6s both,
        floatB 7s ease-in-out 1.8s infinite;
}

.hero__dish--3 {
    width: 145px;
    height: 145px;
    top: 175px;
    left: 30px;
    animation:
        dishIn3 1.1s cubic-bezier(0.22, 0.9, 0.3, 1) 0.85s both,
        floatA 5.5s ease-in-out 1.95s infinite;
}

.hero__badge {
    animation: badgeIn 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 1.25s both;
}

/* Entrance — each dish flies in from a different direction with rotation */
@keyframes dishIn1 {
    0%   { opacity: 0; transform: translate(80px, -90px) scale(0.45) rotate(22deg); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translate(0, 0) scale(1) rotate(0); }
}
@keyframes dishIn2 {
    0%   { opacity: 0; transform: translate(60px, 110px) scale(0.45) rotate(-25deg); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translate(0, 0) scale(1) rotate(0); }
}
@keyframes dishIn3 {
    0%   { opacity: 0; transform: translate(-90px, -40px) scale(0.4) rotate(-30deg); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translate(0, 0) scale(1) rotate(0); }
}
@keyframes badgeIn {
    0%   { opacity: 0; transform: scale(0.3) rotate(-12deg); }
    60%  { transform: scale(1.12) rotate(6deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Idle floating — runs after entrance settles */
@keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(14px); }
}

.hero__badge {
    position: absolute;
    top: 25px;
    right: -10px;
    background: var(--coral);
    color: var(--bg-card);
    padding: 0.85rem 1.1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 24px rgba(224, 130, 102, 0.4);
    z-index: 3;
}
.hero__badge small { display: block; font-weight: 400; font-size: 0.65rem; opacity: 0.75; margin-top: 2px; }

/* =============================================
   FEATURES (Why Choose Us)
   ============================================= */
.features {
    padding: 5rem 0 4rem;
    background: var(--bg);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem 1rem;
}

.feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2;
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   MENU SHOWCASE
   ============================================= */
.menu {
    padding: 7rem 0;
    background: var(--bg);
}

.menu__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu__head-left {
    flex: 1;
    min-width: 280px;
}

.menu__head-left .eyebrow { justify-content: flex-start; }
.menu__head-left .eyebrow::before { display: none; }

.menu__head-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.menu__head-left h2 em { font-style: italic; color: var(--coral); }

.menu__head p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    max-width: 500px;
    font-size: 0.92rem;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu__grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.menu__cta {
    text-align: center;
    margin-top: 3.5rem;
}

.dish {
    background: transparent;
    transition: transform var(--t-med);
    cursor: default;
}

.dish__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    box-shadow: 0 14px 30px rgba(29, 37, 64, 0.14);
}

.dish__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.dish:hover .dish__img img {
    transform: scale(1.06);
}

.dish__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.dish__head h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
}

.dish__price {
    font-family: var(--font-heading);
    color: var(--coral);
    font-size: 1.05rem;
    font-weight: 600;
}

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

/* =============================================
   STORY (A Journey)
   ============================================= */
.story {
    padding: 7rem 0;
    background: var(--bg-alt);
    position: relative;
}

.story__inner {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.story__copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.story__copy h2 em {
    font-style: italic;
    color: var(--coral);
    font-weight: 500;
}

.story__copy p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.story__copy .btn {
    margin-top: 1rem;
}

.story__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
}

.story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story__years {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(29, 37, 64, 0.18);
}
.story__years strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--coral);
    line-height: 1;
    font-weight: 600;
}
.story__years span {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 0.4rem;
    opacity: 0.75;
}

/* =============================================
   TIMELINE (How It All Began)
   ============================================= */
.timeline {
    padding: 7rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.timeline__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 6rem;
    margin-top: 4rem;
}

.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.tl-item--right {
    align-items: center;
}

.tl-item__img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-card);
    box-shadow: 0 14px 35px rgba(29, 37, 64, 0.18);
    flex-shrink: 0;
}

.tl-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.tl-item:hover .tl-item__img img {
    transform: scale(1.08);
}

.tl-item__copy h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.tl-item__copy p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 380px;
    margin: 0 auto;
}

/* =============================================
   STATS
   ============================================= */
.stats {
    padding: 5rem 0;
    background: var(--bg-deep);
    color: var(--on-dark-text);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__num {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5vw, 4rem);
    color: var(--coral);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.stat__label {
    color: var(--on-dark-text-muted);
    font-size: 0.85rem;
    margin-top: 0.6rem;
    line-height: 1.5;
}

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery {
    padding: 6rem 0 7rem;
    background: var(--bg-alt);
}

.gallery__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 3rem;
}

.gallery__cell {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
}

.gallery__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
    filter: saturate(0.95);
}

.gallery__cell:hover img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.gallery__cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 37, 64, 0.55), transparent 55%);
    opacity: 0;
    transition: opacity var(--t-fast);
    pointer-events: none;
}

.gallery__cell:hover::after { opacity: 1; }

/* =============================================
   HOURS / LOCATION
   ============================================= */
.location {
    padding: 7rem 0;
    background: var(--bg);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.location__info h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.location__info h2 em {
    font-style: italic;
    color: var(--coral);
}

.location__hours {
    margin: 2rem 0 2.5rem;
}

.location__hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.location__day { color: var(--navy); font-weight: 600; }

.location__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-size: 0.95rem;
}

.location__row svg {
    width: 18px;
    height: 18px;
    color: var(--coral);
    flex-shrink: 0;
}

.location__row a {
    color: var(--text);
}

.location__row a:hover { color: var(--coral); }

.location__map {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 460px;
    background: var(--bg-card);
    box-shadow: 0 18px 40px rgba(29, 37, 64, 0.12);
}

.location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 460px;
}

/* Map consent placeholder */
.map-consent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-alt));
}

.map-consent__inner {
    max-width: 380px;
    text-align: center;
}

.map-consent__inner svg {
    width: 36px;
    height: 36px;
    color: var(--coral);
    margin-bottom: 1rem;
}

.map-consent__inner h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.map-consent__inner p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.map-consent__inner a {
    color: var(--coral);
    text-decoration: underline;
}

.map-consent__inner button {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: var(--coral);
    color: var(--bg-card);
    border: 1px solid var(--coral);
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--t-fast);
}

.map-consent__inner button:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 4rem 0 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    background: var(--bg-deep);
    color: var(--on-dark-text-muted);
}

.footer__top {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--on-dark-border);
}

.footer__brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--on-dark-text);
}

.footer__brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--on-dark-border);
}

.footer__brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--on-dark-text);
}

.footer__brand-name em { font-style: italic; color: var(--coral); }

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer__col {
    text-align: center;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--on-dark-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer__col p,
.footer__col a {
    font-size: 0.9rem;
    color: var(--on-dark-text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.footer__col a:hover { color: var(--coral); }

.footer__row {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}
.footer__row svg { width: 14px; height: 14px; color: var(--coral); }

.footer__bottom {
    border-top: 1px solid var(--on-dark-border);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--on-dark-text-muted);
}
.footer__bottom > p { margin: 0; justify-self: start; grid-column: 1; }
.footer__bottom > .footer__social { justify-self: center; grid-column: 2; }
.footer__bottom > .footer__legal { justify-self: end; grid-column: 3; }

.footer__legal {
    display: flex;
    gap: 1.25rem;
}

.footer__legal a {
    color: var(--on-dark-text-muted);
    font-size: 0.8rem;
}
.footer__legal a:hover { color: var(--coral); }

/* Standalone legal-links row centered below footer__bottom (legacy) */
.footer__legal--bottom {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--on-dark-border);
}
.footer__legal--bottom a { font-size: 0.78rem; }

@media (max-width: 768px) {
    .footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__bottom > p,
    .footer__bottom > .footer__social,
    .footer__bottom > .footer__legal { grid-column: 1; justify-self: center; }
}

.footer__social {
    display: flex;
    gap: 0.85rem;
}

.footer__social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--on-dark-border);
    border-radius: 50%;
    color: var(--on-dark-text-muted);
    transition: all var(--t-fast);
}

.footer__social a:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.footer__social svg { width: 14px; height: 14px; }

/* =============================================
   MENU COMPLETO (tabs + grid of items)
   ============================================= */
.menu-full {
    padding: 7rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0 2.5rem;
}

.menu-tab {
    padding: 0.75rem 1.65rem;
    background: transparent;
    border: 1.5px solid var(--border-strong);
    border-radius: 2px;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--t-fast);
    min-height: 44px;
}

.menu-tab:hover { border-color: var(--coral); color: var(--coral); }

.menu-tab.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--bg-card);
}

.menu-panel { display: none; }
.menu-panel.active {
    display: block;
    animation: menuFadeIn 0.45s var(--ease);
}

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

.menu-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2.25rem;
    font-size: 0.92rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.75rem;
}

.menu-row {
    background: var(--bg-card);
    padding: 1.1rem 1.3rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--coral);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.menu-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(29, 37, 64, 0.08);
}

.menu-row__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.3rem;
}

.menu-row__head h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 600;
    margin: 0;
}

.menu-row__price {
    font-family: var(--font-heading);
    color: var(--coral);
    font-size: 0.98rem;
    font-weight: 600;
    white-space: nowrap;
}

.menu-row__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.menu-subcat {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--coral);
    letter-spacing: -0.3px;
}

.menu-subcat:first-child { margin-top: 0; }

.menu-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 3rem;
}

/* =============================================
   REVIEWS (GDPR-safe testimonials)
   ============================================= */
.reviews {
    padding: 7rem 0;
    background: var(--bg-alt);
}

.reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem auto 3rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm, 0 4px 14px rgba(29, 37, 64, 0.06));
}

.reviews__score {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1;
}

.reviews__rating-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.reviews__stars {
    color: var(--coral);
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.reviews__count {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    padding: 1.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 14px rgba(29, 37, 64, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(29, 37, 64, 0.1);
}

.review-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.review-card__name {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.review-card__date {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

.review-card__stars {
    color: var(--coral);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    line-height: 1;
}

.review-card__text {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

.review-card__src {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.review-card__src svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.reviews__cta {
    text-align: center;
    margin-top: 3rem;
}

/* New: Google G mark next to the average rating */
.reviews__google-mark {
    width: 30px;
    height: 30px;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

/* New: Layout for review-card head with avatar + name block + Google G */
.review-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.review-card__who { flex: 1; min-width: 0; }
.review-card__google {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.95;
}

/* Empty star (4★ rating) */
.review-card__star-empty {
    color: var(--coral);
    opacity: 0.3;
}

/* =============================================
   MENU PAGE (dedicated /menu.html)
   ============================================= */
.menu-page-hero {
    padding: calc(var(--header-h) + 4rem) 0 3rem;
    background:
        radial-gradient(ellipse at top right, rgba(196, 102, 71, 0.12), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(234, 216, 144, 0.3), transparent 60%),
        var(--bg);
    text-align: center;
}

.menu-page-hero h1 { margin-bottom: 1rem; }
.menu-page-hero .section__intro { margin-bottom: 0; max-width: 620px; }

/* When menu-full is on its own page (after .menu-page-hero), no double border */
.menu-page-hero + .menu-full { border-top: none; padding-top: 3rem; }

/* =============================================
   LOCATION TAGS
   ============================================= */
.location__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}

.location__tag {
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.78rem;
    color: var(--navy);
    border: 1px solid var(--border);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all var(--t-fast);
}

.location__tag:hover {
    border-color: var(--coral);
    color: var(--coral);
}

/* =============================================
   ORNAMENTS & DECORATIONS (antique-modern flourishes)
   ============================================= */

/* Section ornament — elegant double-leaf flourish above titles */
.flourish {
    display: block;
    width: 56px;
    height: 16px;
    margin: 0 auto 1.25rem;
    color: var(--coral);
    opacity: 0.85;
}

.flourish svg { width: 100%; height: 100%; }

/* Wide horizontal section divider — sits BETWEEN sections, antique-book feel */
.section-divider {
    background: var(--bg);
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-divider svg {
    width: 240px;
    height: 24px;
    color: var(--coral);
    opacity: 0.55;
}
.section-divider--alt {
    background: var(--bg-alt);
}

@media (max-width: 768px) {
    .section-divider svg { width: 180px; }
}

/* Structured Google rating chips inside review cards */
.review-card__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
    font-size: 0.74rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}
.review-card__metric strong {
    color: var(--navy);
    font-weight: 600;
}

/* Drop cap on the first paragraph — antique book feel */
.drop-cap::first-letter {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 4.2rem;
    font-weight: 500;
    color: var(--coral);
    float: left;
    line-height: 0.85;
    margin: 0.45rem 0.7rem 0 0;
}

/* Feature numbering — "01" with underline that becomes a connector */
.feature__num {
    display: inline-block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--coral);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.85rem;
}
.feature__num::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background: var(--coral);
    opacity: 0.55;
    transition: width var(--t-fast);
}
.feature:hover .feature__num::after { width: 56px; }

/* Quote-mark decoration on review cards */
.review-card { position: relative; overflow: hidden; }
.review-card::before {
    content: '\201C';
    position: absolute;
    top: -38px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

/* Slight tilt on review cards for organic feel — straightens on hover */
.review-card { transform: rotate(-0.6deg); transition: transform var(--t-med), box-shadow var(--t-med); }
.reviews__grid > .review-card:nth-child(2) { transform: rotate(0.5deg); }
.reviews__grid > .review-card:nth-child(3) { transform: rotate(-0.3deg); }
.review-card:hover { transform: translateY(-4px) rotate(0); }

/* Vertical dividers between stats — adds gravitas to numbers */
.stats__grid {
    position: relative;
}
.stats__grid > div {
    position: relative;
    padding: 0 1rem;
}
.stats__grid > div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 1px;
    height: 60%;
    background: var(--on-dark-border);
    transform: translateY(-50%);
}

/* Hero — handwritten underline curve under the italic word */
.hero__copy h1 em {
    position: relative;
    display: inline-block;
}
.hero__copy h1 em::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -8px;
    height: 12px;
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 50 2, 100 11, 198 5' stroke='%23c46647' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    opacity: 0.7;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
    animation: underlineDraw 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.9s forwards;
}

@keyframes underlineDraw {
    to { transform: scaleX(1); }
}

/* Scroll indicator at hero bottom */
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--on-dark-text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: scrollFadeIn 1s ease 1.6s forwards;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--coral) 40%, var(--coral));
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--bg));
    animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { top: -50%; }
    100% { top: 100%; }
}
@keyframes scrollFadeIn {
    to { opacity: 0.7; }
}

/* Gallery caption overlay — always visible on touch, hover-only on desktop */
.gallery__cell-cap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.25rem 1rem 1rem;
    color: var(--on-dark-text);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: transform var(--t-med), opacity var(--t-med);
    pointer-events: none;
}
.gallery__cell:hover .gallery__cell-cap { transform: translateY(0); opacity: 1; }

/* "Specialità della casa" tag for menu showcase highlight dish */
.dish__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--coral);
    color: var(--bg-card);
    padding: 0.35rem 0.7rem;
    border-radius: 2px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(196, 102, 71, 0.3);
}

/* Magnetic / lift hover for primary buttons — already there, beefing up shadow */
.btn--primary:hover { box-shadow: 0 14px 32px rgba(196, 102, 71, 0.35); }

/* Reveal stagger refinement — words in hero title appear sequentially */
.hero__copy h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordIn 0.85s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}
@keyframes wordIn {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .review-card { transform: none; }
    .reviews__grid > .review-card:nth-child(2),
    .reviews__grid > .review-card:nth-child(3) { transform: none; }
    .review-card:hover { transform: translateY(-3px); }

    .stats__grid > div:not(:last-child)::after {
        display: none;
    }

    .hero__scroll { display: none; }

    .drop-cap::first-letter { font-size: 3.2rem; margin: 0.35rem 0.5rem 0 0; }

    .feature__num { font-size: 1.1rem; }
}

/* =============================================
   LEGAL PAGES (Privacy / Cookies / Note Legali)
   ============================================= */
.legal-page {
    padding: calc(var(--header-h) + 4rem) 0 5rem;
    background: var(--bg);
    min-height: 100vh;
}

.legal-page__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-page__header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin-bottom: 0.6rem;
}

.legal-page__header h1 em { font-style: italic; color: var(--coral); }

.legal-page__updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.legal-page__content {
    max-width: 820px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text);
}

.legal-page__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    color: var(--navy);
    font-weight: 700;
    margin: 2.75rem 0 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid var(--coral);
    letter-spacing: -0.2px;
}

.legal-page__content h2:first-child { margin-top: 0; }

.legal-page__content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 600;
    margin: 2rem 0 0.65rem;
}

.legal-page__content p {
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-page__content ul,
.legal-page__content ol {
    margin: 0 0 1.25rem 1.5rem;
    padding: 0;
}

.legal-page__content li {
    margin-bottom: 0.6rem;
    color: var(--text);
}

.legal-page__content a {
    color: var(--coral);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--t-fast);
}

.legal-page__content a:hover {
    color: var(--coral-dark);
}

.legal-page__content strong {
    color: var(--navy);
    font-weight: 700;
}

.legal-page__content em {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-muted);
}

.legal-page__box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--coral);
    padding: 1.4rem 1.65rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.legal-page__box p { margin-bottom: 0.5rem; }
.legal-page__box p:last-child { margin-bottom: 0; }

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 0.8rem 1.65rem;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--t-fast);
}

.legal-page__back:hover {
    background: var(--navy);
    color: var(--cream);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-page {
        padding: calc(var(--header-h) + 2rem) 0 3rem;
    }
    .legal-page__header { margin-bottom: 2rem; padding-bottom: 1.5rem; }
    .legal-page__content { font-size: 0.92rem; line-height: 1.7; }
    .legal-page__content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
    .legal-page__content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
    .legal-page__box { padding: 1.1rem 1.25rem; }
    .legal-page__back { width: 100%; justify-content: center; min-height: 48px; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

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

/* On small touch screens: keep the entrance animation but skip the perpetual floating
   (the entrance is the wow moment; floating jitters on mobile with low-power scroll) */
@media (max-width: 768px) {
    .hero__dish--1 {
        animation: dishIn1 1.1s cubic-bezier(0.22, 0.9, 0.3, 1) 0.3s both;
    }
    .hero__dish--2 {
        animation: dishIn2 1.15s cubic-bezier(0.22, 0.9, 0.3, 1) 0.5s both;
    }
    .hero__dish--3 {
        animation: dishIn3 1.05s cubic-bezier(0.22, 0.9, 0.3, 1) 0.7s both;
    }
}

/* Hover effects on touch devices: don't get stuck */
@media (hover: none) {
    .dish:hover .dish__img img,
    .tl-item:hover .tl-item__img img,
    .gallery__cell:hover img { transform: none; }
    .gallery__cell:hover::after { opacity: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    :root { --header-h: 80px; }

    .section { padding: 5.5rem 0; }

    .hero { padding: calc(var(--header-h) + 2.5rem) 0 4rem; min-height: 100vh; min-height: 100dvh; }
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero__copy p { margin-left: auto; margin-right: auto; }
    .hero__copy .btn { margin-top: 0.5rem; }
    .hero__rating { justify-content: center; }
    .hero__visual { height: 440px; max-width: 480px; margin: 0 auto; }
    .hero__dish--1 { right: 10px; width: 240px; height: 240px; }
    .hero__dish--2 { right: 70px; bottom: 10px; width: 200px; height: 200px; }
    .hero__dish--3 { left: 10px; top: 130px; width: 120px; height: 120px; }

    .features__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .menu__head { flex-direction: column; align-items: flex-start; }
    .menu__head .btn { align-self: flex-start; }
    .menu__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .menu__grid--3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .story__inner { grid-template-columns: 1fr; gap: 3rem; }
    .timeline__grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .gallery__strip { grid-template-columns: repeat(3, 1fr); }
    .location__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --header-h: 64px; }

    body { font-size: 15px; }

    .section { padding: 4rem 0; }
    .container { width: 90%; }

    /* --- NAV --- */
    .nav__inner { gap: 0.75rem; }
    .nav__brand-name { font-size: 1rem; letter-spacing: 0.5px; }
    .nav__brand-mark { width: 34px; height: 34px; }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 86%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: calc(var(--header-h) + 1.5rem)
                 max(1.75rem, env(safe-area-inset-right))
                 max(1.75rem, env(safe-area-inset-bottom))
                 1.75rem;
        transition: right 0.4s var(--ease);
        z-index: 90;
        box-shadow: -16px 0 50px rgba(26, 34, 56, 0.22);
        overflow-y: auto;
    }
    .nav__links.open { right: 0; }

    .nav__link {
        display: flex;
        align-items: center;
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: var(--navy);
        padding: 0.95rem 0.25rem;
        min-height: 44px;
        border-bottom: 1px solid var(--border);
    }
    .nav__link:first-child { border-top: 1px solid var(--border); }
    .nav__link::after { display: none; }
    .nav__link:active { color: var(--coral); }

    /* --- Mobile menu contact foot --- */
    .nav__panel-foot {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
        margin-top: auto;
        padding-top: 1.75rem;
    }
    .nav__panel-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        background: var(--coral);
        color: var(--bg-card);
        padding: 0.95rem 1rem;
        border-radius: 3px;
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        box-shadow: 0 8px 20px rgba(196, 102, 71, 0.28);
    }
    .nav__panel-cta:hover { background: var(--coral-dark); color: var(--bg-card); }
    .nav__panel-cta svg { width: 16px; height: 16px; }

    .nav__panel-info {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    .nav__panel-row {
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        font-size: 0.84rem;
        line-height: 1.5;
        color: var(--text-muted);
    }
    .nav__panel-row svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 2px;
        stroke: var(--coral);
    }
    a.nav__panel-row:active { color: var(--coral); }

    .nav__cta {
        padding: 0.6rem 0.95rem;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    .nav__burger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        margin-left: 0.25rem;
        position: relative;
        z-index: 95;
    }

    /* --- HERO --- */
    .hero { padding: calc(var(--header-h) + 2rem) 0 3.5rem; }
    .hero__inner { gap: 2.25rem; }
    .hero__copy h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 1.1;
        letter-spacing: -0.5px;
    }
    .hero__copy p { font-size: 0.95rem; line-height: 1.7; }
    .hero__copy .btn { padding: 0.95rem 1.5rem; font-size: 0.75rem; }

    .hero__rating { gap: 0.85rem; margin-top: 2rem; }
    .hero__rating-score { font-size: 1.85rem; }
    .hero__rating-stars { font-size: 0.9rem; }
    .hero__rating-label { font-size: 0.7rem; }

    /* Mobile: 3 dishes side-by-side in a clean row (no overlap, no awkward stacking) */
    .hero__visual {
        position: relative;
        height: auto;
        max-width: 100%;
        margin-top: 0.5rem;
        padding: 1.25rem 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    .hero__dish {
        position: relative;
        flex: 0 0 auto;
        top: auto; left: auto; right: auto; bottom: auto;
    }
    .hero__dish--1,
    .hero__dish--3 { width: 110px; height: 110px; }
    .hero__dish--2 { width: 138px; height: 138px; }  /* center slightly bigger as focal point */
    .hero__badge { padding: 0.5rem 0.85rem; font-size: 0.62rem; top: -2px; right: 4%; }
    .hero__badge small { font-size: 0.55rem; }

    /* --- TYPOGRAPHY --- */
    .h-1 { font-size: clamp(2rem, 7vw, 2.75rem); }
    .h-2 { font-size: clamp(1.65rem, 6.5vw, 2.25rem); }
    .h-3 { font-size: clamp(1.25rem, 5vw, 1.6rem); }

    .eyebrow { font-size: 0.66rem; letter-spacing: 3px; gap: 0.6rem; margin-bottom: 1rem; }
    .eyebrow::before, .eyebrow::after { width: 22px; }

    .section__intro { margin-bottom: 2.5rem; font-size: 0.92rem; }

    /* --- FEATURES --- */
    .features { padding: 3.5rem 0; }
    .features__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
    .feature { padding: 1rem 0.5rem; }
    .feature__icon { width: 44px; height: 44px; margin-bottom: 0.85rem; }
    .feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
    .feature p { font-size: 0.83rem; line-height: 1.55; }

    /* --- MENU --- */
    .menu { padding: 4rem 0; }
    .menu__head { gap: 1.25rem; margin-bottom: 2.25rem; }
    .menu__head-left h2 { font-size: 1.65rem; }
    .menu__head p { font-size: 0.88rem; margin-top: 0.6rem; }
    .menu__head .btn { padding: 0.85rem 1.4rem; font-size: 0.72rem; align-self: stretch; text-align: center; justify-content: center; }
    .menu__grid,
    .menu__grid--3 { grid-template-columns: 1fr; gap: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
    .menu__cta { margin-top: 2.5rem; }
    .menu__cta .btn { width: 100%; justify-content: center; }
    .dish__img { aspect-ratio: 16 / 11; }
    .dish__head h3 { font-size: 1.1rem; }
    .dish__price { font-size: 0.95rem; }
    .dish__desc { font-size: 0.85rem; }
    .menu-page-hero { padding: calc(var(--header-h) + 2.5rem) 0 2rem; }

    /* --- MENU FULL --- */
    .menu-full { padding: 4rem 0; }
    .menu-tabs {
        gap: 0.4rem;
        margin: 1.5rem -5% 2rem;
        padding: 0 5% 0.5rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab {
        padding: 0.6rem 1.1rem;
        font-size: 0.7rem;
        flex-shrink: 0;
        white-space: nowrap;
        letter-spacing: 1.5px;
    }
    .menu-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .menu-row { padding: 0.95rem 1.1rem; }
    .menu-row__head h4 { font-size: 0.98rem; }
    .menu-row__price { font-size: 0.92rem; }
    .menu-row__desc { font-size: 0.82rem; }
    .menu-subcat { font-size: 1.2rem; margin: 1.25rem 0 0.4rem; }
    .menu-note { font-size: 0.85rem; margin-bottom: 1.75rem; }
    .menu-disclaimer { font-size: 0.78rem; margin-top: 2rem; }

    /* --- REVIEWS --- */
    .reviews { padding: 4rem 0; }
    .reviews__rating { padding: 0.85rem 1.1rem; margin: 1rem auto 2.25rem; gap: 0.85rem; }
    .reviews__score { font-size: 2rem; }
    .reviews__stars { font-size: 0.95rem; }
    .reviews__count { font-size: 0.65rem; letter-spacing: 0.5px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 1.1rem; }
    .review-card { padding: 1.4rem 1.25rem; gap: 0.85rem; }
    .review-card__avatar { width: 40px; height: 40px; font-size: 1rem; }
    .review-card__name { font-size: 0.9rem; }
    .review-card__text { font-size: 0.88rem; line-height: 1.65; }
    .reviews__cta { margin-top: 2rem; }
    .reviews__cta .btn { width: 100%; justify-content: center; }

    /* --- LOCATION TAGS --- */
    .location__tags { gap: 0.5rem; margin: 1.25rem 0 1.5rem; }
    .location__tag { font-size: 0.72rem; padding: 0.4rem 0.85rem; }

    /* --- STORY --- */
    .story { padding: 4rem 0; }
    .story__inner { gap: 2rem; }
    .story__copy h2 { font-size: 1.85rem; }
    .story__copy p { font-size: 0.9rem; line-height: 1.7; }
    .story__visual { aspect-ratio: 4 / 4.5; max-width: 480px; margin: 0 auto; }
    .story__years { width: 100px; height: 100px; top: 18px; right: 18px; }
    .story__years strong { font-size: 1.55rem; }
    .story__years span { font-size: 0.6rem; letter-spacing: 1px; }

    /* --- TIMELINE --- */
    .timeline { padding: 4rem 0; }
    .timeline__grid { gap: 2.5rem; margin-top: 2.5rem; }
    .tl-item { gap: 1.1rem; }
    .tl-item__img { width: 175px; height: 175px; }
    .tl-item__copy h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
    .tl-item__copy p { font-size: 0.85rem; line-height: 1.65; max-width: 320px; }

    /* --- STATS --- */
    .stats { padding: 3rem 0; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
    .stat__num { font-size: 2.4rem; }
    .stat__label { font-size: 0.78rem; margin-top: 0.4rem; }

    /* --- GALLERY --- */
    .gallery { padding: 3.5rem 0 4rem; }
    .gallery__strip { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
    .gallery__cell { aspect-ratio: 1 / 1; }

    /* --- LOCATION --- */
    .location { padding: 4rem 0; }
    .location__info h2 { font-size: 1.85rem; }
    .location__hours-row { padding: 0.7rem 0; font-size: 0.88rem; }
    .location__row { font-size: 0.9rem; }
    .location__info .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.78rem;
        min-height: 50px;
    }
    .location__map { min-height: 360px; }
    .location__map iframe { min-height: 360px; }
    .map-consent { padding: 1.5rem; }
    .map-consent__inner h3 { font-size: 1.15rem; }
    .map-consent__inner p { font-size: 0.82rem; }
    .map-consent__inner button { width: 100%; min-height: 48px; }

    /* --- FOOTER --- */
    .footer { padding: 3rem 0 1.5rem; padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
    .footer__top { margin-bottom: 2rem; padding-bottom: 2rem; }
    .footer__brand-mark { width: 44px; height: 44px; }
    .footer__brand-name { font-size: 1.15rem; }
    .footer__grid { gap: 2rem; margin-bottom: 2rem; }
    .footer__col h4 { font-size: 1.05rem; margin-bottom: 0.85rem; }
    .footer__col p, .footer__col a { font-size: 0.85rem; }
    .footer__bottom { gap: 1rem; font-size: 0.75rem; }
    .footer__legal { flex-wrap: wrap; justify-content: center; gap: 0.85rem; }
    .footer__legal a { font-size: 0.78rem; }

    /* Tap targets — buttons, links generally min 44x44 */
    .btn { min-height: 44px; }

    /* Disable parallax (heavy on mobile) */
    [style*="background-attachment: fixed"] { background-attachment: scroll !important; }
}

/* Small mobile (iPhone SE, smaller) */
@media (max-width: 420px) {
    .container { width: 92%; }

    .hero__copy h1 { font-size: 1.95rem; }
    .hero__copy p { font-size: 0.92rem; }

    /* Small mobile: keep the row layout, just shrink the circles to fit */
    .hero__visual { gap: 0.5rem; padding-top: 1rem; }
    .hero__dish--1,
    .hero__dish--3 { width: 90px; height: 90px; }
    .hero__dish--2 { width: 115px; height: 115px; }
    .hero__badge { padding: 0.45rem 0.75rem; font-size: 0.58rem; right: 3%; }
    .hero__badge small { font-size: 0.5rem; }

    .features__grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .menu__grid { gap: 1.5rem; }

    .stats__grid { gap: 1.5rem 1rem; }
    .stat__num { font-size: 2rem; }
    .stat__label { font-size: 0.72rem; }

    .gallery__strip { grid-template-columns: 1fr; }

    .tl-item__img { width: 150px; height: 150px; }
    .tl-item__copy h3 { font-size: 1.2rem; }

    .story__years { width: 86px; height: 86px; }
    .story__years strong { font-size: 1.3rem; }
    .story__years span { font-size: 0.55rem; }
}
