/* ========================================
   Rosenberg's Market — Stylesheet
   ======================================== */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --accent-yellow: #fbbf24;
    --accent-coral: #fb923c;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background-color: var(--slate-50);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Geometric Background Shapes --- */
.geo-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--teal-500);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--accent-coral);
    bottom: 10%;
    left: -100px;
}

.geo-square {
    position: absolute;
    opacity: 0.05;
    background: var(--teal-600);
    transform: rotate(45deg);
}

.geo-square--1 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
}

.geo-triangle {
    position: absolute;
    opacity: 0.04;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 140px 80px;
    border-color: transparent transparent var(--accent-yellow) transparent;
    top: 60%;
    left: 8%;
    transform: rotate(-15deg);
}

.geo-triangle--1 {
    /* set via inline styles in HTML */
}

.geo-dots {
    position: absolute;
    opacity: 0.08;
    background-image: radial-gradient(var(--teal-500) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

.geo-dots--1 {
    width: 120px;
    height: 120px;
    top: 25%;
    left: 3%;
}

/* --- Typography --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--teal-500);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45);
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 100%);
}

.btn--outline {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn--outline:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--slate-900);
    transition: var(--transition-fast);
}

.logo:hover {
    color: var(--teal-700);
}

.logo__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    font-family: var(--font-display);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav__link {
    display: block;
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav__link--cta {
    background: var(--teal-600);
    color: white !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--teal-700);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    color: var(--teal-700);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* Hero Image */
.hero__image-wrap {
    position: relative;
}

.hero__image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.hero__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
}

.hero__image-float {
    position: absolute;
    bottom: 40px;
    left: -40px;
    z-index: 2;
}

.float-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.float-card__emoji {
    font-size: 2rem;
    line-height: 1;
}

.float-card__title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--slate-900);
}

.float-card__subtitle {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

/* Hero geometric decorations */
.hero__geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-geo-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--teal-200);
    opacity: 0.4;
    top: -80px;
    right: -80px;
}

.hero-geo-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent-yellow);
    opacity: 0.2;
    bottom: 15%;
    left: -40px;
    transform: rotate(30deg);
    border-radius: var(--radius-sm);
}

.hero-geo-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--teal-400) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    top: 20%;
    right: 10%;
}

/* --- About --- */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-stack {
    position: relative;
    height: 600px;
}

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

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

.about__image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--slate-50);
}

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

.about__image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
    opacity: 0.12;
    border-radius: 50%;
    top: 20%;
    right: -40px;
}

.about__content {
    max-width: 520px;
}

.about__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* --- Menu --- */
.menu {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, white 50%, var(--slate-50) 100%);
}

.menu__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.menu__description {
    font-size: 1.0625rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu__tab {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 10px 24px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-xl);
    background: transparent;
    color: var(--slate-500);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu__tab:hover {
    border-color: var(--teal-300);
    color: var(--teal-700);
}

.menu__tab.active {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: white;
}

.menu__panel {
    display: none;
}

.menu__panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
}

.menu-item:hover {
    border-color: var(--teal-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.menu-item__info {
    flex: 1;
}

.menu-item__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.menu-item__desc {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.6;
}

/* --- Gallery --- */
.gallery {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.gallery__header {
    text-align: center;
    margin-bottom: 56px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 7;
}

/* --- Visit --- */
.visit {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--slate-900);
    color: white;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit__info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.visit__info .section-label {
    color: var(--teal-400);
}

.visit__info .section-label::before {
    background: var(--teal-400);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit__detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
}

.visit__detail-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    margin-bottom: 6px;
}

.visit__detail-text {
    font-size: 1rem;
    color: var(--slate-200);
    line-height: 1.7;
}

.visit__detail-text a {
    color: var(--teal-400);
    transition: color var(--transition-fast);
}

.visit__detail-text a:hover {
    color: var(--teal-300);
}

.visit__map {
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* --- Contact --- */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-500);
    margin-top: 16px;
}

.contact__form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input:focus {
    border-color: var(--teal-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form__input::placeholder {
    color: var(--slate-400);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    animation: fadeIn 0.4s ease;
}

.form__success-icon {
    color: var(--teal-600);
    flex-shrink: 0;
}

.form__success-text {
    font-size: 0.9375rem;
    color: var(--teal-800);
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 280px;
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-300);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--teal-400);
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9375rem;
}

.footer__day {
    color: var(--slate-400);
}

.footer__hours li span:last-child {
    color: var(--slate-300);
    font-weight: 500;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.875rem;
    color: var(--slate-600);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__image img {
        height: 580px;
    }

    .about__grid {
        gap: 48px;
    }

    .about__image-stack {
        height: 480px;
    }

    .menu__grid {
        gap: 12px;
    }

    .gallery__grid {
        grid-template-rows: repeat(2, 220px);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 1000;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 12px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__image img {
        height: 420px;
    }

    .hero__image-float {
        left: 16px;
        bottom: 20px;
    }

    .hero__stats {
        gap: 20px;
    }

    /* About mobile */
    .about {
        padding: 80px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-stack {
        height: 380px;
        max-width: 400px;
    }

    .about__content {
        max-width: 100%;
    }

    /* Menu mobile */
    .menu {
        padding: 80px 0;
    }

    .menu__tabs {
        gap: 8px;
    }

    .menu__tab {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

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

    /* Gallery mobile */
    .gallery {
        padding: 80px 0;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    /* Visit mobile */
    .visit {
        padding: 80px 0;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit__map {
        min-height: 300px;
    }

    /* Contact mobile */
    .contact {
        padding: 80px 0;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    /* Footer mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item img {
        height: 220px;
    }
}

/* --- Scroll 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; }
