/* =========================================================
   DINE & QUENCH
========================================================= */

.dq-container {
    width: min(1380px, 90%);
    margin: auto;
}

.dq-eyebrow,
.dq-eyebrow-dark {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dq-eyebrow {
    color: #d3af58;
}

.dq-eyebrow-dark {
    color: #b08c3a;
}


/* =========================================================
   HERO
========================================================= */

.dq-hero {
    position: relative;
    height: 78vh;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
}

.dq-hero-image,
.dq-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dq-hero-image img {
    object-fit: cover;
    animation: dqHeroZoom 12s ease forwards;
}

@keyframes dqHeroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.dq-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,38,39,.9),
            rgba(7,38,39,.62) 42%,
            rgba(7,38,39,.12) 80%
        );
}

.dq-hero-content {
    position: relative;
    z-index: 2;

    width: min(1380px, 90%);
    height: 100%;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dq-hero-content h1 {
    margin: 18px 0;

    font-size: clamp(50px, 6vw, 88px);
    line-height: .96;
    letter-spacing: -3px;
}

.dq-hero-content h1 em {
    color: #d4ad57;
    font-style: normal;
}

.dq-hero-content p {
    max-width: 600px;

    margin-bottom: 32px;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255,255,255,.85);
}

.dq-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.dq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 25px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: .3s ease;
}

.dq-btn-gold {
    background: #c9a24d;
    color: #0c2f30;
}

.dq-btn-gold:hover {
    background: #fff;
}

.dq-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.65);
}

.dq-btn-outline:hover {
    color: #0c2f30;
    background: #fff;
}

.dq-hero-bottom {
    position: absolute;
    z-index: 3;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-size: 9px;
    letter-spacing: 2px;
}

.dq-hero-bottom i {
    width: 1px;
    height: 40px;
    background: #d3af58;
}


/* =========================================================
   INTRO
========================================================= */

.dq-intro {
    padding: 100px 0;

    background: #f6f2e9;
}

.dq-intro .dq-container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: end;
}

.dq-intro h2 {
    margin: 15px 0 0;

    color: #0c2f30;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
}

.dq-intro h2 em {
    color: #b08c3a;
    font-style: normal;
}

.dq-intro-right p {
    margin: 0;

    color: #536264;

    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   RESTAURANTS
========================================================= */

.dq-restaurants {
    padding: 110px 0;
    background: #fff;
}

.dq-section-heading {
    display: grid;
    grid-template-columns: 1fr .6fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 55px;
}

.dq-section-heading h2 {
    margin: 14px 0 0;

    color: #0c2f30;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
}

.dq-section-heading h2 em {
    color: #b08c3a;
    font-style: normal;
}

.dq-section-heading > p {
    margin: 0;

    color: #667273;

    line-height: 1.8;
}

.dq-restaurant-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.dq-restaurant-card {
    position: relative;

    height: 620px;

    overflow: hidden;

    color: #fff;
    text-decoration: none;

    background: #0c2f30;
}

.dq-restaurant-image,
.dq-restaurant-image img {
    width: 100%;
    height: 100%;
}

.dq-restaurant-image img {
    display: block;
    object-fit: cover;

    transition: transform .8s ease;
}

.dq-restaurant-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,30,31,.95),
            rgba(5,30,31,.15) 65%
        );
}

.dq-restaurant-content {
    position: absolute;
    inset: 0;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dq-restaurant-content > span {
    margin-bottom: 10px;

    color: #d2ad5c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.dq-restaurant-content h3 {
    margin: 0 0 15px;

    font-size: 36px;
    line-height: 1;
}

.dq-restaurant-content p {
    max-width: 360px;

    margin: 0 0 22px;

    color: rgba(255,255,255,.78);

    font-size: 13px;
    line-height: 1.7;
}

.dq-explore {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dq-explore b {
    color: #d2ad5c;

    font-size: 19px;

    transition: .3s ease;
}

.dq-restaurant-card:hover img {
    transform: scale(1.08);
}

.dq-restaurant-card:hover .dq-explore b {
    transform: translateX(7px);
}


/* =========================================================
   FOOD SLIDER
========================================================= */

.dq-slider-section {
    padding: 110px 0 0;

    background: #0c2f30;
    color: #fff;
}

.dq-slider-heading {
    width: min(1380px, 90%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr .6fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 50px;
}

.dq-slider-heading h2 {
    margin: 14px 0 0;

    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
}

.dq-slider-heading h2 em {
    color: #d1ab55;
    font-style: normal;
}

.dq-slider-heading p {
    margin: 0;

    color: rgba(255,255,255,.68);

    line-height: 1.8;
}

.dq-slider {
    position: relative;

    width: 100%;
    height: min(70vh, 760px);

    overflow: hidden;
}

.dq-slides {
    width: 100%;
    height: 100%;
}

.dq-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity .8s ease;

    pointer-events: none;
}

.dq-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.dq-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dq-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            transparent 55%
        );
}

.dq-slide-caption {
    position: absolute;
    z-index: 2;

    left: 7%;
    bottom: 80px;
}

.dq-slide-caption span {
    color: #d2ad5c;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.dq-slide-caption h3 {
    margin: 10px 0 0;

    font-size: clamp(30px, 4vw, 52px);
}

.dq-slider-prev,
.dq-slider-next {
    position: absolute;
    z-index: 5;

    top: 50%;

    transform: translateY(-50%);

    width: 58px;
    height: 58px;

    border: 1px solid rgba(255,255,255,.5);

    background: rgba(0,0,0,.25);

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    transition: .3s ease;
}

.dq-slider-prev {
    left: 30px;
}

.dq-slider-next {
    right: 30px;
}

.dq-slider-prev:hover,
.dq-slider-next:hover {
    background: #c9a24d;
    color: #0c2f30;
}

.dq-slider-dots {
    position: absolute;
    z-index: 5;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.dq-slider-dot {
    width: 35px;
    height: 2px;

    border: 0;

    background: rgba(255,255,255,.4);

    cursor: pointer;
}

.dq-slider-dot.active {
    background: #d2ad5c;
}


/* =========================================================
   BAR / LOUNGE
========================================================= */

.dq-bar-section {
    padding: 120px 0;

    background: #f6f2e9;
}

.dq-bar-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.dq-bar-image {
    height: 620px;
    overflow: hidden;
}

.dq-bar-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.dq-bar-image:hover img {
    transform: scale(1.04);
}

.dq-bar-content h2 {
    margin: 15px 0 20px;

    color: #0c2f30;

    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
}

.dq-bar-content h2 em {
    color: #b08c3a;
    font-style: normal;
}

.dq-bar-content > p {
    max-width: 550px;

    color: #596667;

    line-height: 1.8;
}

.dq-bar-items {
    margin-top: 35px;
}

.dq-bar-items > div {
    padding: 17px 0;

    border-top: 1px solid rgba(12,47,48,.15);

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dq-bar-items strong {
    color: #0c2f30;
    font-size: 14px;
}

.dq-bar-items span {
    color: #747d7d;
    font-size: 12px;
}

.dq-text-link {
    display: inline-block;

    margin-top: 25px;

    color: #0c2f30;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    border-bottom: 1px solid #b08c3a;

    padding-bottom: 5px;
}


/* =========================================================
   VIDEO
========================================================= */

.dq-video-section {
    background: #0c2f30;
}

.dq-video {
    position: relative;

    height: 720px;

    overflow: hidden;
}

.dq-video video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dq-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,30,31,.85),
            rgba(5,30,31,.25)
        );
}

.dq-video-content {
    position: absolute;
    z-index: 2;

    left: 8%;
    top: 50%;

    transform: translateY(-50%);

    color: #fff;
}

.dq-video-content h2 {
    margin: 15px 0 25px;

    font-size: clamp(45px, 5vw, 72px);
    line-height: 1;
}

.dq-video-content h2 em {
    color: #d2ad5c;
    font-style: normal;
}

.dq-video-content p {
    color: rgba(255,255,255,.75);
}

.dq-play-button {
    width: 70px;
    height: 70px;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    background: rgba(255,255,255,.1);

    color: #fff;

    cursor: pointer;

    transition: .3s ease;
}

.dq-play-button:hover {
    background: #c9a24d;
    color: #0c2f30;
    transform: scale(1.08);
}


/* =========================================================
   RESERVATION
========================================================= */

.dq-reserve {
    padding: 120px 0;

    background: #f6f2e9;
}

.dq-reserve-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

    align-items: center;
}

.dq-reserve-content h2 {
    margin: 15px 0 20px;

    color: #0c2f30;

    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
}

.dq-reserve-content h2 em {
    color: #b08c3a;
    font-style: normal;
}

.dq-reserve-content > p {
    color: #5f6b6c;
    line-height: 1.8;
}

.dq-reserve-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}

.dq-reserve-points span {
    color: #0c2f30;

    font-size: 12px;
}

.dq-reserve-form {
    padding: 45px;

    background: #fff;

    box-shadow: 0 25px 70px rgba(12,47,48,.09);
}

.dq-form-title span {
    color: #b08c3a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.dq-form-title h3 {
    margin: 8px 0 30px;

    color: #0c2f30;

    font-size: 28px;
}

.dq-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-bottom: 14px;
}

.dq-reserve-form input,
.dq-reserve-form select,
.dq-reserve-form textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px;

    border: 1px solid #ddd;

    background: #fff;

    color: #333;

    font-family: inherit;

    outline: none;
}

.dq-reserve-form input:focus,
.dq-reserve-form select:focus,
.dq-reserve-form textarea:focus {
    border-color: #b08c3a;
}

.dq-reserve-form textarea {
    min-height: 130px;

    resize: vertical;

    margin-bottom: 14px;
}

.dq-submit {
    width: 100%;

    padding: 16px;

    border: 0;

    background: #0c2f30;

    color: #fff;

    cursor: pointer;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: .3s ease;
}

.dq-submit span {
    margin-left: 10px;

    color: #d2ad5c;
}

.dq-submit:hover {
    background: #b08c3a;
    color: #0c2f30;
}


/* =========================================================
   FINAL CTA
========================================================= */

.dq-final {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(5,30,31,.78),
            rgba(5,30,31,.78)
        ),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=90")
        center / cover;

    color: #fff;
}

.dq-final h2 {
    margin: 15px 0 30px;

    font-size: clamp(45px, 5vw, 70px);
    line-height: .98;
}

.dq-final h2 em {
    color: #d2ad5c;
    font-style: normal;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px) {

    .dq-intro .dq-container,
    .dq-section-heading,
    .dq-slider-heading,
    .dq-bar-grid,
    .dq-reserve-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .dq-restaurant-grid {
        grid-template-columns: 1fr;
    }

    .dq-restaurant-card {
        height: 500px;
    }

    .dq-slider {
        height: 600px;
    }

    .dq-bar-image {
        height: 450px;
    }

    .dq-video {
        height: 600px;
    }
}


@media(max-width: 600px) {

    .dq-hero {
        min-height: 650px;
    }

    .dq-hero-content h1 {
        font-size: 47px;
    }

    .dq-hero-buttons {
        flex-direction: column;
    }

    .dq-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .dq-intro,
    .dq-restaurants,
    .dq-bar-section,
    .dq-reserve {
        padding: 75px 0;
    }

    .dq-restaurant-card {
        height: 430px;
    }

    .dq-slider {
        height: 500px;
    }

    .dq-slider-prev,
    .dq-slider-next {
        width: 45px;
        height: 45px;
    }

    .dq-slider-prev {
        left: 15px;
    }

    .dq-slider-next {
        right: 15px;
    }

    .dq-slider-heading {
        width: 88%;
    }

    .dq-slide-caption {
        left: 7%;
        bottom: 60px;
    }

    .dq-bar-image {
        height: 380px;
    }

    .dq-video {
        height: 500px;
    }

    .dq-video-content {
        left: 7%;
        right: 7%;
    }

    .dq-reserve-points {
        grid-template-columns: 1fr;
    }

    .dq-reserve-form {
        padding: 25px 20px;
    }

    .dq-form-row {
        grid-template-columns: 1fr;
    }
}