/* ============================================
   Chez Luc's French Cafe — Style System
   Palette: Plum (#4A2338) + Amber (#D4A853)
   Fonts: Cormorant Garamond (serif) + Lato (sans)
============================================ */

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

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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #2D1F2D;
    background-color: #FDF8F4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2D1F2D;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Eyebrow ---------- */
.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4A853;
    margin-bottom: 16px;
    display: block;
}

/* ---------- Section Title ---------- */
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.15;
}

.title-accent {
    color: #D4A853;
    font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    background-color: #D4A853;
    color: #2D1F2D;
    border: 2px solid #D4A853;
}

.btn-primary:hover {
    background-color: #c4953f;
    border-color: #c4953f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #FDF8F4;
    border: 1.5px solid rgba(253, 248, 244, 0.5);
}

.btn-outline:hover {
    background-color: rgba(253, 248, 244, 0.1);
    border-color: #FDF8F4;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(45, 31, 45, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FDF8F4;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-icon {
    color: #D4A853;
}

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

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 244, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #D4A853;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4A853;
}

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

.nav-cta-btn {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2D1F2D;
    background-color: #D4A853;
    padding: 10px 24px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background-color: #c4953f;
    transform: translateY(-1px);
}

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

.hamburger {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #FDF8F4;
    transition: all 0.3s ease;
}

/* ============================================
   MOBILE MENU
============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #2D1F2D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #FDF8F4;
    padding: 8px;
}

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

.mobile-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(253, 248, 244, 0.85);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #D4A853;
}

.mobile-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(212, 168, 83, 0.4);
}

.mobile-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D1F2D;
    background-color: #D4A853;
    padding: 14px 36px;
    border-radius: 2px;
}

.mobile-contact {
    margin-top: 16px;
    text-align: center;
    color: rgba(253, 248, 244, 0.6);
    font-size: 0.85rem;
    line-height: 1.8;
}

.mobile-contact a {
    color: #D4A853;
    transition: color 0.3s ease;
}

.mobile-contact a:hover {
    color: #c4953f;
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #2D1F2D;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 31, 45, 0.92) 0%,
        rgba(74, 35, 56, 0.85) 50%,
        rgba(45, 31, 45, 0.75) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4A853;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: #FDF8F4;
    margin-bottom: 28px;
}

.headline-accent {
    color: #D4A853;
    font-style: italic;
    display: block;
    font-size: 0.85em;
}

.hero-subtext {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(253, 248, 244, 0.75);
    margin-bottom: 40px;
    max-width: 520px;
}

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

.hero-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(253, 248, 244, 0.7);
    font-size: 0.88rem;
}

.hero-detail-item svg {
    color: #D4A853;
    flex-shrink: 0;
}

/* Hero Asymmetric Card */
.hero-asymmetric {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.asymmetric-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

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

.asymmetric-accent {
    color: #D4A853;
    opacity: 0.6;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 244, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background-color: rgba(253, 248, 244, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: -8px;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D4A853;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: -8px; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 48px; opacity: 0; }
}

/* ============================================
   STORY SECTION
============================================ */
.story {
    padding: 120px 0;
    background-color: #FDF8F4;
}

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

.story-visual {
    position: relative;
}

.story-image-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 35, 56, 0.15);
}

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

.story-image-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(74, 35, 56, 0.2);
    border: 4px solid #FDF8F4;
}

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

.story-image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 45%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(74, 35, 56, 0.15);
    border: 4px solid #FDF8F4;
}

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

.story-content {
    padding: 20px 0;
}

.story-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #4A3A4A;
    margin-bottom: 20px;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(74, 35, 56, 0.12);
}

.story-signature svg {
    color: #D4A853;
}

.signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #4A2338;
}

/* ============================================
   MENU SECTION
============================================ */
.menu {
    padding: 120px 0;
    background-color: #2D1F2D;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

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

.menu-header .section-title {
    color: #FDF8F4;
}

.menu-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(253, 248, 244, 0.65);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.category-header svg {
    color: #D4A853;
    flex-shrink: 0;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #FDF8F4;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(253, 248, 244, 0.06);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #FDF8F4;
    margin-bottom: 6px;
}

.item-description {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(253, 248, 244, 0.5);
}

.menu-note {
    text-align: center;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(253, 248, 244, 0.08);
}

.menu-note p {
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(253, 248, 244, 0.4);
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================
   ATMOSPHERE SECTION
============================================ */
.atmosphere {
    padding: 120px 0;
    background-color: #FDF8F4;
}

.atm-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.atm-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 72px;
}

.atm-gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.atm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.atm-gallery-item:hover img {
    transform: scale(1.05);
}

.atm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 31, 45, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.atm-gallery-item:hover .atm-overlay {
    opacity: 1;
}

.atm-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #FDF8F4;
    font-style: italic;
}

.atm-large {
    grid-row: span 2;
}

.atm-large img {
    height: 100%;
    min-height: 520px;
}

.atm-small img {
    height: 250px;
}

.atm-wide img {
    height: 200px;
}

.atm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.atm-feature {
    text-align: center;
    padding: 32px 24px;
}

.atm-feature-icon {
    color: #D4A853;
    margin-bottom: 20px;
}

.atm-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2D1F2D;
}

.atm-feature p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4A3A4A;
}

/* ============================================
   VISIT SECTION
============================================ */
.visit {
    padding: 120px 0;
    background-color: #F5EDE6;
}

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

.visit-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.visit-detail-icon {
    color: #D4A853;
    flex-shrink: 0;
    margin-top: 4px;
}

.visit-detail-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #2D1F2D;
}

.visit-detail-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4A3A4A;
}

.visit-detail-content a {
    color: #4A2338;
    border-bottom: 1px solid rgba(74, 35, 56, 0.2);
    transition: all 0.3s ease;
}

.visit-detail-content a:hover {
    color: #D4A853;
    border-bottom-color: #D4A853;
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(74, 35, 56, 0.15);
    aspect-ratio: 4/3;
}

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

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    padding: 120px 0;
    background-color: #2D1F2D;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

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

.contact-content {
    max-width: 560px;
}

.contact-intro {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(253, 248, 244, 0.65);
    margin-bottom: 40px;
}

.contact .section-title {
    color: #FDF8F4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 244, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(253, 248, 244, 0.06);
    border: 1px solid rgba(253, 248, 244, 0.12);
    border-radius: 2px;
    padding: 14px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #FDF8F4;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(253, 248, 244, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4A853;
    background-color: rgba(212, 168, 83, 0.06);
}

.form-group 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 12 12' fill='none' stroke='%23D4A853' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background-color: #2D1F2D;
    color: #FDF8F4;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
    color: #FDF8F4;
}

.form-success svg {
    color: #D4A853;
}

.form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #FDF8F4;
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(253, 248, 244, 0.65);
    line-height: 1.7;
}

/* Contact Visual */
.contact-visual {
    position: relative;
}

.contact-image-stack {
    position: relative;
}

.contact-img-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.contact-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    border: 4px solid #2D1F2D;
}

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

/* ============================================
   FOOTER
============================================ */
.footer {
    background-color: #1E1420;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(253, 248, 244, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FDF8F4;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-logo-mark {
    color: #D4A853;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(253, 248, 244, 0.5);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(253, 248, 244, 0.5);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #D4A853;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #FDF8F4;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4A853;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.5);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(253, 248, 244, 0.5);
    border-bottom: 1px solid rgba(253, 248, 244, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact a:hover {
    color: #D4A853;
    border-bottom-color: #D4A853;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hours p {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.5);
}

.footer-hours-note {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(253, 248, 244, 0.06);
}

.footer-hours-note p {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(253, 248, 244, 0.3);
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(253, 248, 244, 0.35);
}

.footer-bottom a {
    color: rgba(253, 248, 244, 0.35);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #D4A853;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-asymmetric {
        display: none;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-visual {
        max-width: 560px;
    }
    
    .menu-categories {
        grid-template-columns: 1fr 1fr;
    }
    
    .atm-features {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-visual {
        max-width: 420px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 0;
    }
    
    .hero-container {
        padding: 140px 24px 100px;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .story {
        padding: 80px 0;
    }
    
    .story-image-secondary {
        left: -16px;
        bottom: -24px;
    }
    
    .story-image-accent {
        right: -16px;
        top: -16px;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .atmosphere {
        padding: 80px 0;
    }
    
    .atm-gallery {
        grid-template-columns: 1fr;
    }
    
    .atm-large {
        grid-row: span 1;
    }
    
    .atm-large img {
        min-height: 300px;
    }
    
    .atm-small img,
    .atm-wide img {
        height: 220px;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 120px 16px 80px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
    }
    
    .story-image-secondary,
    .story-image-accent {
        display: none;
    }
    
    .contact-img-accent {
        display: none;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .scroll-dot {
        animation: none;
    }
}
