:root {
    --bg: #0a0a0c;
    --bg-soft: #111114;
    --panel: #16161a;
    --panel-2: #1c1c21;
    --line: #2a2a30;
    --gold: #cba135;
    --gold-light: #e6c976;
    --gold-dim: #8a7333;
    --text: #f2efe9;
    --text-dim: #b9b6ae;
    --text-mute: #847f76;
    --radius: 14px;
    --maxw: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    margin: 0 0 .5em;
    letter-spacing: .2px;
}

p {
    margin: 0 0 1em;
    color: var(--text-dim);
}

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

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin: 14px 0;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dim));
    color: #181305;
}

.btn-gold:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

section {
    padding: 96px 0;
}

.section-head {
    margin: 0 0 56px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    color: var(--text);
}

.section-head p {
    font-size: 17px;
}

/* ---------- HEADER ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 12, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .mark {
    color: var(--gold);
}

.logo small {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 9.5px;
    letter-spacing: 3px;
    color: var(--text-mute);
    font-weight: 600;
    margin-top: 2px;
}

nav.links {
    display: flex;
    gap: 32px;
    font-size: 14.5px;
    font-weight: 600;
}

nav.links a {
    color: var(--text-dim);
    transition: color .2s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-phone {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text);
}

.nav-phone span {
    display: block;
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 600;
}

.burger {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    color: var(--text);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 100px;
    background: linear-gradient(180deg, #0a0a0c 0%, #101012 100%);
    border-bottom: 1px solid var(--line);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(.5) saturate(1.05);
    animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero-media-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% -10%, rgba(203, 161, 53, .28), transparent 55%),
        radial-gradient(ellipse at 90% 10%, rgba(203, 161, 53, .12), transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 12, .35) 0%, rgba(10, 10, 12, .72) 55%, rgba(10, 10, 12, .95) 100%);
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.13);
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(32px, 4.6vw, 54px);
    line-height: 1.12;
    color: var(--text);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 18px;
    max-width: 520px;
    color: var(--text-dim);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 26px 0 34px;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: var(--text-dim);
    font-weight: 600;
}

.hero-points svg {
    flex: none;
    color: var(--gold);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-mute);
}

.hero-card {
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 30px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55);
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(203, 161, 53, .55), transparent 40%, transparent 70%, rgba(203, 161, 53, .25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card h3 {
    font-size: 21px;
    margin-bottom: 4px;
}

.hero-card .muted {
    font-size: 13.5px;
    color: var(--text-mute);
    margin-bottom: 22px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 7px;
    letter-spacing: .3px;
}

.field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0e0e11;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
}

.field input::placeholder {
    color: var(--text-mute);
}

.field input:focus {
    outline: none;
    border-color: var(--gold);
}

.consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--text-mute);
    margin: 14px 0 18px;
}

.consent input {
    margin-top: 3px;
}

.hero-card .btn {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 18px 6px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    color: var(--gold);
    margin-bottom: 10px;
}

.form-success h4 {
    margin-bottom: 6px;
    font-size: 19px;
}

.form-success p {
    font-size: 14px;
    margin: 0;
}

.form-error {
    display: none;
    color: #e08a8a;
    font-size: 12.5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-error.show {
    display: block;
}

/* ---------- LOGOS / TRUST STRIP ---------- */
.trust-strip {
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    padding: 34px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
}

.trust-item svg {
    flex: none;
    color: var(--gold);
}

/* ---------- WHO WE SERVE ---------- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
}

.audience-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
}

.audience-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 14.5px;
    margin: 0;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}

.service-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
}

.service-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #141416;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

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

.icon-badge {
    position: absolute;
    left: 16px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(160deg, #1e1a10, #141210);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .45);
}

.icon-badge svg {
    color: var(--gold-light);
    width: 20px;
    height: 20px;
}

.service-body {
    padding: 32px 22px 24px;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(160deg, #1e1a10, #141210);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-box svg {
    color: var(--gold-light);
}

.service-card h3 {
    font-size: 16.5px;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 13.5px;
    margin: 0;
    color: var(--text-mute);
}

/* ---------- GALLERY / DESTINATIONS ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--line);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 18px;
    background: linear-gradient(180deg, transparent, rgba(6, 6, 8, .95));
}

.gallery-caption h3 {
    font-size: 17px;
    margin: 0 0 3px;
    color: #fff;
    font-weight: 600;
}

.gallery-caption span {
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
    position: relative;
}

.step {
    position: relative;
    padding: 0 4px;
}

.step .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.3px var(--gold);
    margin-bottom: 14px;
    line-height: 1;
}

.step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    margin: 0;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(100% - 4px);
    width: calc(100% - 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dim), transparent);
}

/* ---------- WHY US ---------- */
.why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-list li {
    display: flex;
    gap: 16px;
}

.why-list .chk {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.why-list h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--text);
}

.why-list p {
    margin: 0;
    font-size: 14px;
}

.why-visual {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
    padding: 38px;
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- QUOTE / STATEMENT ---------- */
.statement {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.statement blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    max-width: 820px;
    margin: 0 auto;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

.statement blockquote span {
    color: var(--gold-light);
}

.statement .who {
    margin-top: 22px;
    font-size: 13.5px;
    color: var(--text-mute);
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}


.statement-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.statement-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.4) saturate(1.05);
}

.statement-media-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(203, 161, 53, .18), transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 12, .55) 0%, rgba(10, 10, 12, .8) 100%);
}

.statement .wrap {
    position: relative;
    z-index: 1;
}


/* ---------- FAQ ---------- */
#faq {
    padding-bottom: 80px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-q .plus {
    flex: none;
    color: var(--gold);
    transition: transform .25s;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a p {
    padding: 0 4px 22px;
    font-size: 14.5px;
    max-width: 680px;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(203, 161, 53, .14), transparent 60%),
        var(--bg-soft);
}

.final-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 56px 48px;
}

.final-cta h2 {
    font-size: clamp(26px, 3.4vw, 36px);
}

.final-cta p {
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 30px;
}

.final-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.final-form input {
    flex: 1 1 200px;
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0e0e11;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    min-width: 160px;
}

.final-form input::placeholder {
    color: var(--text-mute);
}

.final-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.final-form .btn {
    flex: none;
}

.final-note {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-mute);
}

/* ---------- FOOTER ---------- */
footer {
    padding: 56px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo .mark {
    color: var(--gold);
}

.footer-col h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mute);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-dim);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--text-mute);
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}

.socials a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px) {
    nav.links {
        display: none;
    }

    .burger {
        display: inline-flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        flex-direction: column;
        padding: 34px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

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

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .why-wrap {
        grid-template-columns: 1fr;
    }

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

@media (max-width:560px) {
    section {
        padding: 64px 0;
    }

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

    .steps {
        grid-template-columns: 1fr;
    }

    .nav-phone {
        display: none;
    }

    .final-cta-inner {
        padding: 40px 22px;
    }

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

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: brightness(.5) saturate(1.05);
    animation: heroZoom 24s ease-in-out infinite alternate;
}

/* ---------- LEAD POPUP ---------- */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6, 6, 8, .78);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.popup-overlay.open {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 38px 32px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6);
    transform: translateY(18px) scale(.97);
    transition: transform .28s ease;
}

.popup-overlay.open .popup-modal {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.popup-close:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.popup-modal h3 {
    font-size: 21px;
    margin-bottom: 4px;
    padding-right: 20px;
}

.popup-modal .muted {
    font-size: 13.5px;
    color: var(--text-mute);
    margin-bottom: 22px;
}

.popup-modal .btn {
    width: 100%;
}

body.popup-locked {
    overflow: hidden;
}

.final-cta {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
}

.final-cta-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.final-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: brightness(.35) saturate(1.05);
}

.final-cta-media-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(203, 161, 53, .18), transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.635) 0%, rgba(10, 10, 12, 0.849) 100%);
}

.final-cta .wrap {
    position: relative;
    z-index: 1;
}