/* =========================
   DESIGN SYSTEM
========================= */

:root {
    /* Colors */
    --color-background: #f5f0e8;
    --color-surface: #fffaf3;

    --color-primary: #8f1d1d;
    --color-primary-dark: #671414;

    --color-text: #191714;
    --color-text-muted: #716b63;

    --color-border: #ded6ca;

    /* Typography */
    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;

    /* Layout */
    --container-width: 1240px;
    --container-padding: 5%;

    /* Transitions */
    --transition: 0.25s ease;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--color-text);
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;

    min-height: 100vh;

    overflow-x: hidden;

    background: var(--color-background);
}

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

button {
    font: inherit;
}


/* =========================
   GENERAL
========================= */

.container {
    width: min(var(--container-width), 90%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid rgba(25, 23, 20, 0.12);
}

.navbar {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    flex-direction: column;

    font-family: var(--font-heading);

    font-size: 1.9rem;
    font-weight: 600;

    line-height: 0.85;

    letter-spacing: 0.05em;
}

.logo span {
    margin-top: 0.4rem;

    font-family: var(--font-body);

    color: var(--color-primary);

    font-size: 0.55rem;
    font-weight: 600;

    letter-spacing: 0.28em;
}


/* =========================
   NAVIGATION
========================= */

.nav {
    display: flex;
    align-items: center;

    gap: 2.2rem;
}

.nav a {
    position: relative;

    color: var(--color-text-muted);

    font-size: 0.85rem;
    font-weight: 500;

    transition: color var(--transition);
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--color-primary);

    transition: width var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}


/* =========================
   BOOKING BUTTON
========================= */

.nav-booking {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 1.4rem;

    background: var(--color-primary);
    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 500;

    transition:
        background var(--transition),
        transform var(--transition);
}

.nav-booking:hover {
    background: var(--color-primary-dark);

    transform: translateY(-2px);
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;

    border: 1px solid var(--color-border);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    margin: 4px auto;

    background: var(--color-text);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: 140px 0 70px;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.82fr;

    gap: clamp(4rem, 8vw, 8rem);

    align-items: center;
}


/* =========================
   HERO CONTENT
========================= */

.hero-eyebrow {
    margin-bottom: 1.8rem;

    color: var(--color-primary);

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.22em;
}

.hero h1 {
    max-width: 760px;

    font-family: var(--font-heading);

    font-size: clamp(4.5rem, 7vw, 7.8rem);
    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.hero-description {
    max-width: 560px;

    margin-top: 2.5rem;

    color: var(--color-text-muted);

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================
   HERO ACTIONS
========================= */

.hero-actions {
    display: flex;

    gap: 1rem;

    margin-top: 2.5rem;
}

.btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 1.7rem;

    font-size: 0.85rem;
    font-weight: 500;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    border: 1px solid var(--color-border);

    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-surface);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;

    min-height: 620px;

    background:
        linear-gradient(135deg,
            #ded6ca,
            #c9b8a4);

    overflow: hidden;
}

.hero-image::after {
    content: "ROSSI";

    position: absolute;

    right: -5px;
    bottom: -35px;

    font-family: var(--font-heading);

    color: rgba(255, 255, 255, 0.22);

    font-size: 8rem;
    font-weight: 600;

    line-height: 1;
}


/* =========================
   HERO INFO
========================= */

.hero-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--color-text);
    color: #ffffff;
}

.hero-info>div {
    padding: 1.3rem 1.5rem;
}

.hero-info>div+div {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-info span {
    display: block;

    margin-bottom: 0.25rem;

    color: #aaa39b;

    font-size: 0.58rem;

    letter-spacing: 0.18em;
}

.hero-info strong {
    font-size: 0.78rem;
    font-weight: 500;
}

.hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.hero-visual:hover .hero-image img {
    transform: scale(1.025);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;

    top: 76px;
    left: 0;

    width: 100%;

    padding: 2rem 5%;

    background: var(--color-surface);

    border-bottom: 1px solid var(--color-border);

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;

    gap: 1.4rem;
}

.mobile-nav>a:not(.mobile-booking) {
    padding-bottom: 1rem;

    color: var(--color-text);

    font-family: var(--font-heading);
    font-size: 1.8rem;

    border-bottom: 1px solid var(--color-border);
}

.mobile-booking {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 0.5rem;

    background: var(--color-primary);
    color: #ffffff;

    font-size: 0.85rem;
    font-weight: 500;
}


/* Hamburger animation */

.menu-toggle span {
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* =========================
   MANIFESTO
========================= */

.manifesto {
    padding: 10rem 0;

    background: var(--color-text);
    color: #ffffff;
}

.manifesto-grid {
    display: grid;

    grid-template-columns: 0.35fr 1.65fr;

    gap: 4rem;
}

.manifesto-label span {
    color: #aaa39b;

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.22em;
}

.manifesto-content h2 {
    max-width: 950px;

    font-family: var(--font-heading);

    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 400;

    line-height: 0.86;

    letter-spacing: -0.04em;
}

.manifesto-content h2 span {
    display: block;

    color: #c6bdb3;

    font-style: italic;
}

.manifesto-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 4rem;

    margin-top: 4rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.manifesto-bottom p {
    max-width: 560px;

    color: #aaa39b;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 0.7rem;

    flex-shrink: 0;

    font-size: 0.82rem;
    font-weight: 500;
}

.text-link span {
    color: #c88d76;

    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translate(3px, -3px);
}

/* =========================
   FEATURED MENU
========================= */

.featured-menu {
    padding: 10rem 0;

    background: var(--color-background);
}


/* SECTION HEADING */

.section-heading {
    display: grid;

    grid-template-columns: 1fr 0.55fr;

    gap: 5rem;

    align-items: end;

    margin-bottom: 5rem;
}

.section-eyebrow {
    margin-bottom: 1.3rem;

    color: var(--color-primary);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.22em;
}

.section-heading h2 {
    font-family: var(--font-heading);

    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 500;

    line-height: 0.82;

    letter-spacing: -0.04em;
}

.section-heading h2 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.section-description {
    max-width: 440px;

    color: var(--color-text-muted);

    line-height: 1.8;
}


/* PIZZA GRID */

.pizza-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}


/* PIZZA CARD */

.pizza-card {
    border-top: 1px solid var(--color-border);
}

.pizza-image {
    position: relative;

    aspect-ratio: 4 / 5;

    margin-top: 1.2rem;

    overflow: hidden;

    background: #ded6ca;
}

.pizza-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.pizza-card:hover .pizza-image img {
    transform: scale(1.035);
}


/* PIZZA INFO */

.pizza-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 2rem;

    padding-top: 1.5rem;
}

.pizza-info h3 {
    margin-bottom: 0.5rem;

    font-family: var(--font-heading);

    font-size: 2rem;
    font-weight: 600;
}

.pizza-info p {
    max-width: 300px;

    color: var(--color-text-muted);

    font-size: 0.8rem;

    line-height: 1.7;
}

.pizza-price {
    color: var(--color-primary);

    font-family: var(--font-heading);

    font-size: 1.7rem;
    font-weight: 600;
}


/* FOOTER */

.featured-menu-footer {
    display: flex;
    justify-content: center;

    margin-top: 4rem;
}

/* =========================
   STORY
========================= */

.story {
    padding: 10rem 0;

    background: var(--color-surface);
}

.story-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: clamp(4rem, 8vw, 8rem);

    align-items: center;
}


/* IMAGE */

.story-image {
    position: relative;

    min-height: 720px;

    overflow: hidden;

    background: #ded6ca;
}

.story-image img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.story-image:hover img {
    transform: scale(1.025);
}


/* BADGE */

.story-badge {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--color-primary);
    color: #ffffff;
}

.story-badge strong {
    font-family: var(--font-heading);

    font-size: 2.8rem;
    font-weight: 500;

    line-height: 1;
}

.story-badge span {
    margin-top: 0.4rem;

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.2em;
}


/* CONTENT */

.story-content h2 {
    margin-bottom: 2.5rem;

    font-family: var(--font-heading);

    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}

.story-content h2 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.story-content>p:not(.section-eyebrow) {
    max-width: 520px;

    margin-bottom: 1.3rem;

    color: var(--color-text-muted);

    line-height: 1.8;
}

.story-content .story-lead {
    color: var(--color-text);

    font-size: 1.05rem;
}

.story-content .text-link {
    margin-top: 1.5rem;
}

/* =========================
   GALLERY PREVIEW
========================= */

.gallery-preview {
    padding: 10rem 0;

    background: var(--color-background);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 4rem;

    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-family: var(--font-heading);

    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}

.gallery-header h2 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}


/* GRID */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 280px;

    gap: 1rem;
}

.gallery-item {
    grid-column: span 4;

    overflow: hidden;

    background: #ded6ca;
}

.gallery-item-large {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 8;
}

.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

/* =========================
   VISIT
========================= */

.visit {
    padding: 10rem 0;

    background: var(--color-text);
    color: #ffffff;
}


/* HEADER */

.visit-header {
    max-width: 950px;

    margin-bottom: 5rem;
}

.visit .section-eyebrow {
    color: #e7c7c2;
}

.visit-header h2 {
    font-family: var(--font-heading);

    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}

.visit-header h2 span {
    display: block;

    color: #c6bdb3;

    font-style: italic;
    font-weight: 400;
}


/* GRID */

.visit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* CARD */

.visit-card {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 2rem;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.visit-card:last-child {
    border-right: 0;
}

.visit-number {
    color: #b8b2ac;

    font-size: 0.65rem;

    letter-spacing: 0.15em;
}

.visit-label {
    margin-bottom: 1.5rem;

    color: #aaa39b;

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 0.2em;
}

.visit-card h3 {
    max-width: 330px;

    font-family: var(--font-heading);

    font-size: 2.5rem;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.03em;
}

.visit-card .text-link {
    margin-top: 2rem;
}


/* HOURS */

.hours {
    margin-top: 1rem;
}

.hours>div {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    padding: 1rem 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours span {
    color: #aaa39b;

    font-size: 0.78rem;
}

.hours strong {
    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 500;
}


/* ACCENT CARD */

.visit-card-accent {
    margin-top: -1px;
    margin-bottom: -1px;

    background: var(--color-primary);
    color: #ffffff;

    border: 0;
}

.visit-card-accent .visit-number,
.visit-card-accent .visit-label {
    color: rgba(255, 255, 255, 0.7);
}

.visit-card-accent span {
    color: #ffffff;
}

.visit-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 3rem;

    padding: 1.2rem 0;

    border-top: 1px solid rgba(255, 255, 255, 0.35);

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.12em;
}

.visit-booking span {
    font-size: 1.2rem;

    transition: transform var(--transition);
}

.visit-booking:hover span {
    transform: translate(3px, -3px);
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 10rem 0;

    background: var(--color-background);
}

.final-cta-box {
    position: relative;

    padding: clamp(3rem, 7vw, 7rem);

    overflow: hidden;

    background: var(--color-surface);

    border: 1px solid var(--color-border);
}

.final-cta-box::after {
    content: "R";

    position: absolute;

    right: -2rem;
    bottom: -8rem;

    font-family: var(--font-heading);

    font-size: clamp(15rem, 30vw, 30rem);

    line-height: 1;

    color: rgba(0, 0, 0, 0.035);

    pointer-events: none;
}

.final-cta-box>* {
    position: relative;

    z-index: 1;
}

.final-cta-box h2 {
    max-width: 1000px;

    font-family: var(--font-heading);

    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 500;

    line-height: 0.84;

    letter-spacing: -0.04em;
}

.final-cta-box h2 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.final-cta-description {
    max-width: 520px;

    margin-top: 2rem;

    color: var(--color-text-muted);

    line-height: 1.8;
}

.final-cta-actions {
    display: flex;

    gap: 1rem;

    margin-top: 2.5rem;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 6rem 0 2rem;

    background: var(--color-text);
    color: #ffffff;

    margin-bottom: 0;
}

.footer span {
    color: #d8d2c9;
}

/* TOP */

.footer-top {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 7rem;

    padding-bottom: 6rem;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: flex;
    flex-direction: column;

    width: fit-content;

    font-family: var(--font-heading);

    font-size: 2.5rem;
    font-weight: 600;

    line-height: 0.8;

    letter-spacing: -0.04em;
}

.footer-logo span {
    margin-top: 0.7rem;

    color: var(--color-primary);

    font-family: var(--font-body);

    font-size: 0.55rem;
    font-weight: 600;

    letter-spacing: 0.25em;
}

.footer-brand p {
    margin-top: 2rem;

    color: #aaa39b;

    font-size: 0.85rem;

    line-height: 1.8;
}


/* NAVIGATION */

.footer-navigation {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 0.75rem;
}

.footer-title {
    margin-bottom: 1rem;

    color: #77716b;

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.2em;
}

.footer-column a,
.footer-column>span:not(.footer-title) {
    color: #aaa39b;

    font-size: 0.82rem;

    line-height: 1.7;
}

.footer-column a {
    transition: color var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}


/* BOTTOM */

.footer-bottom {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 2rem;

    align-items: center;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #77716b;

    font-size: 0.7rem;
}

.footer-bottom>p:last-child {
    text-align: right;
}

.footer-legal {
    display: flex;

    gap: 1.5rem;
}

.footer-legal a {
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

/* =========================
   MENU PAGE
========================= */

/* HERO */

.menu-hero {
    padding: 12rem 0 6rem;

    background: var(--color-background);

    border-bottom: 1px solid var(--color-border);
}

.menu-hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(6rem, 13vw, 13rem);
    font-weight: 500;

    line-height: 0.72;

    letter-spacing: -0.055em;
}

.menu-hero h1 span {
    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.menu-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 4rem;

    margin-top: 5rem;
}

.menu-hero-bottom p {
    max-width: 500px;

    color: var(--color-text-muted);

    line-height: 1.8;
}

.menu-hero-bottom>span {
    color: var(--color-text-muted);

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}


/* =========================
   CATEGORIES NAV
========================= */

.menu-section {
    padding: 0 0 10rem;

    background: var(--color-background);
}

.menu-categories {
    position: sticky;

    top: 76px;

    z-index: 50;

    display: flex;

    gap: 2.5rem;

    padding: 1.5rem 0;

    background: var(--color-background);

    border-bottom: 1px solid var(--color-border);
}

.menu-categories a {
    color: var(--color-text-muted);

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.1em;

    transition: color var(--transition);
}

.menu-categories a:hover {
    color: var(--color-primary);
}


/* =========================
   MENU CATEGORY
========================= */

.menu-category {
    display: grid;

    grid-template-columns: 0.55fr 1.45fr;

    gap: 6rem;

    padding-top: 8rem;

    scroll-margin-top: 140px;
}

.menu-category+.menu-category {
    margin-top: 5rem;

    border-top: 1px solid var(--color-border);
}

.menu-category-heading {
    display: flex;

    gap: 2rem;

    align-items: flex-start;
}

.menu-category-heading>span {
    padding-top: 0.25rem;

    color: var(--color-text-muted);

    font-size: 0.65rem;

    letter-spacing: 0.15em;
}

.menu-category-heading h2 {
    font-family: var(--font-heading);

    font-size: clamp(4rem, 6vw, 6rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}


/* =========================
   MENU ITEMS
========================= */

.menu-list {
    border-top: 1px solid var(--color-border);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 3rem;

    padding: 2rem 0;

    border-bottom: 1px solid var(--color-border);

    transition: padding-left var(--transition);
}

.menu-item:hover {
    padding-left: 0.7rem;
}

.menu-item h3 {
    margin-bottom: 0.5rem;

    font-family: var(--font-heading);

    font-size: 1.8rem;
    font-weight: 600;
}

.menu-item p {
    max-width: 450px;

    color: var(--color-text-muted);

    font-size: 0.82rem;

    line-height: 1.7;
}

.menu-item strong {
    flex-shrink: 0;

    color: var(--color-primary);

    font-family: var(--font-heading);

    font-size: 1.7rem;
    font-weight: 600;
}

/* =========================
   ABOUT PAGE
========================= */

.about-page-hero {
    padding: 12rem 0 6rem;

    background: var(--color-background);
}

.about-page-hero h1 {
    max-width: 1100px;

    font-family: var(--font-heading);

    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 500;

    line-height: 0.73;

    letter-spacing: -0.055em;
}

.about-page-hero h1 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.about-page-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: end;

    margin-top: 5rem;

    padding-top: 2rem;

    border-top: 1px solid var(--color-border);
}

.about-page-intro>span {
    color: var(--color-text-muted);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.about-page-intro p {
    max-width: 500px;

    color: var(--color-text-muted);

    line-height: 1.8;
}


/* =========================
   ABOUT MAIN IMAGE
========================= */

.about-page-image {
    padding-bottom: 10rem;

    background: var(--color-background);
}

.about-page-image-wrapper {
    height: min(70vw, 780px);

    overflow: hidden;

    background: var(--color-surface);
}

.about-page-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.about-page-image-wrapper:hover img {
    transform: scale(1.015);
}


/* =========================
   PHILOSOPHY
========================= */

.philosophy {
    padding: 10rem 0;

    background: var(--color-text);
    color: #ffffff;
}

.philosophy-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8rem;
}

.philosophy-heading h2 {
    max-width: 550px;

    font-family: var(--font-heading);

    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}

.philosophy-heading h2 span {
    display: block;

    color: #aaa39b;

    font-style: italic;
    font-weight: 400;
}

.philosophy-content {
    max-width: 530px;

    padding-top: 2rem;
}

.philosophy-content p {
    margin-bottom: 1.5rem;

    color: #aaa39b;

    line-height: 1.9;
}

.philosophy-content .philosophy-lead {
    color: #ffffff;

    font-family: var(--font-heading);

    font-size: 2rem;

    line-height: 1.15;
}


/* =========================
   ABOUT VALUES
========================= */

.about-values {
    padding: 10rem 0;

    background: var(--color-background);
}

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-value {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 2rem;

    border-right: 1px solid var(--color-border);
}

.about-value:last-child {
    border-right: 0;
}

.about-value>span {
    color: var(--color-text-muted);

    font-size: 0.65rem;

    letter-spacing: 0.15em;
}

.about-value h3 {
    margin-bottom: 1rem;

    font-family: var(--font-heading);

    font-size: 2.3rem;
    font-weight: 500;

    line-height: 1;
}

.about-value div>p:last-child {
    max-width: 330px;

    color: var(--color-text-muted);

    font-size: 0.85rem;

    line-height: 1.8;
}

/* =========================
   CRAFT CTA
========================= */

.craft-cta {
    padding: 10rem 0;

    background: var(--color-surface);
}

.craft-cta-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: clamp(4rem, 8vw, 8rem);

    align-items: center;
}

.craft-cta-image {
    height: 560px;

    overflow: hidden;

    background: #ded6ca;
}

.craft-cta-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.craft-cta-image:hover img {
    transform: scale(1.025);
}

.craft-cta-content h2 {
    max-width: 650px;

    font-family: var(--font-heading);

    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}

.craft-cta-content h2 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.craft-cta-content>p:not(.section-eyebrow) {
    max-width: 520px;

    margin-top: 2rem;

    color: var(--color-text-muted);

    line-height: 1.8;
}

.craft-cta-actions {
    display: flex;

    gap: 1rem;

    margin-top: 2.5rem;
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-page-hero {
    padding: 12rem 0 6rem;

    background: var(--color-background);
}

.gallery-page-hero h1 {
    max-width: 1100px;

    font-family: var(--font-heading);

    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 500;

    line-height: 0.73;

    letter-spacing: -0.055em;
}

.gallery-page-hero h1 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.gallery-page-intro {
    margin-top: 4rem;

    padding-top: 2rem;

    border-top: 1px solid var(--color-border);
}

.gallery-page-intro p {
    max-width: 520px;

    margin-left: auto;

    color: var(--color-text-muted);

    line-height: 1.8;
}


/* GRID */

.gallery-page {
    padding-bottom: 10rem;

    background: var(--color-background);
}

.gallery-page-grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 320px;

    gap: 1rem;
}

.gallery-page-item {
    grid-column: span 4;

    overflow: hidden;

    background: #ded6ca;
}

.gallery-page-item-large {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-page-item-wide {
    grid-column: span 8;
}

.gallery-page-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.035);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page-hero {
    padding: 12rem 0 6rem;
    background: var(--color-background);
}

.contact-page-hero h1 {
    max-width: 1100px;

    font-family: var(--font-heading);

    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 500;

    line-height: 0.73;
    letter-spacing: -0.055em;
}

.contact-page-hero h1 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.contact-page-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    margin-top: 5rem;
    padding-top: 2rem;

    border-top: 1px solid var(--color-border);
}

.contact-page-intro>span {
    color: var(--color-text-muted);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.contact-page-intro p {
    max-width: 480px;

    color: var(--color-text-muted);

    line-height: 1.8;
}


/* =========================
   CONTACT INFO
========================= */

.contact-page-info {
    padding: 4rem 0 10rem;

    background: var(--color-background);
}

.contact-page-info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.contact-info-block {
    min-height: 340px;

    padding: 2rem;

    border-right: 1px solid var(--color-border);
}

.contact-info-block:last-child {
    border-right: 0;
}

.contact-info-number {
    display: block;

    margin-bottom: 5rem;

    color: var(--color-text-muted);

    font-size: 0.65rem;
}

.contact-info-block h2 {
    margin-bottom: 2rem;

    font-family: var(--font-heading);

    font-size: 2.5rem;
    font-weight: 500;

    line-height: 1;
}

.contact-info-block h2 span {
    display: block;

    color: var(--color-text-muted);
}

.contact-info-block>a {
    color: var(--color-primary);

    font-size: 0.8rem;
    font-weight: 600;
}

.contact-info-links {
    display: flex;
    flex-direction: column;

    gap: 1rem;
}

.contact-info-links a {
    font-family: var(--font-heading);

    font-size: 1.5rem;
}

.contact-hours>div {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    padding: 0.8rem 0;

    border-bottom: 1px solid var(--color-border);
}

.contact-hours span {
    color: var(--color-text-muted);

    font-size: 0.8rem;
}

.contact-hours strong {
    font-size: 0.8rem;
    font-weight: 500;
}


/* =========================
   RESERVATION
========================= */

.reservation {
    padding: 10rem 0;

    background: var(--color-text);

    color: #ffffff;

    scroll-margin-top: 80px;
}

.reservation-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: clamp(5rem, 10vw, 10rem);
}

.reservation-heading h2 {
    font-family: var(--font-heading);

    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.04em;
}

.reservation-heading h2 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.reservation-heading>p:last-child {
    max-width: 450px;

    margin-top: 2rem;

    color: #aaa39b;

    line-height: 1.8;
}


/* FORM */

.reservation-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 2rem 1.5rem;
}

.form-full {
    grid-column: span 2;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 0.7rem;
}

.form-group label {
    color: #aaa39b;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 1rem 0;

    border: 0;
    border-bottom: 1px solid #504d49;
    border-radius: 0;

    outline: none;

    background: transparent;

    color: #ffffff;

    font: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-primary);
}

.form-group select option {
    color: #111111;
}


/* PRIVACY */

.form-privacy {
    display: flex;

    align-items: flex-start;

    gap: 0.8rem;
}

.form-privacy input {
    margin-top: 0.3rem;

    accent-color: var(--color-primary);
}

.form-privacy label {
    color: #aaa39b;

    font-size: 0.75rem;

    line-height: 1.6;
}

.form-privacy a {
    color: #ffffff;

    text-decoration: underline;
}


/* SUBMIT */

.form-submit {
    display: flex;

    align-items: center;

    gap: 1.5rem;

    margin-top: 1rem;
}

.form-submit button {
    border: 0;

    cursor: pointer;
}

.form-submit p {
    max-width: 280px;

    color: #77726c;

    font-size: 0.7rem;

    line-height: 1.5;
}


/* =========================
   MAP
========================= */

.contact-map {
    padding: 10rem 0;

    background: var(--color-background);
}

.contact-map-placeholder {
    min-height: 500px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 1rem;

    background: var(--color-surface);

    border: 1px solid var(--color-border);

    text-align: center;
}

.contact-map-placeholder>span {
    color: var(--color-primary);

    font-family: var(--font-heading);

    font-size: 4rem;
}

.contact-map-placeholder p {
    max-width: 400px;

    color: var(--color-text-muted);
}

.hidden-field {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    white-space: nowrap;
}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you {
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: 12rem 0 8rem;

    background: var(--color-background);
}

.thank-you-content {
    max-width: 950px;
}


/* TITLE */

.thank-you h1 {
    max-width: 950px;

    font-family: var(--font-heading);

    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -0.05em;
}

.thank-you h1 span {
    display: block;

    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}


/* DESCRIPTION */

.thank-you-description {
    max-width: 580px;

    margin-top: 2.5rem;

    color: var(--color-text-muted);

    font-size: 1rem;

    line-height: 1.8;
}


/* NOTICE */

.thank-you-notice {
    max-width: 650px;

    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 1.5rem;

    margin-top: 3rem;
    padding-top: 1.5rem;

    border-top: 1px solid var(--color-border);
}

.thank-you-notice+.thank-you-notice {
    margin-top: 0;
}

.thank-you-notice-number {
    color: var(--color-primary);

    font-size: 0.7rem;

    letter-spacing: 0.1em;
}

.thank-you-notice strong {
    display: block;

    margin-bottom: 0.4rem;

    font-size: 0.9rem;
    font-weight: 600;
}

.thank-you-notice p {
    max-width: 500px;

    color: var(--color-text-muted);

    font-size: 0.85rem;

    line-height: 1.7;
}


/* ACTIONS */

.thank-you-actions {
    display: flex;

    gap: 1rem;

    margin-top: 3rem;
}

.menu-empty,
.menu-error {
    padding: 2rem 0;

    color: var(--color-text-muted);

    font-size: 0.9rem;
}

.menu-error {
    color: var(--color-primary);
}

/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
    padding: 12rem 0 6rem;

    background: var(--color-background);

    border-bottom: 1px solid var(--color-border);
}

.legal-hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 500;

    line-height: 0.73;

    letter-spacing: -0.055em;
}

.legal-hero h1 span {
    color: var(--color-primary);

    font-style: italic;
    font-weight: 400;
}

.legal-intro {
    max-width: 560px;

    margin-top: 3rem;

    color: var(--color-text-muted);

    line-height: 1.8;
}


/* CONTENT */

.legal-content {
    padding: 8rem 0 10rem;

    background: var(--color-background);
}

.legal-grid {
    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: clamp(4rem, 8vw, 8rem);

    align-items: start;
}


/* SIDEBAR */

.legal-sidebar {
    position: sticky;

    top: 120px;

    display: flex;
    flex-direction: column;

    gap: 0.6rem;
}

.legal-sidebar>span {
    color: var(--color-text-muted);

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.15em;
}

.legal-sidebar strong {
    font-family: var(--font-heading);

    font-size: 1.7rem;
    font-weight: 600;
}

.legal-sidebar p {
    max-width: 260px;

    margin-top: 1rem;

    color: var(--color-text-muted);

    font-size: 0.75rem;

    line-height: 1.7;
}


/* ARTICLE */

.legal-article {
    max-width: 800px;
}

.legal-section {
    padding: 0 0 4rem;
}

.legal-section+.legal-section {
    padding-top: 4rem;

    border-top: 1px solid var(--color-border);
}

.legal-number {
    display: block;

    margin-bottom: 1.2rem;

    color: var(--color-primary);

    font-size: 0.65rem;

    letter-spacing: 0.15em;
}

.legal-section h2 {
    margin-bottom: 1.8rem;

    font-family: var(--font-heading);

    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.03em;
}

.legal-section p {
    margin-bottom: 1.2rem;

    color: var(--color-text-muted);

    line-height: 1.9;
}

.legal-section ul {
    margin: 1.5rem 0 1.8rem 1.4rem;

    color: var(--color-text-muted);
}

.legal-section li {
    margin-bottom: 0.8rem;

    line-height: 1.7;
}


/* DATA BOX */

.legal-data-box {
    margin-top: 2rem;

    padding: 2rem;

    background: var(--color-surface);

    border: 1px solid var(--color-border);
}

.legal-data-box p {
    margin: 0;
}


/* NOTE */

.legal-note {
    margin-top: 2rem;

    padding: 2rem;

    border-left: 3px solid var(--color-primary);

    background: var(--color-surface);
}

.legal-note strong {
    display: block;

    margin-bottom: 0.8rem;

    font-family: var(--font-heading);

    font-size: 1.5rem;
}

.legal-note p {
    margin: 0;

    color: var(--color-text-muted);

    font-size: 0.85rem;

    line-height: 1.8;
}

/* =========================================
   ACCESSIBILITY — CONTRAST FIX
========================================= */

.visit .section-eyebrow {
    color: #7a1f1f;
}

.visit .visit-number {
    color: #66615b;
}

.footer .footer-title {
    color: #d8d2c9;
}

.footer p {
    color: #d8d2c9;
}

.footer a {
    color: #f2eee8;
}

.footer a:hover {
    color: #ffffff;
}

/* =========================================
   LIGHTHOUSE ACCESSIBILITY - CONTRAST
========================================= */

/* VISIT - eyebrow */
#visit .section-eyebrow {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* VISIT - numeri sulle card scure */
#visit .visit-card:not(.visit-card-accent) .visit-number {
    color: #d6d2ce !important;
    opacity: 1 !important;
}

/* VISIT - card rossa */
#visit .visit-card-accent,
#visit .visit-card-accent .visit-number,
#visit .visit-card-accent span,
#visit .visit-card-accent p,
#visit .visit-card-accent h2,
#visit .visit-card-accent h3 {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* FOOTER */
.footer,
.footer p,
.footer span,
.footer a,
.footer .footer-title {
    color: #ffffff !important;
    opacity: 1 !important;
}