/* ================================================
   RISTORANTE DARK TEMPLATE — Dark & Gold elegant
   ================================================ */

/* === Variables === */
:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --dark: #0e0e0e;
    --dark2: #141414;
    --dark3: #1c1c1c;
    --dark4: #242424;
    --cream: #f5f0e8;
    --text: #f5f0e8;
    --text-light: rgba(245,240,232,0.75);
    --text-muted: #888;
    --bg: #0e0e0e;
    --bg-alt: #141414;
    --border: #2a2a2a;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Lato', -apple-system, system-ui, sans-serif;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1140px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: all var(--transition); }
a:hover { color: var(--gold-light); opacity: 1; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Layout === */
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2.5rem; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem; }

/* === Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================
   TOPBAR & HAMBURGER MENU
   ============================= */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(14,14,14,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2rem;
    position: relative;
}

.topbar__brand {
    text-align: center;
    text-decoration: none;
    color: var(--gold);
}

.brand-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--gold);
}

.brand-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.topbar__logo {
    height: 50px;
    width: auto;
}

/* === Hamburger Toggle === */
.menu-toggle {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}

.menu-toggle__icon {
    width: 26px;
    height: 16px;
    position: relative;
}

.menu-toggle__icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--cream);
    position: absolute;
    left: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* === Navigation Overlay === */
.nav-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0e0e0e;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.open { opacity: 1; visibility: visible; }

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

.nav-overlay__list { list-style: none; padding: 0; margin: 0; }

.nav-overlay__list li { margin: 0.5rem 0; }

.nav-overlay__list li::after {
    content: '·';
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    margin: 0.5rem 0;
    opacity: 0.4;
}

.nav-overlay__list li:last-child::after { display: none; }

.nav-overlay__list a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.nav-overlay__list a:hover { color: var(--gold); }

.nav-overlay__list li {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-overlay:not(.open) .nav-overlay__list li { transition: none; }
.nav-overlay.open .nav-overlay__list li { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-overlay__list li:nth-child(1) { transition-delay: 0.12s; }
.nav-overlay.open .nav-overlay__list li:nth-child(2) { transition-delay: 0.22s; }
.nav-overlay.open .nav-overlay__list li:nth-child(3) { transition-delay: 0.32s; }
.nav-overlay.open .nav-overlay__list li:nth-child(4) { transition-delay: 0.42s; }
.nav-overlay.open .nav-overlay__list li:nth-child(5) { transition-delay: 0.52s; }
.nav-overlay.open .nav-overlay__list li:nth-child(6) { transition-delay: 0.62s; }
.nav-overlay.open .nav-overlay__list li:nth-child(7) { transition-delay: 0.72s; }
.nav-overlay.open .nav-overlay__list li:nth-child(8) { transition-delay: 0.82s; }

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

.hero {
    width: 100%;
    min-height: 100vh;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    letter-spacing: 5px;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.2rem;
}

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

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto 2.4rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceDown 2s infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* === Buttons === */
.btn-gold {
    background: var(--gold);
    color: #0e0e0e;
    border: none;
    padding: 16px 42px;
    border-radius: 3px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: var(--gold-light);
    color: #0e0e0e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 14px 38px;
    border-radius: 3px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #0e0e0e;
    transform: translateY(-2px);
}

.btn-cta { /* alias */
    background: var(--gold);
    color: #0e0e0e;
    border: none;
    padding: 16px 42px;
    border-radius: 3px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: var(--gold-light);
    color: #0e0e0e;
    opacity: 1;
    transform: translateY(-2px);
}

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

.section-label {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

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

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

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

.menu-section {
    background: var(--dark2);
    padding: 100px 0;
}

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

.menu-tab {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 10px 26px;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.25s;
}
.menu-tab.active, .menu-tab:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0e0e0e;
}

.menu-grid {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.menu-grid.active { display: grid; }

.menu-item {
    background: var(--dark3);
    padding: 28px 32px;
    border-bottom: 1px solid #222;
    transition: background 0.25s;
    position: relative;
}
.menu-item:hover { background: var(--dark4); }

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}
.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #f0ebe0;
    font-weight: 600;
}
.menu-item-price {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}
.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}
.menu-item-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 10px;
}

/* =============================
   INTRO / ABOUT
   ============================= */

.section-intro {
    padding: 6rem 0;
    background: var(--bg);
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.3;
}

.intro-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.intro-quote {
    border: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 600px;
}

.intro-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* About section (with image) */
.about-section {
    background: var(--dark);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
}

.about-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.about-stat .num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.about-stat .lbl {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.section-gallery { padding: 0; }

.gallery-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gallery-figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-figure:hover img { transform: scale(1.03); }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark3);
}

/* =============================
   FEATURES / SERVICES
   ============================= */

.section-features {
    padding: 6rem 2.5rem;
    background: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.feature-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--text-muted);
}

/* =============================
   SPECIALTIES (cards with images)
   ============================= */

.specials-section {
    background: var(--dark2);
    padding: 100px 0;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.special-card {
    background: var(--dark3);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
}
.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.special-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.special-card:hover img { transform: scale(1.05); }
.special-card-body { padding: 24px; }
.special-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #f0ebe0;
    margin-bottom: 8px;
}
.special-card-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.special-card-price {
    margin-top: 14px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--gold);
    font-style: italic;
}

/* =============================
   SPLIT LAYOUT
   ============================= */

.section-split { padding: 0; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    background: var(--dark3);
}

.split-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.3;
}

.split-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.value-item {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.4rem 1rem;
    border: 1px solid var(--gold);
}

.link-arrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    display: inline-block;
}
.link-arrow:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

.split-image {
    margin: 0;
    overflow: hidden;
}

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

/* =============================
   BOOKING CTA
   ============================= */

.booking-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                var(--dark3) center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

.booking-section[style] {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-title em {
    font-style: italic;
    color: var(--gold-light);
}

.booking-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

/* =============================
   REVIEWS / TESTIMONIALS
   ============================= */

.reviews-section {
    background: var(--dark);
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--dark3);
    border: 1px solid #222;
    border-radius: 4px;
    padding: 32px;
    height: 100%;
    position: relative;
    transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--gold); }
.review-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    font-style: italic;
    font-family: var(--font-serif);
    margin-bottom: 20px;
}
.review-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #f0ebe0;
    letter-spacing: 1px;
}
.review-author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* =============================
   INFO SECTION (hours, location, etc.)
   ============================= */

.info-section {
    background: var(--dark2);
    padding: 80px 0;
    border-top: 1px solid #1e1e1e;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 40px 24px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0 auto 20px;
}

.info-card h5 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #f0ebe0;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* =============================
   TEAM
   ============================= */

.section-team {
    padding: 6rem 2.5rem;
    background: var(--dark);
}

.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.team-photo {
    margin: 0 0 1rem;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-photo:hover img { transform: scale(1.05); }

.team-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--cream);
}

.team-role {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* =============================
   LOCATION
   ============================= */

.section-location {
    padding: 5rem 2.5rem;
    text-align: center;
    background: var(--bg-alt);
}

.location-details p {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-muted);
    padding: 0 1rem;
}

.location-details a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* =============================
   CTA
   ============================= */

.section-cta {
    padding: 5rem 2.5rem;
    text-align: center;
    background: var(--dark);
}

/* =============================
   PAGE HEADER (inner pages)
   ============================= */

.page-header {
    padding: 8rem 2.5rem 3rem;
    text-align: center;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.page-header .subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.site-footer {
    background: #080808;
    border-top: 1px solid #1a1a1a;
    padding: 3rem 0 0;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer__info strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.footer__info a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__info a:hover { color: var(--gold); }

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.footer__social a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer__social a:hover { color: var(--gold); }

.footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #555;
}

.footer__bottom a { color: #555; }
.footer__bottom a:hover { color: var(--gold); }

.footer-vat {
    font-size: 0.75rem;
    color: #555;
}

/* =============================
   WHATSAPP FAB
   ============================= */

.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: transform var(--transition);
}

.whatsapp-fab:hover { transform: scale(1.1); opacity: 1; }

/* =============================
   CONTACT FORM
   ============================= */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--cream);
    transition: border-color var(--transition);
    outline: none;
}

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

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

.form-feedback {
    display: none;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 4px;
}

.form-feedback.success { color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); }
.form-feedback.error { color: #e57373; background: rgba(229,115,115,0.1); border: 1px solid rgba(229,115,115,0.3); }

/* =============================
   BOOKING MODAL
   ============================= */

.booking-modal .modal-content {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--cream);
}
.booking-modal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 28px 32px 20px;
}
.booking-modal .modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
}
.booking-modal .modal-body { padding: 28px 32px; }
.booking-modal .modal-footer { border-top: 1px solid var(--border); padding: 20px 32px; }
.booking-modal .form-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.booking-modal .form-control,
.booking-modal .form-select {
    background: var(--dark4);
    border: 1px solid #333;
    color: var(--cream);
    border-radius: 3px;
    padding: 12px 16px;
}
.booking-modal .form-control:focus,
.booking-modal .form-select:focus {
    background: var(--dark4);
    border-color: var(--gold);
    color: var(--cream);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.booking-modal .form-select option { background: var(--dark3); }

/* =============================
   PAGE CONTENT
   ============================= */

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 2.5rem 0 1rem;
}

.page-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin: 2rem 0 0.75rem;
}

.page-content p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Services page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark3);
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--gold); }

.service-icon {
    display: inline-flex;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.service-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--text-muted);
}

/* About page */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
}

.about-desc {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.value-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* Locations grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.location-card:hover { border-color: var(--gold); }

.location-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.location-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.location-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Team page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.team-card { text-align: center; }

.team-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 280px;
    margin: 0 auto 1rem;
    background: var(--dark3);
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-muted);
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .container-narrow, .container { padding: 0 1.5rem; }
    .brand-name { font-size: 1.3rem; }
    .topbar__inner { padding: 1rem 1.5rem; }
    .menu-toggle { left: 1.5rem; }
    .hero { min-height: 80vh; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-sub { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-gold, .btn-outline-gold { width: 100%; max-width: 280px; text-align: center; }
    .menu-grid { grid-template-columns: 1fr !important; }
    .menu-section { padding: 60px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img-accent { display: none; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .specials-grid { grid-template-columns: 1fr; }
    .specials-section { padding: 60px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-section { padding: 60px 0; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .info-section { padding: 40px 0; }
    .booking-section { padding: 80px 0; }
    .gallery-strip { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; }
    .split-text { padding: 2.5rem 1.5rem; order: 2; }
    .split-image { order: 1; aspect-ratio: 16/9; }
    .section-heading { font-size: 1.8rem; margin-bottom: 1.5rem; }
    .section-features { padding: 3.5rem 1.5rem; }
    .section-team { padding: 3.5rem 1.5rem; }
    .section-location { padding: 3.5rem 1.5rem; }
    .section-cta { padding: 3rem 1.5rem; }
    .team-list { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__inner { padding: 0 1.5rem 2rem; }
    .page-header { padding: 6rem 1.5rem 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .nav-overlay__list a { font-size: 0.8rem; padding: 0.6rem 1.5rem; }
    .page-content { padding: 3rem 1.5rem; }
    .about-preview { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .container-narrow, .container { padding: 0 1.25rem; }
    .brand-name { font-size: 1.1rem; }
    .brand-sub { font-size: 0.55rem; }
    .topbar__inner { padding: 0.8rem 1.25rem; }
    .menu-toggle { left: 1.25rem; }
    .hero { min-height: 70vh; }
    .about-stats { grid-template-columns: 1fr; gap: 1rem; }
    .about-stat .num { font-size: 2rem; }
    .info-grid { grid-template-columns: 1fr; }
    .intro-title { font-size: 1.3rem; }
    .page-header { padding: 5rem 1.25rem 2rem; }
    .section-features { padding: 3rem 1.25rem; }
    .section-team { padding: 3rem 1.25rem; }
    .section-location { padding: 3rem 1.25rem; }
    .section-cta { padding: 2.5rem 1.25rem; }
    .split-text { padding: 2rem 1.25rem; }
    .footer__inner { padding: 0 1.25rem 1.5rem; }
    .footer__info { font-size: 0.75rem; }
}

/* === Anti-overflow === */
html { overflow-x: hidden; }
main { overflow-x: hidden; max-width: 100vw; }
canvas { max-width: 100% !important; height: auto !important; }
table { max-width: 100%; overflow-x: auto; display: block; }
iframe { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; word-wrap: break-word; }
.chart-container, [class*="chart"] { max-width: 100%; overflow: hidden; }

@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(3"],[style*="grid-template-columns:repeat(3"],
    [style*="grid-template-columns: repeat(4"],[style*="grid-template-columns:repeat(4"] {
        grid-template-columns: 1fr !important;
    }
    [style*="padding:36px 32px"],[style*="padding: 36px 32px"],
    [style*="padding:32px"],[style*="padding: 32px"] { padding: 16px 12px !important; }
    [style*="padding:24px 28px"],[style*="padding: 24px 28px"] { padding: 16px 14px !important; }
    [style*="font-size:2.5rem"],[style*="font-size: 2.5rem"] { font-size: 1.6rem !important; }
    [style*="font-size:2.2rem"],[style*="font-size: 2.2rem"] { font-size: 1.4rem !important; }
    [style*="font-size:1.6rem"],[style*="font-size: 1.6rem"] { font-size: 1.2rem !important; }
    [style*="display:flex"],[style*="display: flex"] { flex-wrap: wrap !important; }
    table { display: block !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; max-width: 100% !important; }
    div[style*="max-width:1200px"],div[style*="max-width: 1200px"] { padding-left: 16px !important; padding-right: 16px !important; }
    canvas { max-width: 100% !important; height: auto !important; }
}

@media (max-width: 768px) {
    table th, table td { font-size: 0.7rem !important; padding: 8px 6px !important; }
}
@media (max-width: 480px) {
    table th, table td { font-size: 0.6rem !important; padding: 6px 4px !important; }
}
