:root {
    --background: #10110f;
    --surface: #151612;
    --surface-light: #1c1d19;
    --text: #f1eee6;
    --muted: #aaa69d;
    --gold: #c5a46d;
    --gold-light: #d9bd8b;
    --border: #39382f;
    --soft-border: rgba(255,255,255,.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: var(--gold);
    color: #111;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 span,
h2 span {
    color: var(--gold);
}

p {
    color: var(--muted);
}

main {
    overflow: hidden;
}

.eyebrow {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    margin-bottom: 20px;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.logo {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .18em;
}

.logo span {
    color: var(--gold);
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar nav a {
    color: rgba(241,238,230,.72);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    transition: .25s ease;
}

.navbar nav a:hover {
    color: var(--gold);
}

.nav-button {
    padding: 12px 19px;
    border: 1px solid rgba(197,164,109,.6);
    color: var(--gold) !important;
}

.nav-button:hover {
    background: var(--gold);
    color: #10110f !important;
}

.mobile-menu-button {
    display: none;
    background: transparent;
    border: 1px solid var(--soft-border);
    width: 42px;
    height: 42px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    height: 1px;
    width: 100%;
    background: var(--text);
    transition: .3s ease;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding: 180px 8% 120px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(10,11,9,.96),
            rgba(10,11,9,.7),
            rgba(10,11,9,.3)
        ),
        url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.35),
            transparent 40%,
            rgba(0,0,0,.55)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(241,238,230,.65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    margin-bottom: 25px;
}

.hero-location span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 15px rgba(197,164,109,.8);
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 8.5rem);
    line-height: .92;
    letter-spacing: -.045em;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.primary-button,
.secondary-button {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: .3s ease;
}

.primary-button {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #11120f;
}

.primary-button:hover {
    transform: translateY(-4px);
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(197,164,109,.15);
}

.secondary-button {
    background: transparent;
    border: 1px solid rgba(241,238,230,.25);
}

.secondary-button:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 38px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(241,238,230,.5);
    font-size: 8px;
    letter-spacing: .2em;
    z-index: 3;
}

.scroll-line {
    width: 55px;
    height: 1px;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollLine 2.2s infinite;
}

.hero-side-text {
    position: absolute;
    right: 35px;
    bottom: 100px;
    writing-mode: vertical-rl;
    color: rgba(241,238,230,.4);
    font-size: 8px;
    letter-spacing: .25em;
    z-index: 3;
}


/* =========================
   STORY
========================= */

.intro {
    max-width: 1200px;
    margin: auto;
    padding: 150px 7%;
    display: grid;
    grid-template-columns: .7fr 1.5fr;
    gap: 100px;
}

.intro-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
}

.intro h2 {
    font-size: clamp(3rem,5vw,5rem);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 35px;
}

.intro p {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 120px 5% 150px;
    background: var(--surface);
}

.gallery-heading {
    max-width: 1250px;
    margin: auto auto 65px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.gallery-heading h2 {
    max-width: 800px;
    font-size: clamp(3rem,5.5vw,6rem);
    line-height: .94;
    letter-spacing: -.045em;
}

.gallery-intro {
    max-width: 350px;
    font-size: 14px;
    line-height: 1.8;
}

.gallery-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 330px 330px;
    gap: 14px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    background: var(--background);
}

.gallery-feature {
    grid-row: 1 / 3;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.8),
        transparent 50%
    );
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card figcaption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.gallery-card figcaption span {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .15em;
}


/* =========================
   MENU
========================= */

.menu-section {
    padding: 150px 7%;
}

.section-heading {
    max-width: 1200px;
    margin: auto auto 55px;
}

.section-heading h2 {
    font-size: clamp(3rem,5vw,5.5rem);
    line-height: .95;
    letter-spacing: -.04em;
}

.menu-filters {
    max-width: 1200px;
    margin: 0 auto 45px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-filter {
    padding: 11px 20px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: .25s ease;
}

.menu-filter:hover {
    color: var(--text);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.menu-filter.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #11120f;
}

.menu-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 70px;
}

.menu-item {
    min-height: 180px;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--border);
    transition:
        padding-left .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.menu-item:hover {
    padding-left: 12px;
    border-color: rgba(197,164,109,.5);
}

.menu-item.hidden {
    display: none;
}

.category {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}

.menu-item h3 {
    margin: 10px 0;
    font-size: 25px;
}

.menu-item p {
    max-width: 400px;
    font-size: 13px;
}

.menu-item strong {
    color: var(--gold);
    font-size: 16px;
    font-weight: 400;
}


/* =========================
   EXPERIENCE
========================= */

.experience {
    min-height: 650px;
    padding: 120px 8%;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(10,11,9,.9),
            rgba(10,11,9,.4)
        ),
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
    background-attachment: fixed;
}

.experience-content {
    max-width: 700px;
}

.experience h2 {
    font-size: clamp(3rem,6vw,6rem);
    line-height: .95;
    letter-spacing: -.04em;
    margin-bottom: 30px;
}

.experience p:last-child {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================
   REVIEWS
========================= */

.reviews-section {
    padding: 150px 7%;
    background: var(--surface);
}

.reviews-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.review-card {
    min-height: 300px;
    padding: 40px;
    background: var(--background);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197,164,109,.5);
}

.stars {
    color: var(--gold);
    letter-spacing: .2em;
}

.review-text {
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.5;
}

.review-author {
    font-size: 11px;
}


/* =========================
   LOCATION
========================= */

.location-section {
    padding: 150px 7%;
}

.location-content {
    max-width: 1200px;
    margin: auto;
}

.location-heading {
    margin-bottom: 70px;
}

.location-heading h2 {
    max-width: 700px;
    font-size: clamp(3rem,5vw,5rem);
    line-height: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.location-card {
    min-height: 260px;
    padding: 35px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: .35s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,164,109,.5);
}

.location-label {
    display: block;
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}

.location-card h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.location-card p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-card strong {
    color: var(--text);
    font-weight: 400;
}

.text-link {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    transition: .25s ease;
}

.text-link:hover {
    color: var(--gold-light);
}


/* =========================
   RESERVATION
========================= */

.reservation {
    padding: 150px 7%;
    background:
        radial-gradient(
            circle at center,
            rgba(197,164,109,.06),
            transparent 55%
        );
}

.reservation-content {
    max-width: 850px;
    margin: auto;
}

.reservation h2 {
    font-size: clamp(3rem,6vw,6rem);
    line-height: .95;
    margin-bottom: 20px;
}

.reservation-description {
    max-width: 550px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 0;
    transition: .25s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(197,164,109,.05);
}

.reservation-form .primary-button {
    width: fit-content;
    border: none;
    cursor: pointer;
}

.reservation-form button:disabled {
    opacity: .5;
    cursor: wait;
}

.reservation-success {
    display: none;
    text-align: center;
    padding: 70px 30px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.reservation-success.show {
    display: block;
    animation: successAppear .6s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
}

.reservation-success h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.reservation-success p {
    max-width: 500px;
    margin: 0 auto 30px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 45px 7%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--border);
    background: #0c0d0b;
}

footer p {
    margin-top: 8px;
    font-size: 11px;
}

.footer-info {
    text-align: right;
}


/* =========================
   SCROLL ANIMATIONS
========================= */

.reveal-section {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-reveal {
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal .9s ease forwards;
}

.hero-reveal:nth-child(1) {
    animation-delay: .15s;
}

.hero-reveal:nth-child(2) {
    animation-delay: .3s;
}

.hero-reveal:nth-child(3) {
    animation-delay: .45s;
}

.hero-reveal:nth-child(4) {
    animation-delay: .6s;
}


/* =========================
   KEYFRAMES
========================= */

@keyframes heroReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes scrollLine {

    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }

}

@keyframes successAppear {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .navbar nav {
        gap: 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 400px 300px 300px;
    }

    .gallery-feature {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-tall {
        grid-row: auto;
    }

    .menu-grid {
        gap: 0 35px;
    }

    .reviews-grid,
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-card:last-child,
    .location-card:last-child {
        grid-column: 1 / 3;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar {
        padding: 22px 5%;
    }

    .mobile-menu-button {
        display: flex;
    }

    .navbar nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 5%;
        right: 5%;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        background: rgba(16,17,15,.98);
        border: 1px solid var(--border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s ease;
    }

    .navbar nav.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar nav a {
        padding: 13px;
    }

    .nav-button {
        text-align: center;
    }

    .hero {
        padding: 150px 6% 110px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: clamp(3.5rem,15vw,6rem);
    }

    .hero-side-text {
        display: none;
    }

    .intro {
        padding: 100px 6%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-section,
    .menu-section,
    .reviews-section,
    .location-section,
    .reservation {
        padding: 100px 6%;
    }

    .gallery-heading {
        display: block;
    }

    .gallery-intro {
        margin-top: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 350px 300px 300px;
    }

    .gallery-feature {
        grid-column: 1 / 3;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .review-card:last-child,
    .location-card:last-child {
        grid-column: auto;
    }

    .experience {
        min-height: 550px;
        padding: 100px 6%;
        background-attachment: scroll;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 35px 6%;
        flex-direction: column;
    }

    .footer-info {
        text-align: left;
    }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 600px) {

    .logo {
        font-size: 14px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .intro h2,
    .gallery-heading h2,
    .section-heading h2,
    .location-heading h2 {
        font-size: 3rem;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-card,
    .gallery-feature,
    .gallery-tall {
        height: 330px;
    }

    .menu-item {
        min-height: auto;
        padding: 28px 0;
    }

    .menu-item h3 {
        font-size: 21px;
    }

    .menu-filters {
        gap: 7px;
    }

    .menu-filter {
        flex: 1;
        padding: 12px 10px;
    }

    .review-card {
        min-height: 250px;
        padding: 30px;
    }

    .reservation-success {
        padding: 50px 20px;
    }

    .scroll-indicator {
        left: 6%;
    }

}
