/* ============================================
   EMBER COFFEE — Design System
   Warm, dark, premium artisan aesthetic
   ============================================ */

:root {
    /* Warm palette */
    --bg-dark: #0c0a09;
    --bg-rich: #1c1917;
    --bg-warm: #292524;
    --bg-card: rgba(28, 25, 23, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.03);

    --text-cream: #fef3c7;
    --text-light: #f5f5f4;
    --text-mid: #a8a29e;
    --text-dim: #78716c;
    --text-dark: #57534e;

    --amber: #d97706;
    --amber-light: #f59e0b;
    --amber-glow: rgba(217, 119, 6, 0.15);
    --amber-deep: #92400e;

    --border: rgba(255, 255, 255, 0.06);
    --border-warm: rgba(217, 119, 6, 0.2);

    /* Type */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Layout */
    --max-width: 1200px;
    --gutter: 24px;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

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

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================================
   FILM GRAIN TEXTURE
   ============================================ */

.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    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;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.5s var(--ease-smooth);
}

.nav.scrolled {
    padding: 14px 0;
    background: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-cream);
    transition: opacity 0.3s;
}

.brand-name:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.4s var(--ease);
}

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

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

.nav-link-cta {
    color: var(--bg-dark);
    background: var(--amber);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
}

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

.nav-link-cta:hover {
    background: var(--amber-light);
    color: var(--bg-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--amber-glow);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 101;
}

.burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-cream);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.burger.active span:first-child {
    transform: rotate(45deg) translate(3px, 5px);
}

.burger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(12, 10, 9, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-smooth);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: all 0.3s var(--ease-smooth);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav-link:hover {
    color: var(--text-cream);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.05;
    transition: scale 0.8s var(--ease);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(12, 10, 9, 0.92) 0%,
        rgba(12, 10, 9, 0.7) 40%,
        rgba(12, 10, 9, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--amber);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--amber);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-cream);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--amber);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    letter-spacing: 0.02em;
}

.btn-warm {
    background: var(--amber);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--amber-glow);
}

.btn-warm:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(217, 119, 6, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
    color: var(--text-cream);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

/* Scroll indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
}

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

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }
.reveal[data-delay="4"] { transition-delay: 0.6s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-rich);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--amber) !important;
    font-size: 0.5rem !important;
    display: flex;
    align-items: center;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */

section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--amber);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-cream);
    margin-bottom: 20px;
}

.section-heading em {
    font-style: italic;
    color: var(--amber);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label::before { display: none; }

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.story {
    background: var(--bg-dark);
}

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

.story-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-cream);
    line-height: 1;
}

.stat-pct {
    font-size: 1.5rem;
    color: var(--amber);
}

.stat-desc {
    font-size: 0.8125rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* Story image */
.story-visual {
    display: flex;
    justify-content: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: scale 0.8s var(--ease);
}

.story-image-wrapper:hover .story-image {
    scale: 1.03;
}

.story-image-accent {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    pointer-events: none;
}

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

.menu {
    background: var(--bg-rich);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.menu-card:hover {
    border-color: var(--border-warm);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px var(--amber-glow);
}

.menu-card-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: -8px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.5s var(--ease);
}

.menu-card:hover .menu-card-number {
    color: rgba(217, 119, 6, 0.06);
}

.menu-card-icon {
    color: var(--amber);
    margin-bottom: 20px;
    transition: transform 0.5s var(--ease);
}

.menu-card:hover .menu-card-icon {
    transform: scale(1.1);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-cream);
    margin-bottom: 12px;
}

.menu-card-desc {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.menu-card-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.menu-origin {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.menu-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--amber);
}

/* Menu showcase */
.menu-showcase {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    max-height: 400px;
}

.menu-showcase-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: scale 0.8s var(--ease);
}

.menu-showcase:hover .menu-showcase-img {
    scale: 1.03;
}

.menu-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 9, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.menu-showcase-overlay span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-cream);
}

/* Full Menu Board */
.full-menu {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 48px;
    margin-bottom: 48px;
}

.full-menu-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.full-menu-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-cream);
}

.full-menu-note {
    font-size: 0.8125rem;
    color: var(--text-dim);
    font-style: italic;
}

.full-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.menu-col-title {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s var(--ease-smooth);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-dark);
    min-width: 20px;
    margin-bottom: 4px;
}

.item-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--amber);
    white-space: nowrap;
}

.menu-item-extra .item-name {
    color: var(--text-dim);
    font-style: italic;
}

.menu-item-extra .item-price {
    color: var(--text-mid);
}

@media (max-width: 768px) {
    .full-menu {
        padding: 32px 24px;
    }

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

    .full-menu-header {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   THE SPACE
   ============================================ */

.space {
    background: var(--bg-dark);
}

.space-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    margin-bottom: 64px;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.gallery-main {
    border-radius: var(--r-lg);
    overflow: hidden;
}

.gallery-main .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: scale 0.8s var(--ease);
}

.gallery-main:hover .gallery-img {
    scale: 1.03;
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-card {
    flex: 1;
    border-radius: var(--r-lg);
    overflow: hidden;
}

.gallery-card .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.8s var(--ease);
}

.gallery-card:hover .gallery-img {
    scale: 1.05;
}

/* Features */
.space-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease);
}

.feature:hover {
    background: var(--bg-glass);
    border-color: var(--border);
}

.feature-icon {
    color: var(--amber);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-cream);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.8125rem;
    color: var(--text-dim);
    line-height: 1.6;
}

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

.visit {
    background: var(--bg-rich);
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.visit-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0 40px;
}

.visit-block-title {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 8px;
}

.visit-block p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* Map placeholder */
.visit-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-warm);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.map-pin {
    color: var(--amber);
    animation: mapPinBounce 2s ease-in-out infinite;
    z-index: 2;
}

.map-pin::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: mapPinShadow 2s ease-in-out infinite;
}

@keyframes mapPinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes mapPinShadow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(0.7); opacity: 0.15; }
}

.map-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
}

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

.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-dim);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--text-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-dark);
}

.footer-credit {
    color: var(--text-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-visual { order: -1; }

    .story-image { height: 360px; }

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

    .visit-card {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }

    .nav-links { display: none; }
    .burger { display: flex; }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

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

    .space-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main .gallery-img {
        min-height: 280px;
    }

    .story-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

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

    .visit-content {
        padding: 36px 24px;
    }

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

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

@media (max-width: 480px) {
    .space-features {
        grid-template-columns: 1fr;
    }

    .story-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-desc {
        font-size: 1rem;
    }
}
