:root {
    --bg: #120d0b;
    --bg-soft: #1d140f;
    --panel: rgba(34, 24, 18, 0.92);
    --panel-light: rgba(255, 248, 240, 0.08);
    --text: #f6eee8;
    --muted: #d6c0b2;
    --muted-strong: #b99782;
    --line: rgba(255, 255, 255, 0.1);
    --gold: #f2bf75;
    --gold-strong: #da9f4c;
    --rust: #9c4e2a;
    --green: #32412f;
    --white: #ffffff;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
    --transition: 260ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background:
        radial-gradient(circle at top, rgba(218, 159, 76, 0.1), transparent 32%),
        linear-gradient(180deg, #120d0b 0%, #090606 100%);
    color: var(--text);
}

img,
video {
    display: block;
    width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        rgba(255, 255, 255, 0.02);
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.cta-panel h2 {
    margin: 0 0 1rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
}

.section-heading p,
.about-copy p,
.contact-copy p,
.cta-panel p,
.hero-text,
.specialty-card p,
.experience-line p,
.trust-item span,
.about-highlights span,
.feature-overlay p,
.footer p,
.booking-head p,
.form-note {
    color: var(--muted);
    line-height: 1.7;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 6, 6, 0.74);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar.scrolled {
    background: rgba(9, 6, 6, 0.9);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(242, 191, 117, 0.65);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong {
    font-family: "Playfair Display", serif;
    font-size: 1.12rem;
}

.brand-copy span {
    color: var(--muted-strong);
    font-size: 0.84rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav > a {
    position: relative;
    font-size: 0.95rem;
    color: var(--muted);
    transition: color var(--transition);
}

.nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: transform var(--transition);
}

.nav > a:hover,
.nav > a:focus-visible {
    color: var(--white);
}

.nav > a:hover::after,
.nav > a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border-radius: 999px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.nav-cta,
.nav > a.nav-cta,
.nav > a.nav-cta:hover,
.nav > a.nav-cta:focus-visible {
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #2a170d;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(218, 159, 76, 0.22);
}

.nav-cta i,
.nav > a.nav-cta i {
    color: #2a170d;
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 4rem 0 5rem;
}

.hero .reveal,
.hero .reveal-delay {
    opacity: 1;
    transform: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(218, 159, 76, 0.07), transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(156, 78, 42, 0.2), transparent 32%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.3rem;
    align-items: center;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.02em;
    font-size: clamp(3rem, 6.2vw, 5.4rem);
    line-height: 0.92;
}

.hero-text {
    max-width: 680px;
    margin: 1.4rem 0 0;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 1.45rem;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #26170f;
    box-shadow: 0 18px 32px rgba(218, 159, 76, 0.22);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-full {
    width: 100%;
    border: 0;
}

.hero-points {
    display: grid;
    gap: 0.95rem;
    margin-top: 2rem;
}

.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    width: fit-content;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-point i,
.specialty-card i,
.experience-line i {
    color: var(--gold);
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 1rem;
    align-items: end;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1c120d;
}

.feature-card img,
.feature-card video {
    height: 100%;
    object-fit: cover;
}

.feature-card-lg {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 640px;
}

.feature-card-lg > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-sm {
    min-height: 260px;
}

.feature-card-video {
    min-height: 360px;
}

.feature-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 85%);
}

.feature-kicker {
    margin: 0 0 0.65rem;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.feature-overlay h2 {
    margin: 0;
    max-width: 360px;
    font-family: "Playfair Display", serif;
    line-height: 1.1;
}

.video-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(9, 6, 6, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.trust-strip {
    padding: 0 0 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-item {
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item strong,
.specialty-card h3,
.experience-line strong,
.about-highlights strong,
.booking-head h3 {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.specialty-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.specialty-card i {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.about-grid,
.contact-grid,
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    min-height: 620px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.about-stamp {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 1.35rem;
    border-radius: 22px;
    background: rgba(18, 13, 11, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.about-stamp span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.about-highlights div,
.experience-line {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-copy {
    display: grid;
    gap: 1rem;
}

.experience-line {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: start;
}

.experience-line i {
    font-size: 1.3rem;
    padding-top: 0.25rem;
}

.experience-line p {
    margin: 0;
}

.reels-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: end;
}

.phone-frame {
    position: relative;
    padding: 0.6rem;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
}

.phone-frame::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.7rem;
    transform: translateX(-50%);
    width: 36%;
    height: 16px;
    border-radius: 999px;
    background: rgba(15, 10, 8, 0.9);
    z-index: 1;
}

.phone-frame video {
    aspect-ratio: 9 / 16;
    border-radius: 26px;
    object-fit: cover;
}

.phone-frame-offset {
    transform: translateY(2.2rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-auto-rows: 220px;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    grid-auto-rows: 220px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.gallery-item img,
.gallery-item video {
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-video {
    background: #120d0b;
}

.cta-section {
    padding-top: 0;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(242, 191, 117, 0.14), rgba(156, 78, 42, 0.18)),
        #16100c;
    border: 1px solid rgba(242, 191, 117, 0.24);
}

.contact-grid {
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.contact-list a,
.contact-list div {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list i {
    color: var(--gold);
    margin-top: 0.15rem;
}

.booking-card {
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.booking-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.booking-form label {
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: rgba(242, 191, 117, 0.58);
    box-shadow: 0 0 0 4px rgba(242, 191, 117, 0.1);
}

.booking-form select option {
    color: #1d140f;
}

.form-note {
    margin: 0;
    font-size: 0.9rem;
}

.map-wrap {
    margin-top: 2rem;
}

.map-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
}

.footer-copy {
    width: min(calc(100% - 2rem), var(--container));
    margin: 1.5rem auto 0;
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #159e4c);
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 18px 28px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
    transition-delay: 120ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-bottom {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 860px) {
    .topbar-inner {
        min-height: 78px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.8rem);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(18, 13, 11, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-cta {
        justify-content: center;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.9rem, 14vw, 4.6rem);
    }

    .trust-grid,
    .specialties-grid,
    .reels-showcase,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

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

    .feature-card-lg,
    .feature-card-sm,
    .feature-card-video {
        height: auto;
        min-height: unset;
    }

    .feature-card-lg {
        grid-column: auto;
        grid-row: auto;
        height: 420px;
    }

    .feature-card-sm {
        height: 260px;
    }

    .feature-card-video {
        height: 320px;
    }

    .phone-frame-offset {
        transform: none;
    }

    .cta-panel {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4.6rem 0;
    }

    .container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .hero-actions,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .nav-cta {
        width: 100%;
    }

    .trust-item,
    .specialty-card,
    .booking-card,
    .cta-panel {
        padding: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-bottom {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .about-media img {
        min-height: 440px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 1rem;
        bottom: 1rem;
    }
}
