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

:root {
    --terracotta: #C06C4B;
    --terracotta-light: #D4916F;
    --terracotta-dark: #A05435;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF9F5;
    --cream-dark: #F0E6DA;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #7A6B60;
    --warm-gray-light: #A89888;
    --sage: #A8B5A0;
    --sage-light: #C5CEBF;
    --blush: #E8C4B8;
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.12);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--charcoal);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
}

.nav-logo span:last-child {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal-light);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--charcoal);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem !important;
    transition: var(--transition) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--terracotta) !important;
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: linear-gradient(160deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand-dark) 100%);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-bg-shape--top {
    width: 600px;
    height: 600px;
    background: var(--blush);
    top: -200px;
    right: -100px;
}

.hero-bg-shape--bottom {
    width: 400px;
    height: 400px;
    background: var(--sage-light);
    bottom: -100px;
    left: -100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 108, 75, 0.1);
    border: 1px solid rgba(192, 108, 75, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--terracotta);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    box-shadow: 0 4px 16px rgba(192, 108, 75, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 108, 75, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--sand-dark);
}

.btn-ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
}

.btn-outline:hover {
    background: var(--terracotta);
    color: white;
}

.btn-outline-sm {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-outline-sm:hover {
    background: var(--terracotta);
    color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--warm-gray-light);
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-float {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.hero-float-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream);
    color: var(--charcoal);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.hero-img-accent {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 42%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: rotate(3deg);
}

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

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gray-light);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--warm-gray-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTION COMMON ─── */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.section-label-line {
    width: 32px;
    height: 1.5px;
    background: var(--terracotta);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 560px;
}

/* ─── MENU SECTION ─── */
.menu-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.menu-card {
    background: var(--sand-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    height: 220px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: var(--space-md);
}

.menu-card-meta {
    display: flex;
    gap: 0.4rem;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.menu-card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    background: rgba(192, 108, 75, 0.1);
    color: var(--terracotta);
}

.menu-card-tag--veg {
    background: rgba(168, 181, 160, 0.2);
    color: #6B7F62;
}

.menu-card-tag--new {
    background: rgba(232, 196, 184, 0.3);
    color: var(--terracotta-dark);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.menu-card-desc {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.menu-footer {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--sand-dark);
}

.menu-footer p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* ─── STORY SECTION ─── */
.story-section {
    padding: var(--space-3xl) 0;
    background: var(--sand-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.story-visual {
    position: relative;
    height: 650px;
}

.story-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.story-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand-light);
}

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

.story-content {
    padding: var(--space-lg) 0;
}

.story-body {
    margin-bottom: var(--space-xl);
}

.story-body p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.story-body p:last-child {
    margin-bottom: 0;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.story-value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.story-value-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.story-value strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
}

.story-value span {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ─── FRESH SECTION ─── */
.fresh-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.fresh-bg-accent {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--sage-light);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: -150px;
    right: -150px;
}

.fresh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.fresh-content {
    padding: var(--space-lg) 0;
}

.fresh-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.fresh-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.fresh-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.fresh-list-check {
    width: 24px;
    height: 24px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.fresh-visual {
    position: relative;
    height: 550px;
}

.fresh-img-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
}

.fresh-img-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.fresh-img-item--offset {
    margin-top: var(--space-xl);
}

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

/* ─── VISIT SECTION ─── */
.visit-section {
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
    color: white;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.visit-section .section-label {
    color: var(--sand-dark);
}

.visit-section .section-label-line {
    background: var(--sand-dark);
}

.visit-section .section-title {
    color: white;
}

.visit-section .section-title em {
    color: var(--terracotta-light);
}

.visit-details {
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-light);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sand-dark);
    margin-bottom: 0.2rem;
}

.visit-detail span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.visit-cta {
    margin-top: var(--space-lg);
}

.visit-map {
    height: 100%;
    min-height: 450px;
}

.visit-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.visit-map-content {
    text-align: center;
    padding: var(--space-xl);
}

.visit-map-content svg {
    color: var(--terracotta-light);
    margin-bottom: var(--space-md);
}

.visit-map-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* ─── FOOTER ─── */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--charcoal);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
}

.footer-logo span:last-child {
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.6;
    margin-left: 3.35rem;
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--terracotta-light);
}

.footer-contact {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: var(--space-lg);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 249, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--terracotta);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-visual {
        height: 450px;
        order: -1;
    }
    
    .hero-img-main {
        width: 60%;
        height: 70%;
    }
    
    .hero-img-float {
        width: 50%;
    }
    
    .hero-img-accent {
        width: 38%;
    }
    
    .story-grid,
    .fresh-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .story-visual {
        height: 450px;
    }
    
    .fresh-visual {
        height: 400px;
    }
    
    .visit-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: var(--space-2xl) 0 var(--space-xl);
        min-height: auto;
    }
    
    .hero-grid {
        gap: var(--space-lg);
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-img-main {
        width: 65%;
        height: 75%;
    }
    
    .hero-img-float {
        width: 55%;
        bottom: 5%;
    }
    
    .hero-img-accent {
        width: 40%;
        top: 2%;
        right: 0;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .story-visual {
        height: 350px;
    }
    
    .fresh-visual {
        height: 320px;
    }
    
    .fresh-img-item--offset {
        margin-top: 0;
    }
    
    .visit-grid {
        gap: var(--space-lg);
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-tagline {
        margin-left: 0;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 280px;
    }
    
    .hero-img-main {
        width: 70%;
        height: 80%;
    }
    
    .hero-img-float {
        width: 55%;
    }
    
    .hero-img-accent {
        display: none;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}
