/* ===================================
   RESET & BASE STYLES
   =================================== */

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

:root {
    /* Premium color palette */
    --warm-black: #1a1410;
    --deep-brown: #2a2018;
    --amber: #c8956c;
    --gold: #d4a574;
    --cream: #f5efe6;
    --warm-white: #faf7f2;
    --coral-accent: #d4705a;

    /* Warm ivory gradient system */
    --bg-cream: #FAF3EB;
    --bg-warm-ivory: #F5EDE3;
    --bg-parchment: #EDE0D0;
    --bg-linen: #E8D9C8;
    --deep-brown-bg: #1A0E08;
    --warm-gold: #C8956A;
    --text-body: #4A3828;
    --text-muted: #5C4A3A;
    --text-hint: #7A6A5A;
    --text-light-warm: #F5E6D3;
    --text-light-muted: #B8A08A;
    --border-warm: rgba(200, 149, 106, 0.2);
    --border-warm-md: rgba(200, 149, 106, 0.35);
    --section-divider: linear-gradient(to right, transparent, rgba(200, 149, 106, 0.35), transparent);

    /* Legacy colors for sections below hero */
    --primary-color: #E85D55;
    --primary-dark: #d34740;
    --accent-color: #FF8B85;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --background-light: #fefefe;
    --background-cream: #fffbf7;
    --white: #ffffff;
    --border-color: #f0f0f0;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-chinese: 'Noto Serif TC', serif;
    --font-body-new: 'Instrument Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition: all 0.3s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ===================================
   NAVIGATION — Premium Redesign
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(24px, 4vw, 64px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.navbar.scrolled {
    background: rgba(26, 20, 16, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom-color: rgba(200, 149, 108, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--cream);
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--coral-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-logo-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-body-new);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid rgba(212, 165, 116, 0.5);
    color: var(--gold);
    font-family: var(--font-body-new);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--warm-black);
    border-color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION — Premium Redesign
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    overflow: hidden;
    background: var(--warm-black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(26, 20, 16, 0.55) 0%,
            rgba(26, 20, 16, 0.30) 35%,
            rgba(26, 20, 16, 0.35) 65%,
            rgba(26, 20, 16, 0.85) 100%
        ),
        linear-gradient(90deg,
            rgba(26, 20, 16, 0.6) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.hero-light {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(200, 149, 108, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: lightPulse 8s ease-in-out infinite alternate;
}

@keyframes lightPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    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-size: 128px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(32px, 8vw, 140px);
    max-width: 800px;
    gap: 0;
}

.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-family: var(--font-body-new);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation-delay: 0.3s;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7.5vw, 96px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -1px;
    color: var(--warm-white);
    margin-bottom: 12px;
    animation-delay: 0.5s;
}

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

.hero-chinese {
    font-family: var(--font-chinese);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 300;
    color: rgba(212, 165, 116, 0.6);
    letter-spacing: 8px;
    margin-bottom: 32px;
    animation-delay: 0.65s;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 28px;
    animation-delay: 0.75s;
}

.hero .hero-description {
    font-family: var(--font-body-new);
    font-size: 16px;
    line-height: 1.75;
    color: rgba(245, 239, 230, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 400;
    animation-delay: 0.85s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    animation-delay: 1s;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--amber), var(--coral-accent));
    color: var(--warm-white);
    font-family: var(--font-body-new);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coral-accent), var(--amber));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 149, 108, 0.3);
}

.hero-btn-primary:hover::before { opacity: 1; }

.hero-btn-primary span { position: relative; z-index: 1; }

.hero-btn-primary svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg { transform: translateX(4px); }

.hero-btn-secondary {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-body-new);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.hero-btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--cream);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.hero-btn-secondary:hover { opacity: 1; }
.hero-btn-secondary:hover::after { opacity: 0.6; }

/* ─── RIGHT SIDE DETAILS ─── */
.hero-side {
    position: absolute;
    right: clamp(24px, 4vw, 64px);
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
    z-index: 10;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(26, 20, 16, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--cream);
}

.hero-badge-rating {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
}

.hero-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-badge-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-badge-label {
    font-family: var(--font-body-new);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    color: var(--cream);
}

.hero-hours {
    text-align: right;
    font-family: var(--font-body-new);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.5;
    line-height: 1.8;
    color: var(--cream);
}

/* ─── DECORATIVE VERTICAL TEXT ─── */
.hero-vertical {
    position: absolute;
    left: clamp(24px, 4vw, 64px);
    bottom: 100px;
    z-index: 10;
    writing-mode: vertical-rl;
    font-family: var(--font-chinese);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 8px;
    color: rgba(212, 165, 116, 0.15);
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
}

/* ─── SCROLL INDICATOR ─── */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}

.hero-scroll-text {
    font-family: var(--font-body-new);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    color: var(--cream);
}

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

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

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   SECTION DIVIDERS
   =================================== */

.story-section::before,
.heritage-section::before,
.visit-section::before,
.footer::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--section-divider);
}

/* ===================================
   STORY SECTION
   =================================== */

.story-section {
    padding: var(--section-padding);
    background: var(--bg-warm-ivory);
}

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

.story-text {
    font-size: 17px;
    color: var(--text-body);
}

.story-text .lead {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 24px;
}

.story-text blockquote {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-parchment);
    border-left: 4px solid var(--warm-gold);
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.story-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.2);
    pointer-events: none;
}

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

.story-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--border-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.story-image .image-placeholder::before {
    content: '📸';
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* ===================================
   HERITAGE SECTION
   =================================== */

.heritage-section {
    padding: var(--section-padding);
    background: var(--bg-parchment);
}

.heritage-timeline {
    max-width: 900px;
    margin: 0 auto 80px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: calc(100% + 30px);
    background: var(--border-warm-md);
}

.timeline-icon {
    width: 120px;
    height: 120px;
    background: var(--warm-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline-icon-img {
    overflow: hidden;
    padding: 0;
}

.timeline-icon-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 50%;
}

.timeline-icon-img span {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.timeline-icon-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.35);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-body);
    font-size: 17px;
    line-height: 1.7;
}

.heritage-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #FFFFFF;
    border: 0.5px solid rgba(200, 149, 106, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(200, 149, 106, 0.35);
    transform: translateY(-3px);
}

.feature-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.2);
    pointer-events: none;
    z-index: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

.feature-body {
    padding: 30px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: #1A0E08;
    text-align: left;
    margin-bottom: 10px;
}

.feature-card p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
    text-align: left;
}

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

.menu-section {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.menu-item {
    background: #FFFFFF;
    border: 0.5px solid rgba(200, 149, 106, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: rgba(200, 149, 106, 0.35);
    transform: translateY(-3px);
}

.menu-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.menu-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.2);
    pointer-events: none;
    z-index: 1;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

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

.menu-image .image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--border-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.menu-image .image-placeholder::before {
    content: '🍽️';
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.menu-details {
    padding: 30px;
}

.menu-details .menu-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: #1A0E08;
    margin-bottom: 0;
}

.menu-details .menu-chinese {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
    margin-bottom: 8px;
}

.menu-details p {
    font-family: var(--font-body-new);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.menu-badge {
    display: inline-block;
    background: transparent;
    color: #8B6340;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(200, 149, 106, 0.4);
    padding: 0 0 2px 0;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-cta {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-parchment);
    border-radius: 8px;
}

.menu-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    color: #1A0E08;
    margin-bottom: 12px;
}

.menu-cta p {
    font-family: var(--font-body-new);
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

.menu-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid rgba(200, 149, 106, 0.4);
    color: var(--text-body);
    font-family: var(--font-body-new);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-cta-btn:hover {
    border-color: rgba(200, 149, 106, 0.7);
    color: #1A0E08;
}

/* ===================================
   VISIT SECTION
   =================================== */

.visit-section {
    padding: var(--section-padding);
    background: var(--bg-warm-ivory);
}

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

.visit-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.visit-info .lead {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--warm-gold);
    margin-bottom: 10px;
}

.info-block p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
}

.visit-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.visit-map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.visit-map .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--border-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
}

.visit-map .image-placeholder::before {
    content: '🗺️';
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

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

.footer {
    background: rgba(26, 20, 16, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    color: var(--text-light-warm);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-light-muted);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--warm-gold);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-light-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--warm-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 149, 106, 0.15);
}

.footer-bottom p {
    color: var(--text-hint);
    font-size: 14px;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes scrollDown {
    0% {
        height: 0;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 0;
    }
}

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

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .story-content,
    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .timeline-icon {
        width: 80px;
        height: 80px;
        font-size: 16px;
    }

    .timeline-item:not(:last-child)::after {
        left: 40px;
        top: 90px;
    }
}

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

    .hamburger { display: flex; }

    .hero-content {
        padding: 0 24px;
        justify-content: flex-end;
        padding-bottom: 120px;
    }

    .hero .hero-title {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .section-header.centered {
        margin-bottom: 40px;
    }

    .heritage-features {
        grid-template-columns: 1fr;
    }

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

    .visit-buttons {
        flex-direction: column;
    }

    .visit-buttons .btn {
        width: 100%;
    }
}
