/* ============================================
   SNO BIZ — Mountain Home
   Charcoal + Coral | Confident Corporate
   ============================================ */

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

:root {
    --charcoal-900: #0f0f0f;
    --charcoal-800: #1a1a1a;
    --charcoal-700: #2a2a2a;
    --charcoal-600: #3a3a3a;
    --charcoal-500: #555555;
    --charcoal-400: #888888;
    --charcoal-300: #aaaaaa;
    --coral-500: #ff6b57;
    --coral-400: #ff8575;
    --coral-300: #ffa597;
    --coral-100: #ffd4ce;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #eaeaea;
    --neutral-800: #1f1f1f;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

/* --- SECTION LABEL --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--coral-500);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal-900);
    margin-bottom: 24px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--coral-400);
    border-color: var(--coral-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 87, 0.35);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.nav-logo-mark {
    width: 10px;
    height: 10px;
    background: var(--coral-500);
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-300);
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    background: var(--coral-500) !important;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--coral-400) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal-900);
    z-index: 999;
    flex-direction: column;
    padding: 40px 24px;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal-300);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: #ffffff;
}

.mobile-menu-cta {
    margin-top: 24px;
    color: var(--coral-500) !important;
    font-family: var(--font-body);
    font-size: 1rem;
    border-bottom: none !important;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    background: var(--charcoal-900);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 107, 87, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255, 107, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-400);
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--coral-500);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal-400);
    max-width: 480px;
    margin-bottom: 36px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--charcoal-500);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-img-stack {
    position: relative;
    height: 100%;
}

.hero-img {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

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

.hero-img-main {
    height: 520px;
    width: 100%;
}

.hero-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    height: 320px;
    border: 4px solid var(--charcoal-900);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--coral-500);
    padding: 16px 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
}

.hero-accent-box-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-accent-box-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-500);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- ABOUT --- */
.about {
    padding: 120px 0;
    background: var(--neutral-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    margin-bottom: 80px;
    align-items: start;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-500);
}

.about-label-line {
    width: 32px;
    height: 2px;
    background: var(--coral-500);
    flex-shrink: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text .section-heading {
    margin-bottom: 8px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal-600);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-feature {
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s var(--ease-out);
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal-900);
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--coral-400);
}

.about-feature h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--charcoal-500);
}

/* --- MENU --- */
.menu {
    padding: 120px 0;
    background: var(--charcoal-900);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 107, 87, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.menu-header .section-label {
    justify-content: center;
}

.menu-header .section-heading {
    color: #ffffff;
}

.menu-header .menu-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal-400);
}

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

.menu-tab {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: transparent;
    color: var(--charcoal-400);
    border: 1px solid var(--charcoal-600);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.menu-tab:hover {
    color: #ffffff;
    border-color: var(--charcoal-400);
}

.menu-tab.active {
    background: var(--coral-500);
    color: #ffffff;
    border-color: var(--coral-500);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-out);
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.menu-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 32px 28px;
    transition: all 0.3s var(--ease-out);
}

.menu-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 87, 0.3);
    transform: translateY(-2px);
}

.menu-category h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral-400);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu-item-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #ffffff;
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--charcoal-500);
    text-align: right;
    line-height: 1.4;
    flex-shrink: 0;
}

/* --- EXPERIENCE --- */
.experience {
    padding: 120px 0;
    background: var(--neutral-100);
}

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

.exp-image {
    border-radius: 6px;
    overflow: hidden;
    height: 600px;
}

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

.exp-content .section-label {
    margin-bottom: 20px;
}

.exp-content .section-heading {
    margin-bottom: 20px;
}

.exp-content > p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal-600);
    margin-bottom: 40px;
}

.exp-highlights {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.exp-highlight {
    display: flex;
    gap: 20px;
    align-items: start;
}

.exp-highlight-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-500);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.7;
}

.exp-highlight h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 4px;
}

.exp-highlight p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--charcoal-500);
}

/* --- VISIT --- */
.visit {
    padding: 120px 0;
    background: var(--charcoal-900);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255, 107, 87, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.visit .container {
    position: relative;
    z-index: 1;
}

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

.visit-info .section-label {
    margin-bottom: 20px;
}

.visit-info .section-heading {
    color: #ffffff;
    margin-bottom: 40px;
}

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

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: start;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 87, 0.12);
    border-radius: 8px;
    color: var(--coral-400);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral-400);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--charcoal-300);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--charcoal-300);
    transition: color 0.2s ease;
}

.visit-detail a:hover {
    color: var(--coral-400);
}

/* Contact form */
.visit-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
}

.visit-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-400);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--charcoal-600);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--charcoal-500);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral-500);
    background: rgba(255, 107, 87, 0.06);
}

.form-group textarea {
    min-height: 120px;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(255, 107, 87, 0.12);
    border: 1px solid rgba(255, 107, 87, 0.3);
    border-radius: 4px;
    color: var(--coral-300);
    font-size: 0.875rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s var(--ease-out);
}

/* --- FOOTER --- */
.footer {
    background: var(--charcoal-800);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 10px;
    height: 10px;
    background: var(--coral-500);
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--charcoal-400);
    line-height: 1.6;
    max-width: 280px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav strong,
.footer-contact strong {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-400);
    margin-bottom: 4px;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--charcoal-400);
    transition: color 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.875rem;
    color: var(--charcoal-500);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--charcoal-500);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--charcoal-600);
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-img-main {
        height: 440px;
    }

    .hero-img-accent {
        width: 55%;
        height: 260px;
        bottom: -24px;
        right: -24px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid .menu-category:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        min-height: 360px;
    }

    .hero-img-main {
        height: 340px;
    }

    .hero-img-accent {
        width: 55%;
        height: 200px;
        bottom: -16px;
        right: -16px;
    }

    .hero-accent-box {
        top: -12px;
        left: -12px;
        padding: 12px 16px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-scroll {
        display: none;
    }

    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 56px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .menu-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-grid .menu-category:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .experience {
        padding: 80px 0;
    }

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

    .exp-image {
        height: 400px;
    }

    .visit {
        padding: 80px 0;
    }

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

    .visit-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.125rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat-divider {
        display: none;
    }

    .menu-header .section-heading {
        font-size: 1.5rem;
    }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-scroll-line {
        animation: none;
        opacity: 0.5;
    }
}
