/* =========================================================
   INDIAN SPA AJMAN
   BLACK LUXURY DESIGN
========================================================= */

:root {
    --black: #050505;
    --black-2: #0b0b0b;
    --black-3: #111111;
    --black-4: #181818;

    --gold: #c6a76b;
    --gold-light: #dfc994;
    --gold-dark: #9d804b;

    --white: #f5f2eb;
    --white-soft: #d5d0c7;
    --muted: #99938a;
    --line: rgba(198, 167, 107, 0.20);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;
}

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: auto;
}

/* =========================
   TOP BAR
========================= */

.topbar {
    background: #000;
    color: var(--white-soft);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar a {
    color: var(--gold-light);
}

/* =========================
   HEADER
========================= */

.site-header {
    background: rgba(5, 5, 5, .96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.nav-wrap {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand-mark {
    width: 43px;
    height: 43px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 15px;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    font-size: 14px;
    letter-spacing: .15em;
    color: var(--white);
}

.brand small {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .3em;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    gap: 28px;
    font-size: 15px;
}

.main-nav a {
    color: #d1ccc3;
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 48px;
    padding: 0 24px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .16em;
    transition: .3s;
}

.nav-cta {
    background: var(--gold);
    color: #050505;
}

.nav-cta:hover {
    background: var(--gold-light);
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 23px;
    height: 1px;
    background: var(--gold);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-image {
    order: 2;
    min-height: 720px;
    position: relative;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,5,5,.25),
        transparent 40%
    );
}

.hero-image img {
    height: 100%;
    filter: brightness(.72);
}

.hero-content {
    padding: 100px 7vw 100px max(24px, calc((100vw - 1240px) / 2));
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.eyebrow {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .28em;
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;
    font-family: var(--serif);
    font-size: clamp(58px, 7vw, 105px);
    font-weight: 500;
    line-height: .94;
    margin: 23px 0 30px;
}

.hero h1 em,
h2 em {
    color: var(--gold);
    font-style: italic;
}

.hero-text {
    max-width: 510px;
    color: var(--muted);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.btn-dark {
    background: var(--gold);
    color: #050505;
}

.btn-dark:hover {
    background: var(--gold-light);
}

.text-link {
    color: var(--white-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.text-link:hover {
    color: var(--gold);
}

.hero-note {
    position: absolute;
    left: 24px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777169;
    font-size: 10px;
    letter-spacing: .25em;
    writing-mode: vertical-rl;
}

.vertical-line {
    width: 1px;
    height: 60px;
    background: var(--gold-dark);
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 120px 0;
}

.intro {
    background: var(--black-2);
}

.intro-grid {
    display: grid;
    grid-template-columns: .55fr 1.4fr .65fr;
    gap: 60px;
    align-items: start;
}

.section-label {
    font-size: 11px;
    letter-spacing: .2em;
    color: #716c65;
}

.intro h2,
.section-heading h2,
.experience h2,
.why h2,
.booking h2,
.location h2,
.faq h2 {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.02;
    margin: 18px 0 28px;
}

.intro h2 span {
    color: var(--gold);
    font-style: italic;
}

.intro-copy p:not(.eyebrow) {
    color: var(--muted);
    max-width: 650px;
    margin-bottom: 18px;
}

.under-link {
    display: inline-flex;
    gap: 18px;
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 7px;
    margin-top: 17px;
    color: var(--gold-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.under-link:hover {
    color: white;
    border-color: white;
}

.intro-stamp {
    display: flex;
    justify-content: center;
}

.stamp-circle {
    width: 180px;
    height: 180px;
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .3em;
}

.stamp-circle strong {
    font-family: var(--serif);
    font-size: 37px;
    letter-spacing: 0;
    color: var(--gold-light);
}

/* =========================
   TREATMENTS
========================= */

.treatments {
    background: #080808;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 50px;
}

.section-heading > p {
    max-width: 360px;
    color: var(--muted);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.treatment-card {
    background: var(--black-3);
    border: 1px solid rgba(198,167,107,.12);
    overflow: hidden;
    transition: .4s;
}

.treatment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198,167,107,.4);
}

.card-image {
    height: 400px;
    position: relative;
}

.card-image img {
    height: 100%;
    filter: brightness(.75);
    transition: .5s;
}

.treatment-card:hover .card-image img {
    transform: scale(1.04);
    filter: brightness(.9);
}

.card-number {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(5,5,5,.8);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 12px;
}

.card-body {
    padding: 30px 35px 38px;
}

.card-kicker {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .2em;
    font-weight: 600;
}

.card-body h3 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    margin: 7px 0 10px;
    color: var(--white);
}

.card-body p {
    color: var(--muted);
}

.card-body a {
    display: inline-flex;
    gap: 18px;
    margin-top: 22px;
    color: var(--gold-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* =========================
   EXPERIENCE
========================= */

.experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    background: #030303;
    color: var(--white);
}

.experience-image {
    min-height: 720px;
}

.experience-image img {
    height: 100%;
    filter: brightness(.65);
}

.experience-content {
    padding: 100px clamp(30px, 7vw, 100px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.experience-content .eyebrow {
    color: var(--gold);
}

.experience-content > p {
    color: var(--muted);
    max-width: 530px;
}

.feature-list {
    margin: 35px 0;
}

.feature-list div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(198,167,107,.14);
}

.feature-list span {
    color: var(--gold);
    font-size: 10px;
}

.feature-list strong {
    font-size: 14px;
    font-weight: 500;
}

.btn-light {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    width: fit-content;
}

.btn-light:hover {
    background: var(--gold);
    color: #050505;
}

/* =========================
   WHY
========================= */

.why {
    background: var(--black-2);
}

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.why-items {
    border-top: 1px solid var(--line);
}

.why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.why-item > span {
    color: var(--gold);
    font-size: 12px;
}

.why-item h3 {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
}

.why-item p {
    color: var(--muted);
    margin-top: 6px;
}

/* =========================
   BOOKING
========================= */

.booking {
    background: #080808;
}

.booking-box {
    border: 1px solid var(--line);
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: center;
    gap: 60px;
    background: var(--black-2);
}

.booking h2 {
    margin-bottom: 0;
}

.booking-copy p {
    color: var(--muted);
    margin-bottom: 28px;
}

/* =========================
   GALLERY
========================= */

.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 250px 250px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    background: var(--black-3);
}

.gallery-item img {
    height: 100%;
    filter: brightness(.7);
    transition: .6s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(.9);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* =========================
   LOCATION
========================= */

.location {
    background: var(--black-2);
}

.location-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: stretch;
}

.location-copy {
    padding: 30px 0;
}

.location-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-details {
    margin: 35px 0 10px;
    display: grid;
    gap: 18px;
}

.contact-details div {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.contact-details span {
    display: block;
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--gold);
}

.contact-details strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

.map-placeholder {
    min-height: 480px;
    background:
        radial-gradient(circle at center, #1c1c1c 0, #0c0c0c 65%);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-placeholder span {
    letter-spacing: .35em;
    font-size: 12px;
    color: var(--gold);
}

.map-placeholder strong {
    font-family: var(--serif);
    font-size: 60px;
    font-weight: 500;
    color: var(--white);
}

.map-placeholder small {
    color: var(--muted);
}

/* =========================
   FAQ
========================= */

.faq {
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

details {
    border-bottom: 1px solid var(--line);
    padding: 21px 0;
}

summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--serif);
    font-size: 21px;
    padding-right: 30px;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 0;
    color: var(--gold);
}

details[open] summary::after {
    content: "−";
}

details p {
    color: var(--muted);
    padding-top: 13px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #000;
    color: #eee4d8;
    padding: 75px 0 25px;
    border-top: 1px solid var(--line);
}

.brand.light .brand-mark {
    color: var(--gold);
    border-color: var(--gold);
}

.brand.light small {
    color: var(--gold);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 70px;
}

.footer-brand p {
    color: #77716a;
    max-width: 350px;
    margin-top: 22px;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 90px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links span {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: .22em;
    margin-bottom: 10px;
}

.footer-links a {
    color: #99928a;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(198,167,107,.12);
    display: flex;
    justify-content: space-between;
    color: #66615b;
    font-size: 13px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .main-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        background: #080808;
        border-bottom: 1px solid var(--line);
        padding: 25px;
        flex-direction: column;
        gap: 5px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: 1;
        min-height: 500px;
    }

    .hero-content {
        order: 2;
        padding: 75px 24px 100px;
    }

    .hero-note {
        display: none;
    }

    .intro-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-stamp {
        justify-content: flex-start;
    }

    .experience {
        grid-template-columns: 1fr;
    }

    .experience-image {
        min-height: 500px;
    }

    .booking-box,
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-inner > span {
        display: none;
    }

    .nav-wrap {
        height: 74px;
    }

    .main-nav.open {
        top: 74px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-image {
        min-height: 420px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 75px 0;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 330px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .experience-content {
        padding: 75px 24px;
    }

    .experience-image {
        min-height: 420px;
    }

    .booking-box {
        padding: 35px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-links {
        gap: 45px;
    }

    .footer-bottom {
        gap: 8px;
    }
}
/* =========================================================
   FOOTER CONTACT
========================================================= */

.site-footer {
    background: #000;
    color: #eee4d8;
    padding: 85px 0 25px;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr .8fr;
    gap: 70px;
    padding-bottom: 70px;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand p {
    color: #77716a;
    max-width: 380px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   SOCIAL ICONS
========================= */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    border: 1px solid rgba(198,167,107,.25);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #aaa39a;

    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #050505;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 15px;
}


/* =========================
   CONTACT
========================= */

.footer-title {
    display: block;

    color: var(--gold);

    font-size: 13px;
    letter-spacing: .22em;

    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 22px;
}

.contact-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border: 1px solid rgba(198,167,107,.25);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
}

.contact-icon i {
    font-size: 13px;
}

.footer-contact-item small {
    display: block;

    color: #77716a;

    font-size: 12px;
    letter-spacing: .18em;

    margin-bottom: 4px;
}

.footer-contact-item a {
    color: #c8c1b8;

    font-size: 14px;

    line-height: 1.6;

    transition: .3s;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links {
    display: flex;
    gap: 70px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links span {
    color: var(--gold);

    font-size: 13px;
    letter-spacing: .22em;

    margin-bottom: 10px;
}

.footer-links a {
    color: #8f8982;

    font-size: 14px;

    transition: .3s;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    padding-top: 22px;

    border-top: 1px solid rgba(198,167,107,.12);

    display: flex;
    justify-content: space-between;

    color: #5f5a55;

    font-size: 13px;

    letter-spacing: .03em;
}


/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.floating-contact a {
    width: 82px;
    height: 82px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0,0,0,.45);

    transition: all .3s ease;
}

.floating-contact i {
    font-size: 25px;
}

.floating-call {
    background: var(--gold);
    color: #050505;
}

.floating-whatsapp {
    background: #25d366;
    color: white;
}

.floating-contact a:hover {
    transform: scale(1.08);
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

@media (max-width: 950px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }

    .footer-brand {
        grid-column: span 2;
    }

}


@media (max-width: 650px) {

    .site-footer {
        padding: 65px 0 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-links {
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .floating-contact {
        right: 15px;
        bottom: 15px;
    }

    .floating-contact a {
        width: 68px;
        height: 68px;
    }

}
/* =========================
   SITE LOGO
========================= */

.brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.site-logo {
    width: 170px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
    display: block;
}
@media (max-width: 650px) {

    .site-logo {
        width: 145px;
        max-height: 55px;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero {
    background: #050505;
    padding: 90px 0 0;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 650px;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 80px 100px 0;
}

.about-hero h1 {
    font-family: var(--serif);
    font-size: clamp(60px, 7vw, 100px);
    font-weight: 500;
    line-height: .95;
    margin: 22px 0 30px;
}

.about-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.about-hero-text > p:last-child {
    color: var(--muted);
    max-width: 460px;
    font-size: 16px;
}

.about-hero-image {
    min-height: 650px;
    position: relative;
}

.about-hero-image img {
    height: 100%;
    filter: brightness(.7);
}


/* =========================
   STORY
========================= */

.about-story {
    background: var(--black-2);
}

.about-story-grid {
    display: grid;
    grid-template-columns: .45fr 1.55fr;
    gap: 80px;
}

.about-section-number {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--gold);
}

.about-section-number span {
    font-family: var(--serif);
    font-size: 45px;
}

.about-section-number small {
    font-size: 8px;
    letter-spacing: .2em;
}

.about-story-content {
    max-width: 780px;
}

.about-story-content h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1;
    margin: 18px 0 35px;
}

.about-story-content h2 em {
    color: var(--gold);
}

.about-story-content p:not(.eyebrow) {
    color: var(--muted);
    max-width: 720px;
    margin-bottom: 20px;
}


/* =========================
   FEATURE IMAGE
========================= */

.about-feature-image {
    height: 620px;
    position: relative;
    overflow: hidden;
}

.about-feature-image img {
    height: 100%;
    filter: brightness(.58);
}

.about-feature-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.about-feature-overlay span {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .35em;
}


/* =========================
   APPROACH
========================= */

.about-approach {
    background: #080808;
}

.about-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.about-heading h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;
    margin-top: 18px;
}

.about-heading h2 em {
    color: var(--gold);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.approach-card {
    padding: 38px 35px 45px;
    border-right: 1px solid var(--line);
    position: relative;
}

.approach-card:last-child {
    border-right: 0;
}

.approach-card > span {
    color: var(--gold);
    font-size: 10px;
}

.approach-card i {
    display: block;
    color: var(--gold);
    font-size: 25px;
    margin: 45px 0 22px;
}

.approach-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}

.approach-card p {
    color: var(--muted);
    font-size: 13px;
}


/* =========================
   TREATMENTS
========================= */

.about-treatments {
    background: var(--black-2);
}

.about-treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-treatment-image {
    height: 650px;
}

.about-treatment-image img {
    height: 100%;
    filter: brightness(.7);
}

.about-treatment-content {
    max-width: 600px;
}

.about-treatment-content h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;
    margin: 18px 0 28px;
}

.about-treatment-content h2 em {
    color: var(--gold);
}

.about-treatment-content > p:not(.eyebrow) {
    color: var(--muted);
    margin-bottom: 30px;
}

.about-treatment-content ul {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-bottom: 35px;
}

.about-treatment-content li {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 19px;
}

.about-treatment-content li span {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 9px;
}


/* =========================
   CTA
========================= */

.about-cta {
    background: #000;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 80px 0;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-cta h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 500;
    line-height: 1;
    margin: 18px 0;
}

.about-cta h2 em {
    color: var(--gold);
}

.about-cta p:not(.eyebrow) {
    color: var(--muted);
}

.about-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.about-cta .btn-light {
    color: var(--gold-light);
    border-color: var(--gold);
}

.about-whatsapp {
    color: #25d366;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-whatsapp i {
    margin-right: 8px;
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 950px) {

    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-text {
        padding: 80px 0;
    }

    .about-hero-image {
        min-height: 500px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .about-treatment-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-treatment-image {
        height: 500px;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 650px) {

    .about-hero {
        padding-top: 40px;
    }

    .about-hero h1 {
        font-size: 58px;
    }

    .about-hero-image {
        min-height: 400px;
    }

    .about-feature-image {
        height: 420px;
    }

    .about-feature-overlay span {
        font-size: 8px;
        white-space: nowrap;
    }

    .about-treatment-image {
        height: 400px;
    }

    .approach-card {
        padding: 30px 0 38px;
    }

    .about-cta {
        padding: 65px 0;
    }

    .about-cta-actions {
        width: 100%;
    }

    .about-cta-actions .btn {
        width: 100%;
    }
}
/* =========================================================
   TREATMENTS DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Treatments main link */
.nav-dropdown > .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
}

/* Arrow */
.dropdown-arrow {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* =========================================================
   INVISIBLE HOVER BRIDGE
   Prevents dropdown from disappearing while moving mouse
========================================================= */

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 15px;
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
    position: absolute;

    /* No large gap between Treatments and submenu */
    top: calc(100% + 10px);

    left: 50%;

    transform: translateX(-50%);

    min-width: 235px;

    padding: 10px 0;

    background: #0b0b0b;

    border: 1px solid rgba(198, 167, 107, 0.35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    z-index: 9999;
}


/* =========================================================
   GOLD TOP LINE
========================================================= */

.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -1px;

    left: 25px;

    right: 25px;

    height: 1px;

    background: #c6a76b;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.dropdown-menu a {
    display: block;

    padding: 12px 22px;

    color: #d8d8d8;

    font-size: 13px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        padding-left 0.25s ease;
}


/* Dropdown link hover */
.dropdown-menu a:hover {
    color: #dfc994;

    background: #111111;

    padding-left: 28px;
}


/* =========================================================
   DESKTOP DROPDOWN HOVER
========================================================= */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* Rotate arrow */
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   IMPORTANT:
   MAIN NAV UNDERLINE ONLY
========================================================= */

/* Remove the underline effect from dropdown links */

.dropdown-menu a::after {
    display: none !important;
}


/* Main navigation underline */
.main-nav > a::after,
.nav-dropdown > .dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: 0.3s;
}


/* Main navigation hover/active */
.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown > .dropdown-toggle:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE / TABLET DROPDOWN
========================================================= */

@media (max-width: 950px) {

    .nav-dropdown {
        width: 100%;

        display: block;
    }


    /* Treatments link */
    .nav-dropdown > .dropdown-toggle {
        width: 100%;

        justify-content: space-between;

        padding: 8px 0;
    }


    /* Remove hover bridge on mobile */
    .nav-dropdown::after {
        display: none;
    }


    /* Mobile submenu */
    .dropdown-menu {
        position: static;

        width: 100%;

        min-width: 0;

        transform: none;

        margin: 5px 0 10px;

        padding: 0;

        background: transparent;

        border: 0;

        border-left: 1px solid rgba(198, 167, 107, 0.35);

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        display: none;
    }


    /* Remove gold top line */
    .dropdown-menu::before {
        display: none;
    }


    /* Mobile submenu links */
    .dropdown-menu a {
        padding: 10px 20px;

        font-size: 12px;

        color: #aaa39a;
    }


    /* Mobile submenu hover */
    .dropdown-menu a:hover {
        padding-left: 25px;

        color: var(--gold-light);

        background: #111111;
    }


    /* Open submenu */
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }


    /* Rotate arrow when open */
    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 650px) {

    .dropdown-menu a {
        padding: 9px 18px;

        font-size: 11px;
    }

    .dropdown-menu a:hover {
        padding-left: 23px;
    }

}
/* =========================================================
   INDIVIDUAL SERVICE PAGE
========================================================= */

.service-page-hero{
    min-height:700px;
    display:grid;
    grid-template-columns:.88fr 1.12fr;
    background:#050505;
    border-bottom:1px solid var(--line);
}

.service-page-hero-content{
    padding:90px max(30px,7vw) 90px max(24px,calc((100vw - 1240px)/2));
    display:flex;
    justify-content:center;
    flex-direction:column;
}

.service-breadcrumb{
    display:flex;
    gap:10px;
    align-items:center;
    margin-bottom:42px;
    color:#706a63;
    font-size:10px;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.service-breadcrumb a{color:var(--gold);}

.service-page-hero h1{
    font-family:var(--serif);
    font-size:clamp(58px,7vw,100px);
    font-weight:500;
    line-height:.91;
    margin:18px 0 30px;
}

.service-page-hero h1 em{
    color:var(--gold);
    font-style:italic;
}

.service-hero-copy{
    max-width:500px;
    color:var(--muted);
    font-size:16px;
}

.service-price-row{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:38px;
}

.service-price{
    color:var(--gold-light);
    font-family:var(--serif);
    font-size:31px;
}

.service-duration{
    color:#77716a;
    border-left:1px solid var(--line);
    padding-left:20px;
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.service-hero-actions{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:32px;
}

.service-hero-image{
    min-height:700px;
    position:relative;
    overflow:hidden;
}

.service-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.62);
}

.service-hero-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(5,5,5,.48),transparent 38%);
}

.service-image-caption{
    position:absolute;
    right:30px;
    bottom:30px;
    z-index:2;
    color:var(--gold-light);
    font-size:9px;
    letter-spacing:.3em;
    writing-mode:vertical-rl;
    text-transform:uppercase;
}

/* INTRO */
.service-intro{background:var(--black-2);}

.service-intro-grid{
    display:grid;
    grid-template-columns:.5fr 1.5fr;
    gap:80px;
}

.service-section-number{
    color:var(--gold);
    font-family:var(--serif);
    font-size:50px;
}

.service-intro-content{max-width:820px;}

.service-intro-content h2{
    font-family:var(--serif);
    font-size:clamp(45px,5vw,70px);
    font-weight:500;
    line-height:1;
    margin:18px 0 30px;
}

.service-intro-content h2 em{color:var(--gold);}

.service-intro-content p:not(.eyebrow){
    color:var(--muted);
    font-size:16px;
    margin-bottom:18px;
}

/* SPLIT */
.service-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#080808;
}

.service-split-image{min-height:650px;}

.service-split-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.62);
}

.service-split-content{
    padding:100px clamp(35px,7vw,100px);
    display:flex;
    justify-content:center;
    flex-direction:column;
}

.service-split-content h2{
    font-family:var(--serif);
    font-size:clamp(45px,5vw,70px);
    font-weight:500;
    line-height:1;
    margin:18px 0 28px;
}

.service-split-content h2 em{color:var(--gold);}

.service-split-content>p{
    max-width:520px;
    color:var(--muted);
}

.service-points{
    margin-top:35px;
    border-top:1px solid var(--line);
}

.service-point{
    display:grid;
    grid-template-columns:45px 1fr;
    gap:18px;
    padding:20px 0;
    border-bottom:1px solid var(--line);
}

.service-point>span{
    color:var(--gold);
    font-family:var(--serif);
    font-size:18px;
}

.service-point h3{
    font-family:var(--serif);
    font-size:23px;
    font-weight:500;
    margin-bottom:4px;
}

.service-point p{
    color:var(--muted);
    font-size:13px;
}

/* DETAILS */
.service-details{background:var(--black);}

.service-details-heading{
    max-width:650px;
    margin-bottom:60px;
}

.service-details-heading h2{
    font-family:var(--serif);
    font-size:clamp(45px,5vw,70px);
    font-weight:500;
    line-height:1;
    margin-top:18px;
}

.service-details-heading h2 em{color:var(--gold);}

.service-details-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line);
}

.service-detail-card{
    padding:40px 35px;
    border-right:1px solid var(--line);
}

.service-detail-card:last-child{border-right:0;}

.service-detail-card>span{
    color:var(--gold);
    font-family:var(--serif);
    font-size:25px;
}

.service-detail-card h3{
    font-family:var(--serif);
    font-size:27px;
    font-weight:500;
    margin:35px 0 12px;
}

.service-detail-card p{
    color:var(--muted);
    font-size:13px;
}

/* CTA */
.service-booking{
    padding:90px 0;
    background:#000;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.service-booking-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.service-booking h2{
    font-family:var(--serif);
    font-size:clamp(45px,5vw,70px);
    font-weight:500;
    line-height:1;
    margin:18px 0;
}

.service-booking h2 em{color:var(--gold);}

.service-booking-copy>p:last-child{color:var(--muted);}

.service-booking-actions{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
}

.service-booking-price{
    color:var(--gold-light);
    font-family:var(--serif);
    font-size:28px;
}

.service-whatsapp{
    color:#25d366;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.service-whatsapp i{margin-right:8px;}

/* RELATED */
.service-related{background:var(--black-2);}

.related-heading{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:40px;
    margin-bottom:45px;
}

.related-heading h2{
    font-family:var(--serif);
    font-size:clamp(45px,5vw,65px);
    font-weight:500;
    line-height:1;
    margin-top:18px;
}

.related-heading h2 em{color:var(--gold);}

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.related-card{
    overflow:hidden;
    background:#080808;
    border:1px solid rgba(198,167,107,.14);
}

.related-card-image{
    height:240px;
    overflow:hidden;
}

.related-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.68);
    transition:.5s;
}

.related-card:hover .related-card-image img{
    transform:scale(1.05);
    filter:brightness(.86);
}

.related-card-body{padding:22px;}

.related-card-body>span{
    color:var(--gold);
    font-size:9px;
    letter-spacing:.18em;
}

.related-card-body h3{
    font-family:var(--serif);
    font-size:24px;
    font-weight:500;
    margin:7px 0 12px;
}

.related-card-body a{
    color:var(--gold-light);
    font-size:10px;
    letter-spacing:.13em;
    text-transform:uppercase;
}

@media(max-width:950px){
    .service-page-hero{grid-template-columns:1fr;}
    .service-page-hero-content{padding:70px 24px 80px;}
    .service-hero-image{min-height:550px;}
    .service-intro-grid{grid-template-columns:1fr;gap:30px;}
    .service-split{grid-template-columns:1fr;}
    .service-split-image{min-height:500px;}
    .service-details-grid{grid-template-columns:1fr;}
    .service-detail-card{border-right:0;border-bottom:1px solid var(--line);}
    .service-detail-card:last-child{border-bottom:0;}
    .service-booking-inner{flex-direction:column;align-items:flex-start;}
    .related-grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:650px){
    .service-page-hero-content{padding:55px 16px 65px;}
    .service-page-hero h1{font-size:58px;}
    .service-hero-image{min-height:420px;}
    .service-price-row{flex-direction:column;align-items:flex-start;gap:10px;}
    .service-duration{border-left:0;padding-left:0;}
    .service-hero-actions{flex-direction:column;align-items:flex-start;}
    .service-split-image{min-height:400px;}
    .service-split-content{padding:70px 24px;}
    .service-detail-card{padding:35px 0;}
    .service-booking{padding:70px 0;}
    .service-booking-actions{width:100%;}
    .service-booking-actions .btn{width:100%;}
    .related-grid{grid-template-columns:1fr;}
    .related-heading{display:block;}
}

/* =====================================================
   GALLERY LIGHTBOX / POPUP
===================================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999999;
    padding: 40px;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-content {
    width: min(1100px, 90vw);
    height: min(800px, 85vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(198, 167, 107, 0.35);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
}

/* CLOSE */

.gallery-lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(198, 167, 107, 0.45);
    background: #0b0b0b;
    color: #dfc994;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: #c6a76b;
    color: #050505;
}

/* PREVIOUS / NEXT */

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(198, 167, 107, 0.4);
    background: #0b0b0b;
    color: #dfc994;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: #c6a76b;
    color: #050505;
}

/* PREVENT PAGE SCROLL */

body.lightbox-open {
    overflow: hidden;
}

/* MOBILE */

@media (max-width: 700px) {

    .gallery-lightbox {
        padding: 20px;
    }

    .gallery-lightbox-content {
        width: 94vw;
        height: 80vh;
    }

    .gallery-lightbox-content img {
        max-width: 94vw;
        max-height: 78vh;
    }

    .gallery-lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .gallery-lightbox-prev {
        left: 25px;
    }

    .gallery-lightbox-next {
        right: 25px;
    }

}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-main {
    background: var(--black-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;
    margin: 18px 0 30px;
}

.contact-info h2 em {
    color: var(--gold);
}

.contact-info > p:not(.eyebrow) {
    max-width: 500px;
    color: var(--muted);
    font-size: 15px;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {
    margin-top: 50px;
    border-top: 1px solid var(--line);
}

.contact-detail {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(198, 167, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
}

.contact-detail small {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.contact-detail strong,
.contact-detail a {
    display: block;
    color: var(--white-soft);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-detail a {
    transition: color .3s ease;
}

.contact-detail a:hover {
    color: var(--gold-light);
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {
    background: #080808;
    border: 1px solid rgba(198, 167, 107, 0.18);
}

.contact-form-content {
    padding: 55px;
}

.contact-form-content h3 {
    font-family: var(--serif);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
    margin: 18px 0 20px;
}

.contact-form-content h3 em {
    color: var(--gold);
}

.contact-form-content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 14px;
    max-width: 550px;
    margin-bottom: 38px;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #050505;
    border: 1px solid rgba(198, 167, 107, 0.2);
    color: var(--white);
    padding: 15px 16px;
    font-family: var(--sans);
    font-size: 14px;
    outline: none;
    border-radius: 0;
    transition: border-color .3s ease,
                background .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #625f5a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #080808;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #0b0b0b;
    color: var(--white);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 8px;
}


/* =====================================================
   CONTACT PAGE HERO
===================================================== */

.page-hero {
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 120px 0 110px;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 8vw, 105px);
    font-weight: 500;
    line-height: .92;
    margin: 20px 0 30px;
}

.page-hero h1 em {
    color: var(--gold);
}

.page-hero p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: 16px;
}


/* =====================================================
   CONTACT DETAILS SECTION
===================================================== */

.contact-main .contact-grid {
    min-height: 600px;
}


/* =====================================================
   MAP / LOCATION SECTION
===================================================== */

.contact-main + .service-details {
    background: var(--black);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 950px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        padding-top: 0;
    }

    .contact-form-content {
        padding: 40px;
    }

    .page-hero {
        padding: 90px 0 80px;
    }

}


@media (max-width: 650px) {

    .contact-grid {
        gap: 45px;
    }

    .contact-info h2 {
        font-size: 48px;
    }

    .contact-form-content {
        padding: 30px 22px;
    }

    .contact-form-content h3 {
        font-size: 42px;
    }

    .contact-detail {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
    }

    .page-hero {
        padding: 70px 0 65px;
    }

    .page-hero h1 {
        font-size: 58px;
    }

}
.contact-detail-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(198,167,107,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
    box-sizing: border-box;
}

.contact-detail-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
}

/* =====================================================
   BLOG PAGE
===================================================== */

.blog-section {
    background: var(--black-2);
}

.blog-section .section-heading {
    margin-bottom: 55px;
}

.blog-section .section-heading > p:last-child {
    max-width: 430px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* Blog Grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Blog Card */

.blog-card {
    background: var(--black);
    border: 1px solid rgba(198,167,107,.16);
    overflow: hidden;
    transition: transform .35s ease,
                border-color .35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198,167,107,.45);
}


/* Image */

.blog-card-image {
    display: block;
    height: 290px;
    overflow: hidden;
    background: var(--black-3);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}


/* Content */

.blog-card-body {
    padding: 30px 28px 32px;
}

.blog-category {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .20em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-family: var(--serif);
    color: var(--white);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 18px;
}

.blog-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 25px;
}


/* Read More */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .3s ease;
}

.blog-read-more span {
    font-size: 18px;
    line-height: 1;
    transition: transform .3s ease;
}

.blog-read-more:hover {
    color: var(--white);
}

.blog-read-more:hover span {
    transform: translateX(5px);
}


/* Responsive */

@media (max-width: 950px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card-image {
        height: 260px;
    }

}

@media (max-width: 650px) {

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-card-image {
        height: 280px;
    }

    .blog-card-body {
        padding: 26px 22px 28px;
    }

    .blog-card h3 {
        font-size: 25px;
    }

}
/* =====================================================
   BLOG DETAIL
===================================================== */

.blog-detail-hero {
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 110px 0 100px;
}

.blog-detail-hero h1 {
    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 92px);
    line-height: .95;
    font-weight: 500;
    margin: 20px 0 30px;
    max-width: 1000px;
}

.blog-detail-hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.blog-detail-meta {
    display: flex;
    gap: 12px;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.blog-detail-intro {
    max-width: 680px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* Main */

.blog-detail {
    background: var(--black-2);
    padding: 90px 0 110px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 80px;
    align-items: start;
}

.blog-detail-main {
    max-width: 820px;
}

.blog-feature-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    margin-bottom: 45px;
}

.blog-detail-main p {
    color: var(--white-soft);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.blog-detail-main h2 {
    font-family: var(--serif);
    color: var(--white);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    margin: 55px 0 22px;
}

.blog-detail-main h2:first-of-type {
    margin-top: 0;
}


/* Bullet points */

.blog-points {
    margin: 30px 0 40px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.blog-points li {
    color: var(--white-soft);
    font-size: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.blog-points li::before {
    content: "—";
    color: var(--gold);
    margin-right: 14px;
}


/* Sidebar */

.blog-detail-sidebar {
    position: sticky;
    top: 120px;
}

.blog-sidebar-box {
    border: 1px solid rgba(198,167,107,.18);
    background: var(--black);
    margin-bottom: 25px;
    padding: 28px;
}

.blog-sidebar-box .eyebrow {
    margin-bottom: 20px;
}

.blog-sidebar-box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    color: var(--white-soft);
    font-size: 13px;
    text-decoration: none;
    transition: color .3s ease;
}

.blog-sidebar-box a span {
    color: var(--gold);
}

.blog-sidebar-box a:hover {
    color: var(--gold-light);
}

.blog-sidebar-box h3 {
    font-family: var(--serif);
    color: var(--white);
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    margin: 15px 0 25px;
}

.blog-sidebar-box h3 em {
    color: var(--gold);
    font-style: normal;
}


/* CTA */

.blog-detail-cta {
    margin-top: 60px;
    padding: 45px;
    background: #080808;
    border: 1px solid rgba(198,167,107,.22);
}

.blog-detail-cta h3 {
    font-family: var(--serif);
    color: var(--white);
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 15px;
}

.blog-detail-cta h3 em {
    color: var(--gold);
    font-style: normal;
}

.blog-detail-cta p {
    color: var(--muted);
    margin-bottom: 25px;
}


/* Price */

.blog-detail-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 45px 0;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.blog-detail-price span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .18em;
}

.blog-detail-price strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 500;
}


/* Mobile */

@media (max-width: 950px) {

    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-feature-image {
        height: 450px;
    }

}

@media (max-width: 650px) {

    .blog-detail-hero {
        padding: 75px 0 70px;
    }

    .blog-detail-hero h1 {
        font-size: 55px;
    }

    .blog-detail {
        padding: 60px 0 80px;
    }

    .blog-feature-image {
        height: 300px;
        margin-bottom: 30px;
    }

    .blog-detail-main p {
        font-size: 14px;
    }

    .blog-detail-main h2 {
        font-size: 34px;
        margin-top: 42px;
    }

    .blog-detail-cta {
        padding: 30px 22px;
    }

    .blog-detail-cta h3 {
        font-size: 34px;
    }

}
.main-nav > a.active::after,
.main-nav > .nav-dropdown > .dropdown-toggle.active::after {
    width: 100%;
}