/* ==========================================================================
   Restaurant — Design élégant & gastronomique
   ========================================================================== */

/* --- Variables & Design Tokens --- */
:root {
    --color-bg: #faf8f5;
    --color-bg-alt: #f2ede6;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-light: #7a7168;
    --color-accent: #8b6f4e;
    --color-accent-hover: #74593b;
    --color-dark: #1a1713;
    --color-gold: #c9a96e;
    --color-border: #e5ddd3;
    --color-success: #4a7c59;
    --color-error: #a94442;

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

    --header-height: 80px;
    --container-width: 1140px;
    --container-narrow: 780px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

a:hover {
    color: var(--color-accent-hover);
}

/* --- Utility --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: 100px 0;
}

.section-centered {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 24px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-dark);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.link-arrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    transition: letter-spacing 0.3s var(--ease-out), color 0.3s;
}

.link-arrow:hover {
    letter-spacing: 1.5px;
    color: var(--color-accent-hover);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    transition: background-color 0.4s, box-shadow 0.4s, height 0.4s;
}

.site-header.scrolled {
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
    height: 64px;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--color-dark);
    letter-spacing: 1px;
}

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

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-cta {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    padding: 8px 20px;
    border: 1px solid var(--color-accent);
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    background-color: var(--color-accent);
    color: #fff;
}



/* Mobile menu toggle */


/* Header sur le hero — textes blancs */
.hero-header .logo-text {
    color: #fff !important;
}

.hero-header .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-header .nav-link:hover,
.hero-header .nav-link.active {
    color: #fff !important;
}

.hero-header .nav-link::after {
    background-color: #fff;
}

.hero-header .nav-cta {
    color: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.hero-header .nav-cta:hover {
    background-color: #fff !important;
    color: var(--color-dark) !important;
}

.hero-header .menu-toggle span {
    background-color: #fff;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease-out);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--color-bg);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 36px;
    color: var(--color-dark);
    padding: 12px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}

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

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

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

.mobile-nav-divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-border);
    margin: 20px auto;
}

.mobile-nav-phone {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-accent);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 23, 19, 0.35) 0%,
        rgba(26, 23, 19, 0.55) 50%,
        rgba(26, 23, 19, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1s var(--ease-out) 0.3s both;
}

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

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-actions .btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.hero-actions .btn-primary:hover {
    background-color: #fff;
}

.hero-actions .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.hero-actions .btn-outline:hover {
    background-color: #fff;
    color: var(--color-dark);
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-error);
}

.status-open .status-dot {
    background-color: var(--color-success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s var(--ease-out) 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    margin: 10px auto 0;
    animation: scrollBounce 2s var(--ease-in-out) infinite;
}

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

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 14px;
    text-align: center;
    border: 2px dashed var(--color-border);
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* ==========================================================================
   MENU
   ========================================================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.menu-tab:hover,
.menu-tab.active {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-panel-desc {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 36px;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 18px;
}

.menu-items {
    max-width: 700px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.menu-item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.menu-item-price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-accent);
    white-space: nowrap;
    padding-top: 2px;
}

.menu-cta {
    text-align: center;
    margin-top: 48px;
}

/* Menu full page */
.menu-category {
    margin-bottom: 64px;
}

.menu-category-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.menu-category-desc {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 32px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

/* Scroll horizontal (accueil) */
.gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 24px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll-item {
    flex: 0 0 320px;
    height: 240px;
    overflow: hidden;
    scroll-snap-align: start;
}

.gallery-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

/* Grille galerie (page) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    margin: 0 auto;
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 16px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 32px;
    padding: 16px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 40px;
}

.lightbox-prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
}

.lightbox-next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
}

/* ==========================================================================
   INFO (Horaires & Localisation)
   ========================================================================== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.hours-list {
    margin-top: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
}

.hours-day {
    font-weight: 400;
    color: var(--color-dark);
}

.hours-time {
    color: var(--color-text-light);
}

.hours-row.closed .hours-time {
    color: var(--color-error);
    font-style: italic;
}

.hours-list-compact .hours-row {
    padding: 6px 0;
    font-size: 14px;
}

.info-address {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.map-embed {
    margin: 24px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2,
.contact-form-wrap h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.contact-detail p {
    color: var(--color-text-light);
}

.contact-detail a {
    color: var(--color-text-light);
}

.contact-detail a:hover {
    color: var(--color-accent);
}

.contact-map {
    margin-top: 24px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================================================
   PAGE HEADER (sous-pages)
   ========================================================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background-color: var(--color-bg-alt);
}

.page-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--color-dark);
}

/* Page content (mentions légales etc.) */
.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.page-content h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--color-dark);
    margin: 32px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
}

/* ==========================================================================
   FLASH MESSAGES
   ========================================================================== */
.flash {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    padding: 16px 48px 16px 24px;
    font-size: 14px;
    max-width: 500px;
    animation: fadeInUp 0.4s var(--ease-out);
}

.flash-success {
    background-color: #ecf5ee;
    color: var(--color-success);
    border: 1px solid #c8e6c9;
}

.flash-error {
    background-color: #fdecea;
    color: var(--color-error);
    border: 1px solid #f5c6cb;
}

.flash-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-col p {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

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

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--color-text-light);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 20px;
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .about-grid,
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image img,
    .about-image-placeholder {
        height: 350px;
    }

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

    .footer-info {
        grid-template-columns: 1fr 1fr;
    }

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

    .section {
        padding: 64px 0;
    }

    .gallery-scroll-item {
        flex: 0 0 260px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 500px;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .menu-tabs {
        gap: 4px;
    }

    .menu-tab {
        font-size: 11px;
        padding: 8px 16px;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-scroll-item {
        flex: 0 0 220px;
        height: 170px;
    }

    .page-header {
        padding: 120px 0 40px;
    }
}
