:root {
    --gold: #d6ad60;
    --gold-light: #f0d49a;
    --dark: #090806;
    --dark-soft: #15120e;
    --white: #ffffff;
    --text-light: #d1cbc1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--dark);
    color: var(--white);
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    min-height: 86px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(9, 8, 6, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;

    color: #e3ded5;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.5px;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button,
.primary-button,
.secondary-button {
    min-height: 50px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 2px;

    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.nav-button,
.primary-button {
    background: var(--gold);
    color: #16110a;
}

.nav-button:hover,
.primary-button:hover {
    transform: translateY(-3px);
    background: var(--gold-light);
}

.hero {
    position: relative;

    min-height: 100vh;
    padding: 150px 7% 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        linear-gradient(
            90deg,
            rgba(4, 3, 2, 0.95) 0%,
            rgba(4, 3, 2, 0.76) 44%,
            rgba(4, 3, 2, 0.22) 100%
        ),
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(214, 173, 96, 0.13),
            transparent 30%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 790px;
}

.hero-label {
    margin-bottom: 18px;

    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    max-width: 640px;
    margin-top: 28px;

    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 36px;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.secondary-button:hover {
    transform: translateY(-3px);

    background: var(--white);
    color: var(--dark);
}

.hero-details {
    position: absolute;
    right: 7%;
    bottom: 47px;
    z-index: 2;

    display: flex;
    gap: 38px;
}

.hero-details div {
    padding-left: 18px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid rgba(214, 173, 96, 0.5);
}

.hero-details span {
    margin-bottom: 6px;

    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-details strong {
    color: #e6e0d7;
    font-size: 0.75rem;
    font-weight: 400;
}

.scroll-down {
    position: absolute;
    left: 7%;
    bottom: 43px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #bbb3a7;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.scroll-down span {
    position: relative;

    width: 1px;
    height: 35px;

    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-down span::after {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 100%;

    background: var(--gold);

    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .hero-details {
        display: none;
    }
}

@media (max-width: 650px) {
    .navbar {
        min-height: 75px;
        padding: 0 5%;
    }

    .nav-button {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding: 130px 5% 110px;

        background-position: 64% center;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .scroll-down {
        left: 5%;
        bottom: 25px;
    }
}
.featured {
    position: relative;
    padding: 120px 7%;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(214, 173, 96, 0.08),
            transparent 27%
        ),
        #0d0b08;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    margin-bottom: 16px;

    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    font-weight: 600;
    line-height: 1;
}

.section-heading h2 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin: 22px auto 0;

    color: #aaa297;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.9;
}

.dish-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.dish-card {
    background: #14110d;
    border: 1px solid rgba(214, 173, 96, 0.12);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 173, 96, 0.45);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35);
}

.featured-dish {
    transform: translateY(-18px);
}

.featured-dish:hover {
    transform: translateY(-28px);
}

.dish-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.07);
}

.dish-price {
    position: absolute;
    right: 18px;
    bottom: 18px;

    padding: 9px 13px;

    background: rgba(8, 7, 5, 0.88);
    border: 1px solid rgba(214, 173, 96, 0.4);

    color: var(--gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 600;

    backdrop-filter: blur(8px);
}

.dish-content {
    padding: 28px;
}

.dish-category {
    margin-bottom: 10px;

    color: var(--gold);
    font-size: 0.66rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dish-content h3 {
    margin-bottom: 14px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.dish-content > p:not(.dish-category) {
    min-height: 78px;

    color: #aaa297;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.8;
}

.dish-content a {
    display: inline-block;
    margin-top: 22px;

    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.dish-content a:hover {
    color: var(--gold-light);
    transform: translateX(6px);
}

@media (max-width: 950px) {
    .dish-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-dish {
        transform: none;
    }

    .featured-dish:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 650px) {
    .featured {
        padding: 90px 5%;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .dish-image {
        height: 280px;
    }
}
/* =========================
   ABOUT SECTION
========================= */

.about {
    max-width: 1400px;
    margin: auto;
    padding: 130px 7%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;

    background: var(--dark);
}

.about-images {
    position: relative;
    min-height: 600px;
}

.about-main-image {
    position: absolute;
    top: 0;
    left: 0;

    width: 75%;
    height: 500px;

    overflow: hidden;
}

.about-main-image img,
.about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-main-image:hover img,
.about-small-image:hover img {
    transform: scale(1.05);
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 52%;
    height: 290px;

    border: 10px solid var(--dark);
    overflow: hidden;
}

.experience-box {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 5;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--gold);
    color: #151009;

    text-align: center;
}

.experience-box strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    line-height: 1;
}

.experience-box span {
    margin-top: 8px;

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content h2,
.chef-content h2 {
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 0.95;
}

.about-content h2 span,
.chef-content h2 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.about-intro {
    margin-bottom: 18px;

    color: #eee8df;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    line-height: 1.5;
}

.about-text {
    color: #9f978c;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
}

.about-points {
    margin: 32px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-points div {
    display: flex;
    gap: 14px;
}

.about-points div > span {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-points p {
    color: #928a7e;
    font-size: 0.75rem;
    line-height: 1.7;
}

.about-points strong {
    display: block;
    margin-bottom: 4px;

    color: white;
    font-size: 0.88rem;
}


/* =========================
   CHEF SECTION
========================= */

.chef {
    min-height: 700px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #12100c;
}

.chef-content {
    padding: 100px 12%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chef-content blockquote {
    margin: 10px 0 25px;
    padding-left: 25px;

    border-left: 1px solid var(--gold);

    color: #e2d9cb;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.6;
}

.chef-content > p:not(.section-label) {
    max-width: 550px;

    color: #9f978c;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
}

.chef-name {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
}

.chef-name strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.chef-name span {
    margin-top: 4px;

    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.chef-image {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.chef-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 16, 12, 0.45),
            transparent 45%
        );
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.chef-image:hover img {
    transform: scale(1.04);
}

.chef-badge {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 5;

    width: 130px;
    height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(9, 8, 6, 0.85);
    border: 1px solid rgba(214, 173, 96, 0.5);

    backdrop-filter: blur(10px);
}

.chef-badge span {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.chef-badge strong {
    margin-top: 3px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .chef {
        grid-template-columns: 1fr;
    }

    .chef-image {
        min-height: 550px;
    }

}

@media (max-width: 600px) {

    .about {
        padding: 90px 5%;
    }

    .about-images {
        min-height: 470px;
    }

    .about-main-image {
        width: 85%;
        height: 380px;
    }

    .about-small-image {
        width: 55%;
        height: 210px;
    }

    .experience-box {
        left: 15px;
        bottom: 15px;

        width: 120px;
        height: 120px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .chef-content {
        padding: 90px 7%;
    }

    .chef-image {
        min-height: 450px;
    }

}
/* =========================
   MENU SECTION
========================= */

.menu-section {
    padding: 120px 7%;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(214, 173, 96, 0.07),
            transparent 25%
        ),
        #0b0907;
}

.menu-tabs {
    max-width: 850px;
    margin: 0 auto 55px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.menu-tab {
    padding: 13px 25px;

    background: transparent;
    border: 1px solid rgba(214, 173, 96, 0.25);

    color: #bdb4a7;

    font-family: "Poppins", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #16110a;
}

.menu-container {
    max-width: 1050px;
    margin: auto;
}

.menu-category {
    display: none;

    grid-template-columns: 1fr 1fr;
    gap: 0 60px;

    animation: menuFade 0.45s ease;
}

.menu-category.active {
    display: grid;
}

.menu-item {
    padding: 28px 0;

    display: flex;
    justify-content: space-between;
    gap: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item h3 {
    margin-bottom: 8px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.menu-item p {
    color: #91897e;

    font-size: 0.76rem;
    font-weight: 300;
    line-height: 1.6;
}

.menu-item > span {
    flex-shrink: 0;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes menuFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 750px) {

    .menu-section {
        padding: 90px 5%;
    }

    .menu-category.active {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        padding: 11px 16px;
        font-size: 0.65rem;
    }

}
/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    padding: 120px 7%;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(214, 173, 96, 0.07),
            transparent 28%
        ),
        #0e0b08;
}

.gallery-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(214, 173, 96, 0.12);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(5, 4, 3, 0.88) 100%
        );

    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.82);
}

.gallery-overlay {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 3;

    transform: translateY(12px);
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.gallery-overlay span {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-wide {
        grid-column: span 1;
    }

}

@media (max-width: 600px) {

    .gallery-section {
        padding: 90px 5%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-large,
    .gallery-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        transform: none;
    }

}
/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    padding: 120px 7%;
    background: #0a0806;
}

.testimonial-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    min-height: 280px;
    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #14110d;
    border: 1px solid rgba(214, 173, 96, 0.14);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 173, 96, 0.45);
}

.featured-review {
    transform: translateY(-15px);
}

.featured-review:hover {
    transform: translateY(-23px);
}

.stars {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.9rem;
}

.testimonial-card > p {
    margin: 28px 0;

    color: #d2c9bd;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
}

.guest {
    display: flex;
    flex-direction: column;
}

.guest strong {
    font-size: 0.85rem;
}

.guest span {
    margin-top: 5px;

    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================
   RESERVATION
========================= */

.reservation {
    min-height: 750px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    background:
        linear-gradient(
            90deg,
            rgba(6, 5, 3, 0.96),
            rgba(6, 5, 3, 0.82)
        ),
        url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;
    background-position: center;
}

.reservation-info {
    padding: 110px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-info h2 {
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.95;
}

.reservation-info h2 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.reservation-info > p:not(.section-label) {
    max-width: 540px;

    color: #aaa195;
    font-size: 0.9rem;
    line-height: 1.9;
}

.reservation-details {
    margin-top: 40px;

    display: grid;
    gap: 22px;
}

.reservation-details div {
    padding-left: 18px;
    border-left: 1px solid var(--gold);
}

.reservation-details small {
    display: block;
    margin-bottom: 4px;

    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reservation-details strong {
    font-size: 0.82rem;
    font-weight: 400;
}

.reservation-form {
    margin: 70px 8%;
    padding: 45px;

    align-self: center;

    background: rgba(13, 11, 8, 0.92);
    border: 1px solid rgba(214, 173, 96, 0.25);

    backdrop-filter: blur(14px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-group {
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;

    color: #d8d0c5;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 16px;

    background: #0b0907;
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;
    outline: none;

    font-family: "Poppins", sans-serif;

    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--gold);
}

.input-group textarea {
    resize: vertical;
}

.reservation-button {
    width: 100%;
    min-height: 54px;

    border: none;

    background: var(--gold);
    color: #16110a;

    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.reservation-button:hover {
    transform: translateY(-3px);
    background: var(--gold-light);
}

.form-message {
    margin-top: 15px;

    color: var(--gold-light);
    text-align: center;
    font-size: 0.78rem;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .featured-review {
        transform: none;
    }

    .featured-review:hover {
        transform: translateY(-8px);
    }

    .reservation {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .testimonials {
        padding: 90px 5%;
    }

    .reservation-info {
        padding: 90px 7%;
    }

    .reservation-form {
        margin: 0 5% 70px;
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
/* =========================
   CONTACT
========================= */

.contact-section {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #0b0907;
    border-top: 1px solid rgba(214, 173, 96, 0.12);
}

.contact-left {
    padding: 110px 12%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.95;
}

.contact-left h2 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.contact-left > p:not(.section-label) {
    max-width: 560px;

    color: #9f978c;
    font-size: 0.9rem;
    line-height: 1.9;
}

.contact-details {
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-details div {
    padding-left: 16px;
    border-left: 1px solid rgba(214, 173, 96, 0.6);
}

.contact-details small {
    display: block;
    margin-bottom: 7px;

    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-details strong {
    color: #e6dfd5;
    font-size: 0.82rem;
    font-weight: 400;
}

.contact-buttons {
    margin-top: 38px;

    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* MAP SIDE */

.contact-map {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            rgba(7, 6, 4, 0.45),
            rgba(7, 6, 4, 0.72)
        ),
        url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1500&q=85");

    background-size: cover;
    background-position: center;
}

.map-card {
    width: min(80%, 390px);
    padding: 42px;

    background: rgba(10, 8, 6, 0.88);
    border: 1px solid rgba(214, 173, 96, 0.35);

    text-align: center;
    backdrop-filter: blur(14px);
}

.map-pin {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold);
    color: #16110a;

    font-size: 1.2rem;
}

.map-card p {
    color: var(--gold);

    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.map-card strong {
    display: block;
    margin: 8px 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
}

.map-card a {
    color: var(--gold-light);

    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 7% 25px;

    background: #070604;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top {
    max-width: 1250px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.footer-brand {
    max-width: 420px;
}

.footer-brand p {
    margin-top: 18px;

    color: #8f877d;
    font-size: 0.82rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 90px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    margin-bottom: 8px;

    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links a {
    color: #aaa297;
    font-size: 0.78rem;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1250px;
    margin: 55px auto 0;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    color: #716a62;
    font-size: 0.7rem;
}

.studio-credit strong {
    color: var(--gold);
    font-weight: 500;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 500px;
    }

    .footer-top {
        flex-direction: column;
    }

}

@media (max-width: 600px) {

    .contact-left {
        padding: 90px 7%;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons a {
        width: 100%;
    }

    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-links {
        gap: 50px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
    }

}
/* =========================
   SCROLL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}