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

.services-hero {

    position: relative;

    min-height: 85vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--black);
}

/* ==================================================
   BACKGROUND IMAGE
================================================== */

.services-hero__bg {

    position: absolute;

    inset: 0;

    background-image:
        url("https://res.cloudinary.com/dtbkbxvtl/image/upload/v1781174233/private_tzqyce.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.1);

    z-index: 1;

    will-change: transform;
}

/* ==================================================
   OVERLAY
================================================== */

.services-hero__overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.65)
        );

    z-index: 2;
}

/* ==================================================
   GRAIN TEXTURE
================================================== */

.services-hero__grain {

    position: absolute;

    inset: -100%;

    opacity: .05;

    z-index: 3;

    background-image:
        radial-gradient(circle, #ffffff 1px, transparent 1px);

    background-size: 4px 4px;

    animation:
        grainMove 15s linear infinite;
}

@keyframes grainMove {

    0% {
        transform: translate(0,0);
    }

    25% {
        transform: translate(5%,10%);
    }

    50% {
        transform: translate(-10%,5%);
    }

    75% {
        transform: translate(5%,-10%);
    }

    100% {
        transform: translate(0,0);
    }
}

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

.services-hero__content {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1100px;

    text-align: center;

    padding: 0 5%;
}

/* ==================================================
   EYEBROW
================================================== */

.services-hero__eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 30px;

    opacity: 0;

    animation:
        fadeUp .8s ease forwards;

    animation-delay: .2s;
}

.eyebrow-line {

    width: 60px;
    height: 1px;

    background: var(--gold);
}

.services-hero .section-eyebrow {

    color: var(--gold);

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: .85rem;

    font-weight: 600;
}

/* ==================================================
   TITLE
================================================== */

.services-hero__title {

    margin-bottom: 30px;

    line-height: 1;
}

.s-line {

    display: block;

    opacity: 0;

    transform: translateY(60px);
}

.s-line--1 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(3rem,7vw,6rem);

    color: var(--white);

    animation:
        revealTitle .9s ease forwards;

    animation-delay: .5s;
}

.s-line--2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(4rem,8vw,7rem);

    font-weight: 700;

    animation:
        revealTitle .9s ease forwards;

    animation-delay: .8s;
}

.s-line--2 em {

    color: var(--gold);

    font-style: normal;

    position: relative;
}

.s-line--2 em::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 10px;

    width: 100%;
    height: 8px;

    background:
        rgba(255,215,0,.15);

    z-index: -1;
}

/* ==================================================
   DESCRIPTION
================================================== */

.services-hero__desc {

    max-width: 700px;

    margin: 0 auto 45px;

    color: rgba(255,255,255,.85);

    font-size: 1.1rem;

    line-height: 1.9;

    opacity: 0;

    animation:
        fadeUp .8s ease forwards;

    animation-delay: 1.1s;
}

/* ==================================================
   ACTIONS
================================================== */

.services-hero__actions {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    opacity: 0;

    animation:
        fadeUp .8s ease forwards;

    animation-delay: 1.4s;
}

/* ==================================================
   SCROLL INDICATOR
================================================== */

.scroll-cue {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    width: 28px;
    height: 48px;

    border:
        2px solid rgba(255,255,255,.4);

    border-radius: 20px;

    z-index: 5;
}

.scroll-cue__wheel {

    position: absolute;

    top: 8px;
    left: 50%;

    width: 4px;
    height: 10px;

    background: var(--gold);

    border-radius: 10px;

    transform: translateX(-50%);

    animation:
        scrollWheel 2s infinite;
}

@keyframes scrollWheel {

    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes revealTitle {

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(40px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

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

@media (max-width: 768px) {

    .services-hero__content {

        padding-top: 80px;
    }

    .services-hero__actions {

        flex-direction: column;

        width: 100%;
    }

    .btn-primary,
    .btn-secondary {

        width: 100%;
        max-width: 320px;
    }

    .eyebrow-line {

        width: 30px;
    }

    .services-hero__desc {

        font-size: 1rem;
    }
}

.gold-glow {

    text-shadow:
        0 0 10px rgba(255,215,0,.4),
        0 0 20px rgba(255,215,0,.3),
        0 0 35px rgba(255,215,0,.2);
}

/* ================================================
   SERVICE NAVIGATION
================================================ */

.service-nav {

    position: relative;

    padding: 80px 5%;

    background: var(--black-soft);

    overflow: hidden;
}

/* ================================================
   HEADER
================================================ */

.service-nav__header {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 40px;
}

.service-nav .section-eyebrow {

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.service-nav .section-title {

    color: var(--white);

    font-size: clamp(2.5rem, 5vw, 4rem);

    font-family: 'Cormorant Garamond', serif;

    line-height: 1.1;
}

/* ================================================
   GRID
================================================ */

.service-nav__grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    max-width: 1400px;

    margin: 0 auto;
}

/* ================================================
   CARD
================================================ */

.service-nav__card {

    position: relative;

    display: flex;

    

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    padding: 30px;

    gap: 20px;

    padding: 30px;

    min-height: 280px;

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(182, 181, 180, 0.322);

    border-radius: var(--radius);

    backdrop-filter: blur(12px);

    overflow: hidden;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;

    text-decoration: none;

     overflow: hidden;
}

.service-nav__card:nth-child(1) {
    background-image:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("https://res.cloudinary.com/dtbkbxvtl/image/upload/v1781174145/image-3_zijwsn.jpg");

    background-size: cover;
    background-position: center;
}

.service-nav__card:nth-child(2) {
    background-image:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("https://res.cloudinary.com/dtbkbxvtl/image/upload/v1781174202/wedding_yoqwdj.jpg");

    background-size: cover;
    background-position: center;
}

.service-nav__card:nth-child(3) {
    background-image:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("https://res.cloudinary.com/dtbkbxvtl/image/upload/v1781174233/private_tzqyce.jpg");

    background-size: cover;
    background-position: center;
}

.service-nav__card:nth-child(4) {
    background-image:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("https://res.cloudinary.com/dtbkbxvtl/image/upload/v1781174273/social_mkn0zg.jpg");

    background-size: cover;
    background-position: center;
}

/* Luxury gold sweep */

.service-nav__card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: inherit;

    background-size: cover;

    background-position: center;

    transform: scale(1);

    transition: 1s ease;

    z-index: 0;
}

.service-nav__card:hover::before {

    left: 120%;
    transform: scale(1.08);
}

/* Gold corner accent */

.service-nav__card::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    border: 1px solid transparent;

    transition: .4s ease;
}

.service-nav__card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,215,0,.25);

    box-shadow:
        0 15px 40px rgba(0,0,0,.35),
        0 0 20px rgba(255,215,0,.08);
}

.service-nav__card:hover::after {

    border-color:
        rgba(255,215,0,.2);
}

.service-nav__card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92),
            rgba(0,0,0,.55),
            rgba(0,0,0,.15)
        );

    z-index: 1;

    border-radius: inherit;
}

/* ================================================
   ICON
================================================ */

.service-nav__card-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,215,0,.08);

    border:
        1px solid rgba(255,215,0,.15);

    transition:
        .45s ease;
}

.service-nav__card-icon,
.service-nav__card-body,
.service-nav__card-arrow {

    position: relative;

    z-index: 2;
}

.service-nav__card-icon svg {

    width: 30px;
    height: 30px;

    color: var(--gold);

    transition:
        .45s ease;
}

.service-nav__card:hover
.service-nav__card-icon {

    transform:
        scale(1.08)
        rotate(8deg);

    background:
        rgba(255,215,0,.15);

    box-shadow:
        0 0 20px rgba(255,215,0,.15);
}

/* ================================================
   BODY
================================================ */

.service-nav__card-body {

    flex: 1;
}

.service-nav__card-body h3 {

    color: var(--white);

    font-size: 1.3rem;

    margin-bottom: 8px;

    transition: .3s ease;
}

.service-nav__card-body span {

    color: var(--gray);

    line-height: 1.6;

    font-size: .95rem;
}

.service-nav__card:hover
.service-nav__card-body h3 {

    color: var(--gold);
}

/* ================================================
   ARROW
================================================ */

.service-nav__card-arrow {

    display: flex;

    align-items: center;
    justify-content: center;
}

.service-nav__card-arrow svg {

    width: 22px;
    height: 22px;

    color: var(--gray);

    transition: .4s ease;
}

.service-nav__card:hover
.service-nav__card-arrow svg {

    color: var(--gold);

    transform:
        translateX(8px);
}

/* ================================================
   REVEAL ANIMATION
================================================ */

.fade-up {

    opacity: 0;

    transform:
        translateY(60px);

    transition:
        opacity .9s ease,
        transform .9s ease;

    transition-delay:
        var(--delay, 0s);
}

.fade-up.show {

    opacity: 1;

    transform:
        translateY(0);
}

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

@media (max-width: 768px) {

    .service-nav {

        padding: 60px 5%;
    }

    .service-nav__header {

        margin-bottom: 60px;
    }

    .service-nav__card {

        min-height: auto;

        padding: 24px;
    }

    .service-nav__card-icon {

        width: 60px;
        height: 60px;

        min-width: 60px;
    }

    .service-nav__card-icon svg {

        width: 26px;
        height: 26px;
    }
}

/* ==================================================
   SHOWCASE SECTIONS
================================================== */

.showcase {

    position: relative;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;

    padding: 90px 8%;

    background: var(--black);

    overflow: hidden;
}

.showcase:nth-child(even) {

    background: var(--black-soft);
}

.showcase--reverse {

    grid-template-columns: 1fr 1fr;
}

/* ==================================================
   IMAGE COLUMN
================================================== */

.showcase__image-col {

    position: relative;
}

.showcase__image-wrap {

    position: relative;

    height: 700px;

    overflow: hidden;



    border-radius: 24px;

    box-shadow: var(--shadow);
    
}

.showcase__image {

    position: absolute;

    inset: 0;

    background-size:cover;
    background-position: center 47%;

    transition: transform 1.5s ease;

    will-change: transform;


}

.showcase:hover .showcase__image {

    transform: scale(1.08);
}



/* ==================================================
   CONTENT COLUMN
================================================== */

.showcase__content-col {

    position: relative;

    display: flex;

    align-items: center;
}

.showcase__content {

    position: relative;

    max-width: 600px;
}

/* ==================================================
   HUGE NUMBER
================================================== */

.showcase__number {

    position: absolute;

    top: -160px;
    left: -80px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 12rem;

    font-weight: 700;

    color: rgba(255,215,0,.08);

    pointer-events: none;

    user-select: none;

    
}

/* ==================================================
   EYEBROW
================================================== */

.showcase .section-eyebrow {

    color: var(--gold);

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

/* ==================================================
   TITLE
================================================== */

.showcase__title {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(3rem,5vw,5rem);

    line-height: 1;

    margin-bottom: 25px;

    color: var(--white);
}

.showcase__title em {

    color: var(--gold);

    font-style: normal;
}

/* ==================================================
   DIVIDER
================================================== */

.showcase__divider {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 35px;
}

.showcase__divider span:first-child,
.showcase__divider span:last-child {

    width: 80px;
    height: 1px;

    background:
        rgba(255,215,0,.4);
}

.showcase__divider-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--gold);
}



/* ==================================================
   DESCRIPTION
================================================== */

.showcase__desc {

    color: var(--gray);

    line-height: 1.9;

    margin-bottom: 35px;

    font-size: 1.05rem;
}

/* ==================================================
   FEATURE LIST
================================================== */

.showcase__list {

    list-style: none;

    display: grid;

    gap: 18px;

    margin-bottom: 40px;
}

.showcase__list li {

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--white);

    font-weight: 500;
}

.showcase__list svg {

    color: var(--gold);

    width: 18px;
    height: 18px;

    flex-shrink: 0;
}

/* ==================================================
   BUTTON
================================================== */

.showcase .btn-primary {

    display: inline-flex;

    align-items: center;

    gap: 10px;
}

.showcase .btn-primary svg {

    transition: .35s ease;
}

.showcase .btn-primary:hover svg {

    transform: translateX(6px);
}

/* ==================================================
   SCROLL REVEAL
================================================== */

.fade-up {

    opacity: 0;

    transform:
        translateY(50px);

    transition:
        opacity .9s ease,
        transform .9s ease;

    transition-delay:
        var(--delay, 0s);
}

.fade-up.show {

    opacity: 1;

    transform:
        translateY(0);
}

/* ==================================================
   ACTIVE SHOWCASE
================================================== */

.showcase.active .showcase__image {

    transform: scale(1.04);
}

.showcase.active .showcase__number {

    color:
        rgba(255,215,0,.15);
}

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

@media (max-width: 1100px) {

    .showcase,
    .showcase--reverse {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .showcase__image-wrap {

        height: 550px;
    }

    .showcase__content {

        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .showcase {

        padding: 70px 5%;
    }

    .showcase__image-wrap {

        height: 420px;
    }

    .showcase__number {

        font-size: 7rem;

        top: -50px;
        left: -10px;
    }

    .showcase__title {

        font-size: 3rem;
    }

    .showcase__divider span:first-child,
    .showcase__divider span:last-child {

        width: 50px;
    }
}

/* ==========================================
   INCLUDED SECTION
========================================== */

.included {

    padding: 80px 6%;

    background: var(--black-soft);

    position: relative;
}

/* ==========================================
   HEADER
========================================== */

.included__header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}

.included__header .section-eyebrow {

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.included__header .section-title {

    color: var(--white);

    font-size: clamp(2.2rem, 5vw, 3.8rem);

    font-family: "Cormorant Garamond", serif;

    margin-bottom: 25px;
}

/* ==========================================
   ORNAMENT
========================================== */

.ornament {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}

.ornament__line {

    width: 70px;

    height: 1px;

    background: rgba(255,215,0,.35);
}

.ornament__diamond {

    width: 10px;
    height: 10px;

    background: var(--gold);

    transform: rotate(45deg);
}

/* ==========================================
   GRID
========================================== */

.included__grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* ==========================================
   ITEM
========================================== */

.included__item {

    background: rgba(255,255,255,.02);

    border: 1px solid rgba(255,215,0,.08);

    border-radius: var(--radius);

    padding: 35px 20px;

    text-align: center;

    transition: .35s ease;
}

.included__item:hover {

    transform: translateY(-6px);

    border-color: rgba(255,215,0,.3);

    background: rgba(255,215,0,.04);
}

.included__item h3 {

    color: var(--white);

    font-size: 1.15rem;

    font-weight: 600;

    margin-bottom: 12px;
}

.included__item p {

    color: var(--gray);

    font-size: 0.95rem;

    line-height: 1.7;

    margin: 0;
}

/* ==========================================
   ICON
========================================== */

.included__item svg {

    width: 32px;
    height: 32px;

    color: var(--gold);

    margin-bottom: 18px;

    stroke-width: 1.8;
}

/* ==========================================
   TEXT
========================================== */

.included__item span {

    display: block;

    color: var(--white);

    font-weight: 500;

    line-height: 1.5;
}

/* ==========================================
   REVEAL
========================================== */

.included .fade-up {

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease;

    transition-delay: var(--delay);
}

.included .fade-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .included__grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .included {

        padding: 60px 5%;
    }

    .included__grid {

        grid-template-columns: 1fr;
    }

    .included__item {

        padding: 28px 18px;
    }
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process {

    padding: 80px 6%;

    background: var(--black);

    position: relative;
}

/* ==========================================
   HEADER
========================================== */

.process__header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}

/* ==========================================
   TIMELINE
========================================== */

.process__timeline {

    position: relative;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;
}



/* ==========================================
   STEP
========================================== */

.process-step {

    position: relative;

    text-align: center;

    z-index: 1;
}

/* ==========================================
   NODE
========================================== */

.process-step__node {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,215,0,.08);

    border: 1px solid rgba(255,215,0,.25);

    transition: all .3s ease;
}

.process-step:hover .process-step__node {
    background: rgba(255,215,0,.12);

    transform: translateY(-3px);

}

.process-step__node svg {

    width: 28px;
    height: 28px;

    color: var(--gold);
}

/* ==========================================
   CARD
========================================== */

.process-step__body {

    text-align: center;

    background: rgba(255,255,255,.02);

    border: 1px solid rgba(255,215,0,.08);

    border-radius: var(--radius);

    padding: 35px 25px;

    height: 100%;
}

.process-step:hover .process-step__body {

    border-color: rgba(255,215,0,.25);

    background: rgba(255,215,0,.03);
}

/* ==========================================
   NUMBER
========================================== */

.process-step__num {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: .85rem;

    font-weight: 600;

    letter-spacing: 2px;
}

/* ==========================================
   TITLE
========================================== */

.process-step h3 {

    color: var(--white);

    margin-bottom: 12px;

    font-size: 1.15rem;
}

/* ==========================================
   DESCRIPTION
========================================== */

.process-step p {

    color: var(--gray);

    line-height: 1.7;

    font-size: .95rem;

    margin: 0;
}

/* ==========================================
   REVEAL
========================================== */

.process .fade-up {

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease;

    transition-delay: var(--delay);
}

.process .fade-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .process__timeline {

        grid-template-columns: repeat(2, 1fr);
    }

    .process__track {

        display: none;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .process {

        padding: 60px 5%;
    }

    .process__timeline {

        grid-template-columns: 1fr;
    }

    .process-step__node {

        width: 72px;
        height: 72px;
    }
}

/* ==========================================
   MENU PREVIEW
========================================== */

.menu-preview {

    padding: 80px 6%;

    background: var(--black-soft);
}

/* ==========================================
   HEADER
========================================== */

.menu-preview__header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}

/* ==========================================
   GRID
========================================== */

.menu-preview__grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
}

/* ==========================================
   CARD
========================================== */

.menu-card {

    position: relative;

    min-height: 496px;

    border-radius: 20px;

    overflow: hidden;

    cursor: pointer;

    background: var(--black);

    border:
        1px solid rgba(182, 181, 180, 0.322);

    transition: .4s ease;
}

.menu-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255,215,0,.25);
}

/* ==========================================
   IMAGE
========================================== */

.menu-card__img {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    transition: transform .8s ease;
}

.menu-card:hover .menu-card__img {

    transform: scale(1.08);
}

/* ==========================================
   OVERLAY
========================================== */

.menu-card__overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.75) 40%,
            rgba(0,0,0,.2)
        );
}

/* ==========================================
   TAG
========================================== */

.menu-card__tag {

    align-self: flex-start;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,215,0,.12);

    border: 1px solid rgba(255,215,0,.25);

    color: var(--gold);

    font-size: .8rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

/* ==========================================
   TITLE
========================================== */

.menu-card h3 {

    color: var(--white);

    font-size: 1.6rem;

    margin-bottom: 18px;

    font-family: "Cormorant Garamond", serif;
}

/* ==========================================
   MENU ITEMS
========================================== */

.menu-card ul {

    list-style: none;

    padding: 0;

    margin: 0 0 25px;
}

.menu-card li {

    color: rgba(255,255,255,.85);

    margin-bottom: 10px;

    padding-left: 20px;

    position: relative;

    line-height: 1.6;
}

.menu-card li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: var(--gold);
}

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

.menu-card__cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.menu-card__cta:hover {

    gap: 16px;
}

/* ==========================================
   REVEAL
========================================== */

.menu-preview .fade-up {

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease;

    transition-delay: var(--delay);
}

.menu-preview .fade-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1200px) {

    .menu-preview__grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .menu-preview {

        padding: 60px 5%;
    }

    .menu-preview__grid {

        grid-template-columns: 1fr;
    }

    .menu-card {

        min-height: 500px;
    }
}

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

.gallery-preview {

    padding: 80px 6%;

    background: var(--black);
}

/* ==========================================
   HEADER
========================================== */

.gallery-preview__header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}

/* ==========================================
   MASONRY GRID
========================================== */

.gallery-preview__grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 220px;

    gap: 20px;
}

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

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background-size: cover;

    background-position: center;

    border: 1px rgba(107, 97, 8, 0.664);

    cursor: pointer;

    transition: .4s ease;
}

/* Tall Image */

.gallery-item--tall {

    grid-row: span 2;
}

/* Wide Image */

.gallery-item--wide {

    grid-column: span 2;
}

/* ==========================================
   OVERLAY
========================================== */

.gallery-item::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.7),
            rgba(0,0,0,.15)
        );

    transition: .4s ease;

    
}

/* ==========================================
   GOLD ACCENT
========================================== */

.gallery-item::after {

    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(255, 217, 0, 0.048);

    border-radius: calc(var(--radius) - 4px);

    opacity: 0;

    transition: .35s ease;
}

/* ==========================================
   HOVER
========================================== */

.gallery-item:hover {

    transform: translateY(-6px);
}

.gallery-item:hover::after {

    opacity: 1;
}

.gallery-item:hover::before {

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.1)
        );
}

/* ==========================================
   OPTIONAL ZOOM
========================================== */

.gallery-item {

    background-size: 100%;
}

.gallery-item:hover {

    background-size: 108%;
}

.gallery-item__content {

    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 2;
}

.gallery-item__content span {

    color: var(--white);

    font-weight: 600;

    font-size: 1rem;

    letter-spacing: 1px;
}

/* ==========================================
   REVEAL
========================================== */

.gallery-preview .fade-up {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .6s ease,
        transform .6s ease;

    transition-delay: var(--delay);
}

.gallery-preview .fade-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .gallery-preview__grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--wide {

        grid-column: span 2;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .gallery-preview {

        padding: 60px 5%;
    }

    .gallery-preview__grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;
    }

    .gallery-item--wide,
    .gallery-item--tall {

        grid-column: span 1;
        grid-row: span 1;
    }
}

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

.testimonials {

    padding: 80px 6%;

    background: var(--black-soft);

    position: relative;
}

/* ==========================================
   HEADER
========================================== */

.testimonials__header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;
}

/* ==========================================
   TRACK
========================================== */

.testimonial-track {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-bottom: 50px;
}

/* ==========================================
   CARD
========================================== */

.testimonial-card {

    position: relative;

    background: rgba(255,255,255,.02);

    border: 1px solid rgba(255,215,0,.08);

    border-radius: 20px;

    padding: 40px 30px;

    transition: .35s ease;
}

.testimonial-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255,215,0,.25);

    background: rgba(255,215,0,.03);
}

/* ==========================================
   QUOTE
========================================== */

.testimonial-card__quote {

    font-size: 5rem;

    line-height: 1;

    color: rgba(255,215,0,.25);

    font-family: serif;

    margin-bottom: 10px;
}

/* ==========================================
   TEXT
========================================== */

.testimonial-card p {

    color: var(--gray);

    line-height: 1.9;

    margin-bottom: 30px;

    font-size: .95rem;
}

/* ==========================================
   AUTHOR
========================================== */

.testimonial-card__author {

    display: flex;

    align-items: center;

    gap: 15px;
}

/* ==========================================
   AVATAR
========================================== */

.testimonial-card__avatar {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(255,215,0,.12);

    border: 1px solid rgba(255,215,0,.25);

    color: var(--gold);

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* ==========================================
   AUTHOR INFO
========================================== */

.testimonial-card__author h4 {

    color: var(--white);

    margin-bottom: 4px;

    font-size: 1rem;
}

.testimonial-card__author span {

    color: var(--gray);

    font-size: .85rem;
}

/* ==========================================
   CONTROLS
========================================== */

.testimonial-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}

.testimonial-btn {

    width: 46px;
    height: 46px;

    border-radius: 50%;

    border: 1px solid rgba(255,215,0,.2);

    background: transparent;

    color: var(--gold);

    cursor: pointer;

    transition: .3s ease;
}

.testimonial-btn:hover {

    background: rgba(255,215,0,.08);

    border-color: var(--gold);
}

.testimonial-dots {

    display: flex;

    gap: 8px;
}

.testimonial-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);
}

.testimonial-dot.active {

    background: var(--gold);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .testimonial-track {

        grid-template-columns: 1fr;
    }

    .testimonial-controls {

        display: none;
    }
}

.testimonial-stars {

    color: var(--gold);

    letter-spacing: 3px;

    margin-bottom: 20px;

    font-size: .9rem;
}

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

.services-cta {

    position: relative;

    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;
}

/* ==========================================
   BACKGROUND IMAGE
========================================== */

.services-cta__bg {

    position: absolute;

    inset: 0;

    background:
        url("https://res.cloudinary.com/dtbkbxvtl/image/upload/v1781173945/hero2_szh7ut.jpg")
        center center / cover no-repeat;

    transform: scale(1.05);

    animation: ctaZoom 18s ease-in-out infinite alternate;
}

/* ==========================================
   OVERLAY
========================================== */

.services-cta__overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.82)
        );

    backdrop-filter: blur(2px);
}

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

.services-cta__content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 0 30px;
}

/* ==========================================
   TITLE
========================================== */

.services-cta h2 {

    color: var(--white);

    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: 1.1;

    margin: 25px 0;

    font-family: "Cormorant Garamond", serif;
}

.services-cta h2 em {

    color: var(--gold);

    font-style: normal;
}

/* ==========================================
   DESCRIPTION
========================================== */

.services-cta p:last-of-type {

    color: rgba(255,255,255,.85);

    max-width: 700px;

    margin: 30px auto 40px;

    font-size: 1.15rem;

    line-height: 1.9;
}

/* ==========================================
   BUTTON
========================================== */

.btn-primary--large {

    padding: 18px 40px;

    font-size: 1rem;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    transition: .35s ease;
}

.btn-primary--large:hover {

    transform: translateY(-4px);
}

.btn-primary--large svg {

    transition: transform .35s ease;
}

.btn-primary--large:hover svg {

    transform: translateX(6px);
}

/* ==========================================
   ORNAMENT LIGHT
========================================== */

.ornament--light .ornament__line {

    background: rgba(255,255,255,.25);
}

.ornament--light .ornament__diamond {

    border-color: var(--gold);
}

/* ==========================================
   REVEAL
========================================== */

.services-cta .fade-up {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.services-cta .fade-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================================
   BACKGROUND ANIMATION
========================================== */

@keyframes ctaZoom {

    from {

        transform: scale(1.05);
    }

    to {

        transform: scale(1.12);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .services-cta {

        min-height: 70vh;
    }

    .services-cta h2 {

        font-size: 2.8rem;
    }

    .services-cta p:last-of-type {

        font-size: 1rem;
    }

    .btn-primary--large {

        width: 100%;

        justify-content: center;
    }
}

.services-cta__trust {

    color: rgba(255,255,255,.7);

    margin-bottom: 28px;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: .8rem;
}