:root {
    --bg: #071f1b;
    --bg-2: #0d3029;
    --ink: #f8efe1;
    --muted: #c8bda8;
    --gold: #d6a75f;
    --line: rgba(248, 239, 225, 0.16);
    --panel: rgba(9, 43, 36, 0.82);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top, #123f35 0, var(--bg) 42%, #04110f 100%);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 70px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
    transition: 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(3, 18, 15, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-brand img,
.site-brand span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gold);
    color: #1c1004;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.site-brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav a {
    color: rgba(248, 239, 225, 0.72);
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--gold);
}

.site-reserve,
.hero-actions a,
.center-action a,
.contact-panel a,
.branch-actions a,
.single-branch-card a,
.branch-card a,
.contact-form button,
.reservation-form button {
    justify-self: end;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #201205;
    padding: 12px 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.site-menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    width: 44px;
    height: 44px;
}

.hero-slider {
    min-height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-track,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(7, 31, 27, 0.92)),
        radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 150px 20px 90px;
    text-align: center;
}

.hero-content p,
.section-title p,
.mini-label,
.page-hero p,
.menu-category-head p {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.section-title h2,
.split-copy h2,
.reservation-card h2,
.page-hero h1,
.menu-category-head h2,
.contact-panel h2,
.success-panel h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    line-height: 0.95;
}

.hero-content h1 {
    font-size: clamp(56px, 11vw, 132px);
}

.hero-content span,
.section-title span,
.page-hero span,
.reservation-card span,
.success-panel span {
    display: block;
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--muted);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-actions a:last-child {
    background: transparent;
    color: var(--ink);
}

.branch-section {
    background: rgba(4, 17, 15, 0.35);
}

.single-branch-card {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(214, 167, 95, 0.16), rgba(255, 255, 255, 0.04)),
        var(--panel);
    backdrop-filter: blur(18px);
}

.branch-mark {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #201205;
    font-size: 30px;
}

.single-branch-card h3,
.branch-card h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 4vw, 54px);
}

.single-branch-card span,
.branch-card p {
    color: var(--muted);
    line-height: 1.7;
}

.single-branch-card a,
.branch-card a {
    display: inline-block;
    margin-top: 16px;
}

.branch-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.branch-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.branch-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(9, 43, 36, 0.72);
    backdrop-filter: blur(18px);
}

.branch-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    color: var(--gold);
    font-weight: 800;
}

.branch-card-top i {
    font-size: 28px;
}

.branch-card p {
    margin: 0;
    flex: 1;
}

.section-pad {
    padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 90px);
}

.section-title,
.page-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.section-title h2,
.page-hero h1 {
    font-size: clamp(42px, 7vw, 76px);
}

.category-grid,
.menu-grid,
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1120px;
    margin: 0 auto;
}

.category-card,
.food-card,
.gallery-frame,
.reservation-card,
.contact-panel,
.success-panel {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.category-card {
    padding: 20px;
    text-align: center;
}

.category-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50% 50% 8px 8px;
}

.category-card h3,
.food-card h3,
.menu-row h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    margin: 18px 0 6px;
}

.category-card span,
.food-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    align-items: center;
    gap: clamp(34px, 7vw, 90px);
    max-width: 1180px;
    margin: 0 auto;
}

.split-copy h2 {
    font-size: clamp(42px, 6vw, 72px);
}

.split-copy p {
    color: var(--muted);
    line-height: 1.85;
}

.feature-list,
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.feature-list span,
.stats-row span {
    border: 1px solid var(--line);
    padding: 12px 14px;
    color: var(--muted);
}

.feature-list i {
    color: var(--gold);
    margin-right: 8px;
}

.text-link {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.arched-image img {
    width: 100%;
    aspect-ratio: 0.82;
    object-fit: cover;
    border-radius: 50% 50% 10px 10px;
    border: 1px solid var(--line);
}

.menu-preview,
.inner-page {
    background: rgba(0, 0, 0, 0.12);
}

.menu-list-preview {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.menu-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

.menu-row img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.menu-row p,
.food-card p {
    color: var(--muted);
    line-height: 1.6;
}

.menu-row strong,
.food-card strong {
    color: var(--gold);
}

.center-action {
    text-align: center;
    margin-top: 34px;
}

.reservation-band {
    background-size: cover;
    background-position: center;
}

.reservation-card {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 54px);
    display: grid;
    grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(214, 167, 95, 0.10), rgba(255, 255, 255, 0.03)),
        var(--panel);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.reservation-card h2 {
    font-size: clamp(40px, 6vw, 68px);
}

.reservation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(248, 239, 225, 0.12);
    background: rgba(4, 17, 15, 0.32);
}

.form-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.form-field span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.reservation-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    padding: 15px 14px;
    outline: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.reservation-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(214, 167, 95, 0.72);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(214, 167, 95, 0.12);
}

.reservation-form input::placeholder {
    color: rgba(248, 239, 225, 0.55);
}

.reservation-form button,
.reservation-form .form-field-wide {
    grid-column: 1 / -1;
}

.reservation-form button {
    width: 100%;
    justify-self: stretch;
    margin-top: 2px;
    cursor: pointer;
}

.gallery-strip {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1.15fr 0.85fr 1.15fr;
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

.home-gallery-slider {
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
}

.home-gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.7s ease;
    will-change: transform;
}

.home-gallery-track .gallery-tile {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
}

.gallery-tile img,
.gallery-frame img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.inner-page {
    padding-top: 110px;
}

.page-hero {
    padding: 70px 18px 20px;
}

.menu-category-block {
    max-width: 1180px;
    margin: 0 auto 60px;
}

.menu-category-head {
    margin-bottom: 22px;
}

.menu-category-head h2 {
    font-size: clamp(38px, 5vw, 58px);
}

.food-card {
    overflow: hidden;
}

.food-card img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
}

.food-card div {
    padding: 20px;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-frame figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    background: rgba(4, 17, 15, 0.75);
    color: var(--ink);
    backdrop-filter: blur(12px);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 26px;
    background: rgba(0, 0, 0, 0.88);
}

.gallery-lightbox.is-open {
    display: grid;
}

.gallery-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid var(--line);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox strong {
    margin-top: 14px;
    color: var(--ink);
}

.gallery-lightbox button {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-layout .reservation-band {
    padding: 0;
}

.contact-layout .reservation-card {
    grid-template-columns: 1fr;
    height: 100%;
}

.contact-panel,
.contact-form-panel,
.success-panel {
    padding: clamp(24px, 4vw, 44px);
}

.contact-panel h2,
.contact-form-panel h2,
.success-panel h2 {
    font-size: clamp(40px, 5vw, 62px);
}

.contact-panel p {
    display: flex;
    gap: 12px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-panel i {
    color: var(--gold);
}

.contact-panel a {
    display: inline-block;
    margin-top: 18px;
}

.contact-form-panel {
    background: var(--panel);
    backdrop-filter: blur(18px);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    padding: 15px 14px;
    outline: none;
}

.contact-form .form-field-wide,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 239, 225, 0.55);
}

.form-success {
    margin: 16px 0 0;
    padding: 14px 18px;
    color: #d9fbe8;
    background: rgba(21, 94, 58, 0.34);
    border: 1px solid rgba(93, 214, 143, 0.35);
}

.success-panel {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    text-align: center;
}

.form-error {
    max-width: 760px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    color: #ffd7d7;
    background: rgba(145, 29, 29, 0.34);
    border: 1px solid rgba(255, 126, 126, 0.35);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 44px clamp(18px, 6vw, 90px);
    border-top: 1px solid var(--line);
    background: #04110f;
}

.site-footer h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    margin: 0 0 8px;
}

.site-footer p,
.site-footer span {
    color: var(--muted);
}

.site-footer div:last-child {
    display: grid;
    gap: 8px;
    justify-items: end;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .site-menu-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: fixed;
        top: 78px;
        left: 18px;
        right: 18px;
        display: none;
        padding: 18px;
        background: rgba(3, 18, 15, 0.96);
        border: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-reserve {
        display: none;
    }

    .category-grid,
    .menu-grid,
    .gallery-page-grid,
    .split-section,
    .reservation-card,
    .single-branch-card,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .single-branch-card,
    .branch-actions {
        justify-items: start;
        justify-content: start;
    }

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

    .home-gallery-track .gallery-tile {
        flex-basis: calc((100% - 18px) / 2);
    }

    .site-footer div:last-child {
        justify-items: start;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 16px;
    }

    .site-brand strong {
        max-width: 160px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-actions,
    .reservation-form,
    .contact-form,
    .menu-row {
        grid-template-columns: 1fr;
    }

    .hero-actions a,
    .reservation-form button,
    .contact-form button {
        width: 100%;
        text-align: center;
    }

    .menu-row {
        display: grid;
        text-align: center;
    }

    .menu-row img {
        margin: 0 auto;
    }

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

    .home-gallery-track .gallery-tile {
        flex-basis: 100%;
    }
}
