/* ─── tokens ─────────────────────────────────────────── */
:root {
    --bg: #0a0a0c;
    --bg2: #111114;
    --bg3: #18181e;
    --ink: #f0eeea;
    --ink2: #888880;
    --gold: #c9a84c;
    --gold2: #b8944a;
    --line: #222228;
    --radius: 6px;
    --max: 1200px;

    --fs-h1: clamp(2.8rem, 6vw, 5.5rem);
    --fs-h2: clamp(2rem, 4vw, 3.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 { font-family: 'Oswald', Impact, sans-serif; text-transform: uppercase; }

/* ─── demo bar ───────────────────────────────────────── */
.demo-bar {
    background: var(--gold);
    color: #0a0a0c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 1.5rem;
    font-size: 0.8rem;
    gap: 1rem;
}
.demo-bar strong { font-weight: 700; margin-right: 0.5rem; }
.demo-links { display: flex; gap: 0.75rem; align-items: center; }
.demo-links a { font-weight: 600; opacity: 0.75; }
.demo-links a:hover { opacity: 1; }
.demo-cta {
    background: #0a0a0c;
    color: var(--gold);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-weight: 700;
    opacity: 1 !important;
}

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

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex: none;
    color: var(--ink);
}
.brand span { color: var(--gold); }

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a { font-weight: 500; color: var(--ink2); font-size: 0.875rem; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--gold) !important;
    color: #0a0a0c !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ─── reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── hero ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.5) 60%, rgba(10,10,12,0.8) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.5rem;
    max-width: 720px;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-inner h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
}
.hero-inner h1 .accent { color: var(--gold); }

.hero-inner > p { color: rgba(240,238,234,0.75); font-size: 1.05rem; line-height: 1.75; max-width: 540px; font-family: 'Inter', sans-serif; }

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

.hero-stats {
    position: relative;
    z-index: 1;
    background: var(--bg2);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
}
.hero-stats > div {
    padding: 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-right: 1px solid var(--line);
}
.hero-stats > div:last-child { border-right: none; }
.hero-stats strong {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}
.hero-stats span { font-size: 0.7rem; color: var(--ink2); text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── buttons ────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: 0.18s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}
.btn.primary { background: var(--gold); color: #0a0a0c; }
.btn.primary:hover { background: var(--gold2); }
.btn.ghost {
    background: transparent;
    color: rgba(240,238,234,0.85);
    border: 1.5px solid rgba(240,238,234,0.2);
}
.btn.ghost:hover { border-color: rgba(240,238,234,0.5); color: #fff; }
.btn.outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn.outline-gold:hover { background: rgba(201,168,76,0.08); }
.btn.full { width: 100%; text-align: center; font-size: 0.95rem; padding: 1rem; }

/* ─── shared section ─────────────────────────────────── */
.section {
    padding: 6rem 1.5rem;
    max-width: var(--max);
    margin: 0 auto;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-head h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; letter-spacing: 0.04em; }
.section-head p { color: var(--ink2); font-size: 1rem; line-height: 1.7; font-family: 'Inter', sans-serif; }

.label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

/* ─── services ───────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--gold); }

.service-img { overflow: hidden; }
.service-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }

.service-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}
.service-body h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em; }
.service-body p { color: var(--ink2); font-size: 0.875rem; line-height: 1.7; font-family: 'Inter', sans-serif; flex: 1; }
.service-detail {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* ─── transformation ─────────────────────────────────── */
.transformation-section {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 6rem 1.5rem;
}
.transformation-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.transformation-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.transformation-copy h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: 0.04em; line-height: 1.1; }
.transformation-copy p { color: var(--ink2); font-size: 1rem; line-height: 1.75; font-family: 'Inter', sans-serif; }

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ba-side { position: relative; border-radius: var(--radius); overflow: hidden; }
.ba-side img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.ba-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
}
.ba-side.after .ba-label {
    background: var(--gold);
    color: #0a0a0c;
}

/* ─── packages ───────────────────────────────────────── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.package-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: border-color 0.2s;
}
.package-card:hover { border-color: var(--gold); }
.package-card.featured { border-color: var(--gold); }

.package-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0a0a0c;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 0 0 6px 6px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.package-header { display: flex; flex-direction: column; gap: 0.5rem; }
.package-tier { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink); }
.package-price strong { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 600; color: var(--gold); }

.package-features { display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.package-features li {
    font-size: 0.85rem;
    color: var(--ink2);
    padding-left: 1.25rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.packages-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--ink2);
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
}

/* ─── gallery ────────────────────────────────────────── */
.gallery-section {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    padding: 5rem 1.5rem;
}
.gallery-header {
    max-width: var(--max);
    margin: 0 auto 2.5rem;
}
.gallery-header h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: 0.04em; }

.gallery-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.tall { grid-row: 1 / 3; }
.gallery-item.tall img { aspect-ratio: 3/4; }
.gallery-item:not(.tall):not(.wide) img { aspect-ratio: 3/2; }
.gallery-item.wide { grid-column: 2 / 4; }
.gallery-item.wide img { aspect-ratio: 16/7; width: 100%; height: 100%; }

/* ─── reviews ────────────────────────────────────────── */
.reviews-section { padding: 6rem 1.5rem; }

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

.testimonial {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.testimonial p {
    font-style: italic;
    color: var(--ink2);
    font-size: 0.875rem;
    line-height: 1.75;
    flex: 1;
    font-family: 'Inter', sans-serif;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: 0.85rem; font-weight: 600; display: block; font-family: 'Inter', sans-serif; }
.testimonial-author span { font-size: 0.75rem; color: var(--ink2); font-family: 'Inter', sans-serif; }

/* ─── booking ────────────────────────────────────────── */
.booking-section {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    padding: 6rem 1.5rem;
}
.booking-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.booking-copy h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 1.25rem; }
.booking-copy > p { color: var(--ink2); font-size: 1rem; line-height: 1.75; margin-bottom: 2.5rem; font-family: 'Inter', sans-serif; }

.booking-info { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-info > div { display: flex; flex-direction: column; gap: 0.25rem; }
.booking-info strong {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
}
.booking-info span { color: var(--ink2); font-size: 0.875rem; font-family: 'Inter', sans-serif; }

/* ─── form ───────────────────────────────────────────── */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.booking-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--gold); }
.booking-form textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note { font-size: 0.75rem; color: var(--ink2); text-align: center; font-family: 'Inter', sans-serif; }

/* ─── footer ─────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 3.5rem 1.5rem 1.5rem; }
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

.footer-brand { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.08em; }
.footer-brand span { color: var(--gold); }
.footer-inner > div:first-child p { color: var(--ink2); font-size: 0.82rem; margin-top: 0.5rem; font-family: 'Inter', sans-serif; }

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav a { font-size: 0.85rem; color: var(--ink2); font-family: 'Inter', sans-serif; }
.footer-nav a:hover { color: var(--ink); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: right;
}
.footer-contact strong { font-size: 0.85rem; font-family: 'Inter', sans-serif; }
.footer-contact span { font-size: 0.8rem; color: var(--ink2); font-family: 'Inter', sans-serif; }

.footer-bottom {
    max-width: var(--max);
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: center;
}
.footer-bottom p { font-size: 0.72rem; color: var(--ink2); font-family: 'Inter', sans-serif; text-align: center; }

/* ─── toast ──────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--gold);
    color: #0a0a0c;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    transition: transform 0.35s ease;
    z-index: 9999;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
    .services-grid { grid-template-columns: 1fr; }
    .transformation-inner { grid-template-columns: 1fr; gap: 3rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.tall { grid-row: auto; }
    .gallery-item.wide { grid-column: auto; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stats > div { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--line); }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-contact { text-align: center; }
    .section { padding: 4rem 1.25rem; }
    .transformation-section,
    .booking-section,
    .gallery-section { padding: 4rem 1.25rem; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 1.5rem;
        gap: 1.2rem;
        z-index: 99;
    }
    .menu-toggle { display: flex; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .demo-bar { flex-direction: column; text-align: center; }
    .before-after { grid-template-columns: 1fr; }
}
