/* ============================================
   AMARONE BY VINALIUM — DEMO WEBSITE
   Modern, clean, trust-oriented design
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Color Palette — Deep wine & warm gold */
    --color-bg: #0c0a09;
    --color-bg-alt: #1a1614;
    --color-bg-card: #231f1c;
    --color-surface: #2c2624;
    --color-border: rgba(255, 255, 255, 0.06);

    --color-gold: #c9a96e;
    --color-gold-light: #dfc690;
    --color-gold-dark: #a8863f;

    --color-wine: #722f37;
    --color-wine-deep: #4a1a20;
    --color-wine-light: #8c3a44;

    --color-text: #f5f0eb;
    --color-text-muted: #a09890;
    --color-text-soft: #c8c0b8;

    --color-white: #ffffff;
    --color-black: #000000;
    --color-success: #5a9e6f;
    --color-overlay: rgba(12, 10, 9, 0.7);

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing scale (8-point grid) */
    --space-1: 0.25rem;
    /*  4px */
    --space-2: 0.5rem;
    /*  8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.5rem;
    /* 24px */
    --space-6: 2rem;
    /* 32px */
    --space-7: 3rem;
    /* 48px */
    --space-8: 4rem;
    /* 64px */
    --space-9: 6rem;
    /* 96px */
    --space-10: 8rem;
    /* 128px */

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 0 20px rgba(201, 169, 110, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --duration: 0.4s;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;
}


/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

a:hover {
    color: var(--color-gold-light);
}

ul,
ol {
    list-style: none;
}

::selection {
    background: var(--color-wine);
    color: var(--color-white);
}


/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Reveal-on-scroll animation base */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold), 0 6px 24px rgba(201, 169, 110, 0.2);
    color: var(--color-bg);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.6rem 1.4rem;
}

.btn-icon {
    font-size: 1rem;
}


/* ==========================================
   HEADER / NAVIGATION — Liquid Glass
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) var(--space-4);
    transition: padding 0.5s var(--ease-out);
}

/* Glass container — pill shape from first render */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) var(--space-5);
    border-radius: 9999px;

    /* Liquid-glass surface */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);

    /* Subtle edge highlight */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    /* Smooth transitions for scroll state */
    transition:
        background 0.5s var(--ease-out),
        border-color 0.5s var(--ease-out),
        box-shadow 0.5s var(--ease-out),
        padding 0.5s var(--ease-out);
}

/* Scrolled state — slightly more opaque, tighter */
.site-header.scrolled {
    padding: var(--space-2) var(--space-4);
}

.site-header.scrolled .header-inner {
    background: rgba(18, 14, 12, 0.65);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-color: rgba(201, 169, 110, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: var(--space-2) var(--space-5);
}

/* ---- Logo ---- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo img {
    height: 36px;
    width: auto;
    transition: height 0.4s var(--ease-out);
}

.site-header.scrolled .logo img {
    height: 32px;
}

.logo-text {
    display: none;
}

/* ---- Desktop Navigation ---- */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-list a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.03em;
    position: relative;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition:
        color 0.3s var(--ease-out),
        background 0.3s var(--ease-out);
}

.nav-list a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-list a.active {
    color: var(--color-gold);
}

/* Underline indicator */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transform: translateX(-50%);
    transition: width var(--duration) var(--ease-out);
    border-radius: 1px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 60%;
}

/* ---- CTA in nav ---- */
.nav-cta .btn-primary {
    box-shadow: 0 2px 12px rgba(201, 169, 110, 0.25);
}

/* ---- Mobile Menu Toggle ---- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
    .header-inner {
        background: rgba(12, 10, 9, 0.88);
    }

    .site-header.scrolled .header-inner {
        background: rgba(12, 10, 9, 0.95);
    }
}


/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(12, 10, 9, 0.5) 0%,
            rgba(12, 10, 9, 0.3) 40%,
            rgba(12, 10, 9, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-10) var(--space-5);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(8px);
    background: rgba(201, 169, 110, 0.05);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: var(--space-5);
}

.hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-soft);
    max-width: 560px;
    margin: 0 auto var(--space-7);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: var(--space-7);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--duration);
}

.scroll-down:hover {
    color: var(--color-gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 40px;
    }

    50% {
        opacity: 1;
        height: 50px;
    }
}


/* ==========================================
   ABOUT / TRUST SECTION
   ========================================== */
.about {
    padding: var(--space-10) 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease-out);
}

.about-image-wrap:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}

.about-text {
    padding: var(--space-4) 0;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-7);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ==========================================
   ESSENCE / PILLARS
   ========================================== */
.essence {
    padding: var(--space-10) 0;
    background: var(--color-bg-alt);
}

.essence-header {
    text-align: center;
    margin-bottom: var(--space-9);
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.essence-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-7) var(--space-5);
    text-align: center;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.essence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--duration);
}

.essence-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow-lg);
}

.essence-card:hover::before {
    opacity: 1;
}

.essence-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(201, 169, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: background var(--duration);
}

.essence-card:hover .essence-icon {
    background: rgba(201, 169, 110, 0.15);
}

.essence-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
}

.essence-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.essence-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.essence-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    margin-top: var(--space-4);
}

.essence-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}


/* ==========================================
   MENU / CARTAS SECTION
   ========================================== */
.menu {
    padding: var(--space-10) 0;
    background: var(--color-bg);
}

.menu-header {
    text-align: center;
    margin-bottom: var(--space-9);
}

.menu-header .section-subtitle {
    margin: 0 auto;
}

.menu-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-text-soft);
    margin-bottom: var(--space-3);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.menu-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.1);
}

.menu-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.menu-card-img-wrap {
    overflow: hidden;
}

.menu-card-body {
    padding: var(--space-5);
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.menu-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
}

.menu-card-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.menu-card-link:hover svg {
    transform: translateX(4px);
}


/* ==========================================
   EVENTS & CULTURE SECTION
   ========================================== */
.events {
    padding: var(--space-10) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.events-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.events-text .section-subtitle {
    margin-bottom: var(--space-6);
}

.event-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.event-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.event-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(201, 169, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
}

.event-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.event-feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Workshop highlight card */
.workshop-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    position: relative;
    overflow: hidden;
}

.workshop-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-wine));
}

.workshop-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.workshop-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.workshop-card>p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.workshop-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.workshop-detail {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.workshop-detail svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}


/* ==========================================
   ORDER / PICKUP SECTION
   ========================================== */
.order {
    padding: var(--space-10) 0;
    background: var(--color-bg);
}

.order-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.order-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-7);
    margin-top: var(--space-7);
}

.order-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.order-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
}

.order-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--space-3);
}

.order-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    padding: var(--space-10) 0;
    background: var(--color-bg-alt);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 60%, rgba(114, 47, 55, 0.08) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta .section-title {
    margin-bottom: var(--space-4);
}

.cta .section-subtitle {
    margin: 0 auto var(--space-7);
}


/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    padding: var(--space-9) 0 var(--space-6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-7);
    margin-bottom: var(--space-8);
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease-out);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--color-text-muted);
    transition: fill var(--duration);
}

.footer-social a:hover svg {
    fill: var(--color-gold);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-hours dt {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-1);
}

.footer-hours dd {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
}

.footer-bottom {
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-5);
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-gold);
}


/* ==========================================
   FLOATING CTA (mobile)
   ========================================== */
.fab-reserve {
    position: fixed;
    bottom: var(--space-5);
    right: var(--space-5);
    z-index: 999;
    padding: 0.9rem 1.6rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    /* Hidden by default — JS controls visibility */
    display: none;
    align-items: center;
    gap: var(--space-2);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    text-decoration: none;
    /* Smooth fade for JS show/hide */
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.4s var(--ease-out),
        transform 0.4s var(--ease-out),
        box-shadow var(--duration);
}

.fab-reserve.visible {
    opacity: 1;
    transform: translateY(0);
}

.fab-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.4);
    color: var(--color-bg);
}

.fab-reserve svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet landscape (<=1024px) */
@media (max-width: 1024px) {
    .essence-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }

    .about-grid {
        gap: var(--space-6);
    }

    .events-inner {
        gap: var(--space-6);
    }
}

/* ------------------------------------------
   MOBILE (<=768px)
   Strict refinement: compact, elegant, readable
   ------------------------------------------ */
@media (max-width: 768px) {

    /* ---- BUTTONS — max 44px height, compact ---- */
    .btn {
        font-size: 0.8rem;
        padding: 10px 20px;
        max-height: 44px;
        gap: 6px;
    }

    .btn-sm {
        font-size: 0.75rem;
        padding: 8px 16px;
        max-height: 38px;
    }

    .btn .btn-icon,
    .btn svg.btn-icon {
        width: 14px;
        height: 14px;
    }


    /* ---- HEADER — pill shape, floating, comfortable height ---- */
    .site-header {
        padding: 10px 12px 0;
    }

    .site-header.scrolled {
        padding: 6px 10px 0;
    }

    .header-inner {
        padding: 8px 14px;
        min-height: 48px;
        border-radius: 9999px;
        /* Subtle glass */
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px) saturate(1.2);
        -webkit-backdrop-filter: blur(12px) saturate(1.2);
        border: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
    }

    .site-header.scrolled .header-inner {
        background: rgba(18, 14, 12, 0.55);
        backdrop-filter: blur(16px) saturate(1.4);
        -webkit-backdrop-filter: blur(16px) saturate(1.4);
        border-radius: 9999px;
        padding: 6px 12px;
        min-height: 44px;
    }

    /* Logo — larger, confident */
    .logo img {
        height: 34px;
    }

    .site-header.scrolled .logo img {
        height: 28px;
    }

    .logo-text {
        display: none;
    }

    /* Hamburger — minimum 44px tap target, no background */
    .menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
        gap: 4px;
        border-radius: 0;
        background: none;
        border: none;
    }

    .menu-toggle span {
        width: 18px;
        height: 1.5px;
    }


    /* ---- MOBILE NAV PANEL — opaque enough to read ---- */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 72%;
        max-width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 10, 9, 0.92);
        backdrop-filter: blur(20px) saturate(1.3);
        -webkit-backdrop-filter: blur(20px) saturate(1.3);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 48px 28px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -4px 0 28px rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        width: 100%;
    }

    .nav-list a {
        font-size: 0.88rem;
        padding: 10px 12px;
        width: 100%;
        border-radius: 6px;
        color: rgba(255, 255, 255, 0.75);
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 255, 255, 0.06);
        color: var(--color-gold);
    }

    .nav-list a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav-backdrop.show {
        display: block;
    }


    /* ---- HERO — controlled, not overwhelming ---- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 80px 16px 56px;
        max-width: 92vw;
        margin: 0 auto;
    }

    .hero-badge {
        font-size: 0.55rem;
        letter-spacing: 0.18em;
        padding: 5px 14px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 0.82rem;
        line-height: 1.65;
        margin-bottom: 24px;
        max-width: 90vw;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .scroll-down {
        bottom: 20px;
        font-size: 0.55rem;
    }

    .scroll-line {
        height: 24px;
    }


    /* ---- GLOBAL TYPOGRAPHY — tight hierarchy ---- */
    .section-label {
        font-size: 0.6rem;
        letter-spacing: 0.16em;
        margin-bottom: 6px;
    }

    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
        max-width: 92vw;
    }


    /* ---- SECTION SPACING — controlled ---- */
    .about,
    .essence,
    .menu,
    .events,
    .order,
    .cta {
        padding: 48px 0;
    }

    /* Constrain all section text blocks */
    .container {
        max-width: 92vw;
    }


    /* ---- ABOUT ---- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image-wrap img {
        height: 200px;
        border-radius: 10px;
    }

    .about-image-accent {
        display: none;
    }

    .about-text {
        padding: 0;
    }

    .about-text p {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }


    /* ---- ESSENCE / FOUR PILLARS — vertical stack, fully readable ---- */
    .essence-header {
        margin-bottom: 28px;
    }

    .essence-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Card: vertical column — icon hidden, title → text → tags */
    .essence-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px 20px;
        text-align: left;
    }

    /* Hide icon on mobile — title provides hierarchy */
    .essence-icon {
        display: none;
    }

    .essence-card h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.25;
        color: var(--color-text);
    }

    .essence-card p {
        font-size: 0.82rem;
        line-height: 1.6;
        color: var(--color-text-muted);
        margin-bottom: 10px;
    }

    .essence-tags {
        margin-top: 4px;
        justify-content: flex-start;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .essence-tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    /* Remove hover lift on mobile (touch) */
    .essence-card:hover {
        transform: none;
    }


    /* ---- MENU / CARTAS ---- */
    .menu-header {
        margin-bottom: 28px;
    }

    .menu-tagline {
        font-size: 0.88rem;
        margin-bottom: 6px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-card-img {
        height: 160px;
    }

    .menu-card-body {
        padding: 14px 16px;
    }

    .menu-card-body h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .menu-card-body p {
        font-size: 0.78rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .menu-card-link {
        font-size: 0.76rem;
    }

    /* Remove hover lift on mobile (touch) */
    .menu-card:hover {
        transform: none;
    }


    /* ---- EVENTS & WORKSHOP ---- */
    .events-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .events-text .section-subtitle {
        margin-bottom: 20px;
    }

    .event-features {
        gap: 10px;
        margin-bottom: 20px;
    }

    .event-feature {
        gap: 10px;
    }

    .event-feature-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .event-feature-icon svg {
        width: 14px;
        height: 14px;
    }

    .event-feature h4 {
        font-size: 0.82rem;
        margin-bottom: 2px;
    }

    .event-feature p {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .workshop-card {
        padding: 20px;
    }

    .workshop-badge {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .workshop-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .workshop-card>p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .workshop-details {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .workshop-detail {
        font-size: 0.72rem;
        gap: 4px;
    }

    .workshop-detail svg {
        width: 13px;
        height: 13px;
    }


    /* ---- ORDER / PICKUP ---- */
    .order-inner {
        text-align: center;
    }

    .order-card {
        padding: 20px;
    }

    .order-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .order-icon svg {
        width: 20px;
        height: 20px;
    }

    .order-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .order-card p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }


    /* ---- CTA ---- */
    .cta-content {
        text-align: center;
    }

    .cta-content .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        margin-top: 24px;
    }

    .cta-content .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }


    /* ---- FOOTER — compact ---- */
    .site-footer {
        padding: 36px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-about p {
        font-size: 0.78rem;
    }

    .footer-heading {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }

    .footer-links a,
    .footer-contact-item {
        font-size: 0.76rem;
    }

    .footer-hours dt {
        font-size: 0.68rem;
    }

    .footer-hours dd {
        font-size: 0.76rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 0.65rem;
    }


    /* ---- FAB — compact ---- */
    .fab-reserve {
        display: inline-flex;
        padding: 8px 14px;
        font-size: 0.72rem;
        max-height: 38px;
        bottom: 16px;
        right: 16px;
    }

    .fab-reserve svg {
        width: 14px;
        height: 14px;
    }
}


/* ------------------------------------------
   SMALL PHONES (<=390px)
   ------------------------------------------ */
@media (max-width: 390px) {

    /* Header — keep pill, slightly tighter */
    .header-inner {
        padding: 6px 12px;
        min-height: 42px;
    }

    .logo img {
        height: 28px;
    }

    .logo-text {
        font-size: 0.82rem;
    }

    .menu-toggle span {
        width: 16px;
    }

    /* Hero */
    .hero-content {
        padding: 72px 14px 48px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.5rem;
        padding: 4px 10px;
    }

    .hero-description {
        font-size: 0.78rem;
    }

    .hero-buttons {
        max-width: 220px;
    }

    /* Titles */
    .section-title {
        font-size: 1.2rem;
    }

    /* Essence — tighter padding */
    .essence-card {
        padding: 14px 16px;
    }

    .essence-card h3 {
        font-size: 0.88rem;
        margin-bottom: 6px;
    }

    .essence-card p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .essence-tag {
        font-size: 0.52rem;
    }

    /* Header — keep pill shape */
    .header-inner {
        padding: 4px 12px;
        min-height: 38px;
        max-height: 42px;
    }

    /* Workshop */
    .workshop-details {
        grid-template-columns: 1fr;
    }

    /* Order */
    .order-card {
        padding: 16px;
    }
}