/* =========================================================
   LUXE HD NAILS
   Premium Nail Salon Website
   ========================================================= */

:root {
    --cream: #faf7f0;
    --cream-dark: #f3eee4;

    --gold: #b88632;
    --gold-light: #d4ad63;
    --gold-soft: #e2c98f;

    --dark: #29231f;
    --dark-soft: #514a44;

    --white: #ffffff;

    --serif: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--sans);
    overflow-x: hidden;
}

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


/* =========================================================
   TOP RIBBON
   ========================================================= */

.top-ribbon {
    width: 100%;
    height: 38px;

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

    background: var(--dark);

    border-bottom: 1px solid rgba(212, 173, 99, 0.45);

    position: relative;
    z-index: 100;
}

.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: var(--gold-soft);

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.ribbon-content span:first-child,
.ribbon-content span:last-child {
    color: var(--gold-light);
    font-size: 11px;
}

.ribbon-divider {
    color: rgba(255, 255, 255, 0.3);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;

    position: relative;
    z-index: 99;

    background: rgba(250, 247, 240, 0.94);

    border-bottom: 1px solid rgba(184, 134, 50, 0.22);

    backdrop-filter: blur(12px);
}

.nav-container {
    width: min(1400px, 92%);
    min-height: 88px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 220px;
}

.logo-mark {
    width: 55px;
    height: 55px;

    border: 1.5px solid var(--gold);

    border-radius: 50%;

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

    color: var(--gold);

    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;

    letter-spacing: -1px;

    position: relative;
}

.logo-mark::before {
    content: "";

    position: absolute;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(184, 134, 50, 0.35);

    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--serif);

    font-size: 23px;
    font-weight: 600;

    letter-spacing: 3px;

    color: var(--gold);
}

.logo-subtitle {
    margin-top: 6px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 5px;

    color: var(--dark);
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;

    color: var(--dark-soft);

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    padding: 10px 0;

    transition:
        color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 22px;
}


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

.book-btn {
    min-width: 165px;

    padding: 13px 20px;

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

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all 0.35s ease;
}

.book-btn:hover {
    background: var(--gold);
    color: var(--white);

    box-shadow: 0 8px 25px rgba(184, 134, 50, 0.18);
}


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

.hero {
    width: min(1400px, 92%);

    min-height: calc(100vh - 126px);

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 60px;

    position: relative;

    /* padding: 0px 0 100px; */
}


/* Decorative gold line */

.hero::before {
    content: "";

    position: absolute;

    left: -5%;
    top: 8%;

    width: 180px;
    height: 180px;

    border-top: 1px solid rgba(184, 134, 50, 0.25);
    border-left: 1px solid rgba(184, 134, 50, 0.15);

    border-radius: 50%;
}


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

.hero-content {
    position: relative;
    z-index: 3;
}

.eyebrow {
    color: var(--gold);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(60px, 6vw, 100px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -2px;

    color: var(--dark);
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    max-width: 500px;

    margin-top: 30px;

    color: var(--dark-soft);

    font-size: 14px;

    line-height: 1.9;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 38px;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.primary-btn,
.secondary-btn {
    padding: 15px 24px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--gold);

    color: white;

    border: 1px solid var(--gold);
}

.primary-btn:hover {
    background: var(--dark);

    border-color: var(--dark);

    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid rgba(184, 134, 50, 0.5);

    color: var(--dark);
}

.secondary-btn:hover {
    border-color: var(--gold);

    color: var(--gold);
}


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

.hero-image-wrapper {
    min-height: 650px;

    position: relative;

    display: flex;

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


/* Main image */

.hero-image {
    width: min(500px, 80%);

    height: 620px;

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 250px 250px 20px 20px;

    box-shadow:
        0 30px 70px rgba(61, 45, 30, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.8s ease;
}

.hero-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   GOLD CIRCLE
   ========================================================= */

.gold-circle {
    position: absolute;

    width: 590px;
    height: 590px;

    border: 1px solid var(--gold-soft);

    border-radius: 50%;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    z-index: 1;
}


/* =========================================================
   GOLD SWOOSH
   ========================================================= */

.gold-swoosh {
    position: absolute;

    width: 700px;
    height: 700px;

    border: 1.5px solid var(--gold);

    border-left-color: transparent;
    border-bottom-color: transparent;

    border-radius: 50%;

    right: -170px;
    top: -20px;

    transform: rotate(20deg);

    z-index: 3;

    pointer-events: none;
}


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

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--gold);

    background: transparent;

    cursor: pointer;

    flex-direction: column;

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

    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 1px;

    background: var(--gold);

    transition: all 0.3s ease;
}


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

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 9px;
    }

    .book-btn {
        min-width: 140px;

        font-size: 9px;
    }

    .hero {
        gap: 30px;
    }

    .hero-image {
        width: 420px;
        height: 550px;
    }

    .gold-circle {
        width: 500px;
        height: 500px;
    }

    .gold-swoosh {
        width: 600px;
        height: 600px;
    }
}


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

@media (max-width: 850px) {

    .top-ribbon {
        height: 34px;
    }

    .ribbon-content {
        gap: 7px;

        font-size: 7px;

        letter-spacing: 1.5px;
    }

    .ribbon-divider {
        display: none;
    }


    /* Navbar */

    .nav-container {
        min-height: 75px;
    }

    .logo {
        min-width: auto;
    }

    .logo-mark {
        width: 45px;
        height: 45px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 6px;
    }

    .nav-links {
        display: none;

        position: absolute;

        left: 0;
        right: 0;
        top: 75px;

        background: var(--cream);

        padding: 25px;

        border-bottom: 1px solid var(--gold-soft);

        flex-direction: column;

        gap: 15px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 10px;
    }

    .book-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* Hero */

    .hero {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 70px 0;

        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        order: 2;

        min-height: 500px;

        margin-top: 20px;
    }

    .hero-image {
        width: 75%;
        height: 500px;
    }

    .gold-circle {
        width: 500px;
        height: 500px;

        right: 50%;

        transform: translate(50%, -50%);
    }

    .gold-swoosh {
        width: 550px;
        height: 550px;

        right: 50%;

        transform: translateX(50%) rotate(20deg);
    }
}


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

@media (max-width: 500px) {

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;

        max-width: 280px;
    }

    .hero-image-wrapper {
        min-height: 420px;
    }

    .hero-image {
        height: 420px;
    }

    .gold-circle {
        width: 420px;
        height: 420px;
    }

    .gold-swoosh {
        width: 470px;
        height: 470px;
    }
}

 /* =========================================================
    LUXE HD NAILS — ABOUT SECTION
    ========================================================= */

.about-luxe {
    position: relative;

    padding: 30px 0 130px;

    background: #faf7f0;

    overflow: hidden;
}

.about-luxe-container {
    width: min(1180px, 90%);

    margin: auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.about-heading {
    text-align: center;

    max-width: 850px;

    margin: 0 auto;
}

.about-eyebrow {
    color: var(--gold);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.about-heading h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(60px, 7vw, 100px);

    font-weight: 500;

    line-height: 0.88;

    letter-spacing: -2px;

    color: var(--dark);
}

.about-heading h2 span {
    color: var(--gold);

    font-style: italic;
}


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

.about-divider {
    margin: 35px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}

.about-divider span {
    width: 85px;

    height: 1px;

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

.about-divider i {
    color: var(--gold);

    font-size: 10px;

    font-style: normal;
}


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

.about-description {
    max-width: 700px;

    margin: 55px auto 75px;

    text-align: center;
}

.about-lead {
    margin: 0;

    font-family: var(--serif);

    font-size: 25px;

    line-height: 1.45;

    color: var(--dark);
}

.about-copy {
    max-width: 620px;

    margin: 20px auto 0;

    color: var(--dark-soft);

    font-size: 14px;

    line-height: 2;

    letter-spacing: 0.15px;
}


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

.about-story-btn {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 30px;

    padding: 13px 20px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}

.about-story-btn span {
    font-size: 17px;

    line-height: 0;

    transition: transform 0.3s ease;
}

.about-story-btn:hover {
    background: var(--gold);

    color: #fff;
}

.about-story-btn:hover span {
    transform: translateX(5px);
}


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

.about-visual {
    position: relative;

    width: 100%;

    height: 620px;

    margin-top: 20px;

    display: flex;

    justify-content: center;
}

.about-image-wrap {
    position: relative;

    width: 78%;

    height: 100%;

    overflow: hidden;

    z-index: 2;
}

.about-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(35, 27, 21, 0.18),
        transparent 35%
    );

    pointer-events: none;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.03);
}


/* =========================================================
   GOLD CURVE
   ========================================================= */

.about-gold-curve {
    position: absolute;

    width: 550px;

    height: 550px;

    right: -25px;

    top: -65px;

    border: 1px solid var(--gold);

    border-left-color: transparent;

    border-bottom-color: transparent;

    border-radius: 50%;

    transform: rotate(25deg);

    z-index: 3;

    pointer-events: none;
}


/* =========================================================
   FLOATING LHD MARK
   ========================================================= */

.about-floating-text {
    position: absolute;

    left: 0;

    bottom: 45px;

    width: 115px;

    height: 115px;

    background: var(--cream);

    border: 1px solid var(--gold);

    border-radius: 50%;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    box-shadow: 0 15px 35px rgba(45, 30, 15, 0.12);
}

.about-floating-text span {
    color: var(--gold);

    font-size: 6px;

    letter-spacing: 3px;
}

.about-floating-text strong {
    margin: 3px 0;

    font-family: var(--serif);

    font-size: 28px;

    font-weight: 600;

    line-height: 1;

    color: var(--gold);
}


/* =========================================================
   VALUES
   ========================================================= */

.about-values {
    display: grid;

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

    margin-top: 70px;

    border-top: 1px solid rgba(184, 134, 50, 0.25);

    border-bottom: 1px solid rgba(184, 134, 50, 0.25);
}

.about-value {
    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 15px;

    padding: 30px 35px;

    border-right: 1px solid rgba(184, 134, 50, 0.2);
}

.about-value:first-child {
    padding-left: 0;
}

.about-value:last-child {
    border-right: none;
}

.about-value > span {
    color: var(--gold);

    font-family: var(--serif);

    font-size: 18px;
}

.about-value strong {
    display: block;

    color: var(--dark);

    font-family: var(--serif);

    font-size: 22px;

    font-weight: 600;
}

.about-value p {
    margin-top: 5px;

    color: var(--dark-soft);

    font-size: 9px;

    line-height: 1.6;
}


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

@media (max-width: 900px) {

    .about-luxe {
        padding: 110px 0;
    }

    .about-heading h2 {
        font-size: 72px;
    }

    .about-visual {
        height: 520px;
    }

    .about-gold-curve {
        width: 470px;
        height: 470px;
    }

    .about-value {
        padding: 25px 20px;
    }
}


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

@media (max-width: 650px) {

    .about-luxe {
        padding: 90px 0;
    }

    .about-heading h2 {
        font-size: 54px;

        letter-spacing: -1px;
    }

    .about-eyebrow {
        font-size: 8px;

        letter-spacing: 3px;
    }

    .about-divider span {
        width: 50px;
    }

    .about-description {
        margin: 45px auto 55px;
    }

    .about-lead {
        font-size: 21px;
    }

    .about-copy {
        font-size: 11px;

        line-height: 1.9;
    }

    .about-visual {
        height: 430px;
    }

    .about-image-wrap {
        width: 90%;
    }

    .about-gold-curve {
        width: 360px;
        height: 360px;

        right: -50px;
        top: -20px;
    }

    .about-floating-text {
        width: 90px;
        height: 90px;

        left: 0;
        bottom: 25px;
    }

    .about-floating-text strong {
        font-size: 22px;
    }

    .about-values {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }

    .about-value,
    .about-value:first-child {
        padding: 22px 0;

        border-right: none;

        border-bottom: 1px solid rgba(184, 134, 50, 0.2);
    }

    .about-value:last-child {
        border-bottom: none;
    }
}

/* =========================================================
   LUXURY SERVICES
   ========================================================= */

.luxury-services {
    padding: 0px 0 130px;

    background: #faf7f0;

    position: relative;

    overflow: hidden;
}

.luxury-services-container {
    width: min(1280px, 91%);

    margin: auto;
}


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

.luxury-services-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 80px;

    margin-bottom: 70px;
}

.services-title-wrap {
    max-width: 700px;
}

.services-label {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;
}

.services-title-wrap h2 {
    margin: 0;

    color: var(--dark);

    font-family: var(--serif);

    font-size: clamp(58px, 6vw, 88px);

    font-weight: 500;

    line-height: .88;

    letter-spacing: -2px;
}

.services-title-wrap h2 em {
    color: var(--gold);

    font-style: italic;

    font-weight: 400;
}

.services-description {
    width: 280px;

    padding-bottom: 5px;
}

.gold-small-line {
    display: block;

    width: 45px;

    height: 1px;

    margin-bottom: 18px;

    background: var(--gold);
}

.services-description p {
    margin: 0;

    color: var(--dark-soft);

    font-size: 14px;

    line-height: 1.9;
}


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

.luxury-services-grid {
    display: grid;

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

    gap: 32px 24px;
}


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

.luxury-service-card {
    display: block;

    color: inherit;

    text-decoration: none;
}


/* =========================================================
   PHOTO
   ========================================================= */

.service-photo {
    position: relative;

    width: 100%;

    height: 410px;

    overflow: hidden;

    background: #eee8dc;
}

.service-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.luxury-service-card:hover .service-photo img {
    transform: scale(1.06);
}


/* Image overlay */

.photo-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(20, 15, 10, .12),
            transparent 45%,
            rgba(20, 15, 10, .25)
        );

    transition: background .4s ease;
}

.luxury-service-card:hover .photo-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(20, 15, 10, .18),
            transparent 40%,
            rgba(20, 15, 10, .38)
        );
}


/* =========================================================
   PHOTO INDEX
   ========================================================= */

.service-index {
    position: absolute;

    top: 20px;
    left: 20px;

    color: white;

    font-family: var(--serif);

    font-size: 40px;

    z-index: 2;
}


/* =========================================================
   VIEW
   ========================================================= */

.service-view {
    position: absolute;

    right: 20px;
    top: 20px;

    padding: 7px 10px;

    border: 1px solid rgba(255,255,255,.55);

    color: white;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 2px;

    z-index: 2;

    opacity: 0;

    transform: translateY(-5px);

    transition: all .4s ease;
}

.luxury-service-card:hover .service-view {
    opacity: 1;

    transform: translateY(0);
}


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

.service-card-content {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 2px 0;

    border-bottom: 1px solid rgba(184,134,50,.25);

    padding-bottom: 18px;
}

.service-category {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;
}

.service-card-content h3 {
    margin: 0;

    color: var(--dark);

    font-family: var(--serif);

    font-size: 29px;

    font-weight: 500;

    line-height: 1;
}


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

.service-arrow {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: flex;

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

    border: 1px solid rgba(184,134,50,.45);

    border-radius: 50%;

    color: var(--gold);

    font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.luxury-service-card:hover .service-arrow {
    background: var(--gold);

    color: white;

    transform: rotate(45deg);
}


/* =========================================================
   BOTTOM LINE
   ========================================================= */

.services-bottom-line {
    margin-top: 80px;

    padding-top: 25px;

    border-top: 1px solid rgba(184,134,50,.25);

    display: grid;

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

    align-items: center;
}

.services-bottom-line > span {
    color: var(--gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;
}

.services-bottom-line p {
    margin: 0;

    text-align: center;

    color: var(--dark-soft);

    font-family: var(--serif);

    font-size: 18px;

    font-style: italic;
}

.services-bottom-line a {
    justify-self: end;

    color: var(--gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.services-bottom-line a span {
    margin-left: 12px;

    font-size: 16px;

    transition: transform .3s ease;
}

.services-bottom-line a:hover span {
    display: inline-block;

    transform: translateX(5px);
}


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

@media (max-width: 950px) {

    .luxury-services {
        padding: 110px 0;
    }

    .luxury-services-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;
    }

    .services-description {
        width: 100%;

        max-width: 500px;
    }

    .luxury-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-photo {
        height: 380px;
    }
}


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

@media (max-width: 600px) {

    .luxury-services {
        padding: 85px 0;
    }

    .luxury-services-header {
        margin-bottom: 50px;
    }

    .services-title-wrap h2 {
        font-size: 55px;
    }

    .luxury-services-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .service-photo {
        height: 430px;
    }

    .service-view {
        opacity: 1;

        transform: none;
    }

    .service-card-content h3 {
        font-size: 32px;
    }

    .services-bottom-line {
        grid-template-columns: 1fr;

        gap: 15px;

        text-align: center;
    }

    .services-bottom-line > span,
    .services-bottom-line a {
        justify-self: center;
    }

    .services-bottom-line p {
        order: 2;
    }

    .services-bottom-line a {
        order: 3;
    }
}
/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-grid {
    display: grid;

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

    gap: 16px;
}


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

.gallery-item {
    position: relative;

    display: block;

    aspect-ratio: 0.82 / 1;

    overflow: hidden;

    background: #e8e0d4;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
    transform: scale(1.07);
}


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

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding: 15px;

    background:
        linear-gradient(
            to bottom,
            rgba(25, 18, 12, .35),
            transparent 40%,
            rgba(25, 18, 12, .15)
        );

    opacity: 0;

    transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* Number */

.gallery-overlay span {
    color: #fff;

    font-family: var(--serif);

    font-size: 17px;
}


/* Arrow */

.gallery-overlay strong {
    width: 34px;
    height: 34px;

    display: flex;

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

    border: 1px solid rgba(255,255,255,.65);

    border-radius: 50%;

    color: #fff;

    font-size: 14px;

    font-weight: 400;

    transition:
        background .3s ease,
        transform .3s ease;
}

.gallery-item:hover .gallery-overlay strong {
    background: var(--gold);

    border-color: var(--gold);

    transform: rotate(45deg);
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    padding: 40px 0;

    background: #29231f;

    color: #faf7f0;
}

.contact-container {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: center;
}


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

.contact-eyebrow {
    display: block;

    margin-bottom: 22px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 4px;
}

.contact-content h2 {
    margin: 0;

    max-width: 560px;

    font-family: var(--serif);

    font-size: clamp(55px, 5vw, 76px);

    font-weight: 500;

    line-height: .9;

    letter-spacing: -1.5px;
}

.contact-content h2 em {
    color: var(--gold-light);

    font-style: italic;

    font-weight: 400;
}

.contact-intro {
    max-width: 430px;

    margin: 28px 0 45px;

    color: rgba(250,247,240,.62);

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   DETAILS
   ========================================================= */

.contact-details {
    display: grid;

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

    gap: 35px 45px;

    max-width: 540px;
}

.contact-detail {
    padding-top: 18px;

    border-top: 1px solid rgba(212,173,99,.25);
}

.detail-label {
    display: block;

    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;
}

.contact-detail p,
.contact-detail a {
    margin: 0;

    color: rgba(250,247,240,.75);

    font-family: var(--serif);

    font-size: 15px;

    line-height: 1.5;

    text-decoration: none;
}

.contact-detail a {
    transition: color .3s ease;
}

.contact-detail a:hover {
    color: var(--gold-light);
}


/* Instagram */

.instagram-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;
}

.instagram-link span {
    color: var(--gold-light);

    font-family: Arial, sans-serif;

    font-size: 15px;
}


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

.contact-button {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 50px;

    padding: 16px 25px;

    background: var(--gold);

    color: white;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}

.contact-button span {
    font-size: 17px;

    transition: transform .3s ease;
}

.contact-button:hover {
    background: #a87928;

    transform: translateY(-2px);
}

.contact-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   MAP
   ========================================================= */

.contact-map {
    position: relative;
}

.map-frame {
    height: 590px;

    padding: 10px;

    background: #f8f4eb;

    border: 1px solid rgba(212,173,99,.5);
}

.map-frame iframe {
    width: 100%;
    height: 100%;

    display: block;

    /* filter: grayscale(100%) sepia(10%); */

    border: 0;
}


/* =========================================================
   MAP LOCATION CARD
   ========================================================= */

.map-location {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    background: rgba(41,35,31,.94);

    border: 1px solid rgba(212,173,99,.4);

    backdrop-filter: blur(8px);
}

.map-pin {
    width: 35px;
    height: 35px;

    flex: 0 0 auto;

    display: flex;

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

    border: 1px solid var(--gold);

    border-radius: 50%;

    color: var(--gold-light);

    font-size: 11px;
}

.map-location div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.map-location div span {
    color: var(--gold-light);

    font-size: 6px;

    font-weight: 600;

    letter-spacing: 2px;
}

.map-location div strong {
    color: #fff;

    font-family: var(--serif);

    font-size: 16px;

    font-weight: 400;
}

.map-location a {
    margin-left: auto;

    color: var(--gold-light);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;
}


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

@media (max-width: 900px) {

    .contact-section {
        padding: 110px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-content {
        max-width: 650px;
    }

    .map-frame {
        height: 500px;
    }
}


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

@media (max-width: 600px) {

    .contact-section {
        padding: 85px 0;
    }

    .contact-content h2 {
        font-size: 54px;
    }

    .contact-details {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .contact-button {
        width: 100%;

        justify-content: center;
    }

    .map-frame {
        height: 420px;

        padding: 6px;
    }

    .map-location {
        left: 16px;
        right: 16px;
        bottom: 16px;

        padding: 12px;
    }

    .map-location a {
        display: none;
    }
}

 /* =========================================================
    FOOTER
    ========================================================= */

.site-footer {
    background: #f8f4eb;

    color: var(--dark);

    padding: 90px 0 25px;

    border-top: 1px solid rgba(184, 134, 50, .25);
}

.footer-container {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;

    gap: 60px;

    padding-bottom: 75px;

    border-bottom: 1px solid rgba(184, 134, 50, .22);
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-logo {
    display: inline-flex;

    flex-direction: column;

    align-items: center;

    color: var(--dark);

    text-decoration: none;

    line-height: .8;
}

.footer-logo-main {
    font-family: var(--serif);

    font-size: 36px;

    font-weight: 500;

    letter-spacing: 2px;
}

.footer-logo-sub {
    margin-top: 8px;

    color: var(--gold);

    font-family: var(--serif);

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 7px;

    padding-left: 7px;
}

.footer-brand p {
    margin-top: 22px;

    color: var(--dark-soft);

    font-family: var(--serif);

    font-size: 16px;

    font-style: italic;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-title {
    display: block;

    margin-bottom: 22px;

    color: var(--gold);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2.5px;
}


/* =========================================================
   NAV
   ========================================================= */

.footer-nav {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-nav a {
    width: fit-content;

    color: var(--dark-soft);

    font-family: var(--serif);

    font-size: 15px;

    text-decoration: none;

    transition: color .3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}


/* =========================================================
   CONTACT
   ========================================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-contact a,
.footer-contact p {
    margin: 0;

    color: var(--dark-soft);

    font-family: var(--serif);

    font-size: 15px;

    line-height: 1.6;

    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold);
}


/* =========================================================
   SOCIAL
   ========================================================= */

.footer-instagram {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--dark);

    font-family: var(--serif);

    font-size: 15px;

    text-decoration: none;
}

.footer-instagram span {
    color: var(--gold);

    font-size: 16px;
}

.footer-book {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    color: var(--gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;
}

.footer-book span {
    font-size: 16px;

    transition: transform .3s ease;
}

.footer-book:hover span {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM
   ========================================================= */

.footer-bottom {
    width: min(1200px, 90%);

    margin: 22px auto 0;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;

    color: rgba(65, 55, 45, .5);

    font-size: 8px;

    letter-spacing: .5px;
}

.back-top {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;
}

.back-top span {
    width: 28px;
    height: 28px;

    display: flex;

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

    border: 1px solid rgba(184, 134, 50, .4);

    border-radius: 50%;

    font-size: 13px;

    transition: all .3s ease;
}

.back-top:hover span {
    background: var(--gold);

    color: white;

    transform: translateY(-3px);
}


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

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

}


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

@media (max-width: 600px) {

    .site-footer {
        padding: 70px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;
    }

    .footer-brand {
        padding-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 18px;

        text-align: center;
    }

}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 6px 16px 6px 6px;

    background: #ffffff;

    border: 1px solid rgba(184, 134, 50, .35);

    border-radius: 50px;

    box-shadow:
        0 10px 35px rgba(35, 25, 15, .16);

    color: #3d342d;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1px;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(35, 25, 15, .22);
}


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

.whatsapp-icon {
    width: 43px;
    height: 43px;

    display: flex;

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

    background: #25D366;

    border-radius: 50%;

    position: relative;
}

.whatsapp-icon svg {
    width: 22px;
    height: 22px;

    fill: white;
}


/* =========================================================
   PULSE
   ========================================================= */

.whatsapp-icon::before {
    content: "";

    position: absolute;

    inset: -4px;

    border: 1px solid rgba(37, 211, 102, .35);

    border-radius: 50%;

    animation: whatsappPulse 2.2s infinite;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(.9);

        opacity: .8;
    }

    70% {
        transform: scale(1.25);

        opacity: 0;
    }

    100% {
        transform: scale(1.25);

        opacity: 0;
    }

}


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

@media (max-width: 600px) {

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;

        padding: 0;

        justify-content: center;

        border: none;

        background: transparent;

        box-shadow: none;
    }

    .whatsapp-icon {
        width: 52px;
        height: 52px;

        box-shadow:
            0 8px 25px rgba(35, 25, 15, .2);
    }

    .whatsapp-icon svg {
        width: 25px;
        height: 25px;
    }

    .whatsapp-text {
        display: none;
    }

}