*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Dark palette */
    --bg: #0b0e17;
    --bg-2: #0f1320;
    --bg-3: #141828;
    --bg-card: #161b2e;
    --border: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(196, 153, 95, 0.22);

    /* Gold */
    --gold: #c4995f;
    --gold-soft: #d9b07a;
    --gold-pale: #eedcb8;
    --gold-glow: rgba(196, 153, 95, 0.15);
    --gold-faint: rgba(196, 153, 95, 0.07);

    /* Sky / accent */
    --sky: #afccd5;
    --sky-dim: rgba(90, 184, 212, 0.12);

    /* Text */
    --t1: #edeae4;
    --t2: #9aabb8;
    --t3: #b1d3dd;

    /* Misc */
    --font: "Plus Jakarta Sans", sans-serif;
    --mono: "DM Mono", monospace;
    --r: 18px;
    --r-sm: 14px;
    --f-sm: 0.75rem;
    --ease: 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}
body {
    background: var(--bg);
    color: var(--t1);
    font-family: var(--font);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    font-size: 1.5rem;
    line-height: 1.5;
}

/* ── CURSOR ── */
.cur {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.25s,
        height 0.25s,
        background 0.25s;
}
.cur-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(196, 153, 95, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
        width 0.4s,
        height 0.4s,
        border-color 0.4s;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem clamp(1.5rem, 5vw, 3.5rem);
    background: rgba(11, 14, 23, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.4s,
        box-shadow 0.4s;
}
nav.scrolled {
    background: rgba(11, 14, 23, 0.97);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}
.nav-logo {
    opacity: 0;
    cursor: pointer;
    text-decoration: none;
    display: flex;
}
body:has(.page.active:not(#page-home)) .nav-logo,
nav.scrolled .nav-logo {
    opacity: 1;
}
.nav-logo-text {
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--t1);
}
.nav-logo-text em {
    color: var(--gold);
    font-style: normal;
    font-weight: 400;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--t3);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1.5px solid var(--border-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition:
        background 0.3s,
        color 0.3s,
        box-shadow 0.3s;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 0 24px rgba(196, 153, 95, 0.3);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--t2);
    border-radius: 2px;
    transition:
        transform 0.3s,
        opacity 0.3s;
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 14, 23, 0.98);
    backdrop-filter: blur(28px);
    z-index: 199;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    font-weight: 200;
    color: var(--t1);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}
.mobile-menu a:hover {
    color: var(--gold);
}
.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.15em;
    color: var(--t3);
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

/* ── PAGES ── */
.page {
    display: none;
    min-height: 100vh;
}
.page.active {
    display: block;
}

/* ── LAYOUT HELPERS ── */
.section {
    padding: clamp(5.5rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
}
.inner {
    max-width: 1200px;
    margin: 0 auto;
}
.label {
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.label::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}
.label.c {
    justify-content: center;
}
.label.c::before {
    display: none;
}
.h1 {
    font-size: clamp(4.5rem, 13vw, 11rem);
    font-weight: 200;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--t1);
}
.h2 {
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 200;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--t1);
    margin-bottom: 1.4rem;
}
.h3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--t1);
    margin-bottom: 1rem;
}
.accent {
    color: var(--gold);
}
.sky {
    color: var(--sky);
}
.italic {
    font-style: italic;
}
.body-lg {
    font-size: clamp(1.15rem, 1.8vw, 1.3rem);
    font-weight: 300;
    line-height: 1.85;
    color: var(--t2);
}
.body {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.82;
    color: var(--t2);
}
.body strong {
    color: var(--t1);
    font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.6rem;
    border-radius: 100px;
    transition: var(--ease);
    cursor: pointer;
    border: none;
    font-weight: 400;
}
.btn-gold {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 6px 32px rgba(196, 153, 95, 0.25);
}
.btn-gold:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 153, 95, 0.4);
}
.btn-outline {
    color: var(--t2);
    border: 1.5px solid var(--border);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-faint);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── TICKER ── */
.ticker {
    overflow: hidden;
    background: var(--bg-3);
    padding: 0.9rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ticker-inner {
    display: flex;
    animation: tickScroll 40s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--t3);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.ticker-item::after {
    content: "◆";
    font-size: 0.42rem;
    color: var(--gold);
}
@keyframes tickScroll {
    to {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════════════════ */
/*  HOME                                             */
/* ══════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem clamp(1.5rem, 6vw, 4rem) 5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 153, 95, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(90, 184, 212, 0.07) 0%, transparent 60%), var(--bg);
}
/* animated orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.orb-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(196, 153, 95, 0.07), transparent 65%);
    animation: orbFloat 14s ease-in-out infinite;
}
.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(90, 184, 212, 0.06), transparent 65%);
    animation: orbFloat 18s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -40px);
    }
}
/* ring grid */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border);
    animation: ringPulse 8s ease-in-out infinite;
}
.hero-ring:nth-child(3) {
    width: min(62vw, 560px);
    height: min(62vw, 560px);
    border-color: rgba(196, 153, 95, 0.08);
    animation-delay: 0s;
}
.hero-ring:nth-child(4) {
    width: min(85vw, 760px);
    height: min(85vw, 760px);
    border-color: rgba(90, 184, 212, 0.05);
    animation-delay: 2.5s;
}
.hero-ring:nth-child(5) {
    width: min(108vw, 960px);
    height: min(108vw, 960px);
    border-color: rgba(196, 153, 95, 0.04);
    animation-delay: 5s;
}
@keyframes ringPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}
.hero-eyebrow {
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.8rem;
    animation: fadeUp 1s ease 0.1s both;
    opacity: 0.9;
}
.hero-title {
    font-size: clamp(4.5rem, 13vw, 11rem);
    font-weight: 200;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--t1);
    margin-bottom: 2.4rem;
    animation: fadeUp 1s ease 0.25s both;
}
.hero-title .l2 {
    color: var(--sky);
    display: block;
    font-style: italic;
}
.hero-title .l3 {
    color: var(--gold);
    display: block;
}
.hero-sub {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 300;
    line-height: 1.78;
    color: var(--t2);
    max-width: 580px;
    margin: 0 auto 3.5rem;
    animation: fadeUp 1s ease 0.4s both;
}
.hero-actions {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.55s both;
}
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: fadeUp 1s ease 1s both;
}
.scroll-hint span {
    font-family: var(--mono);
    font-size: 0.52rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--t3);
}
.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: sPulse 2.4s ease-in-out infinite;
}
@keyframes sPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(0.55);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* about strip */
.about-bg {
    background: var(--bg-2);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}
.orb-visual {
    position: relative;
    width: min(380px, 80vw);
    height: min(380px, 80vw);
    margin: auto;
}
.ov-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: waveEl 5s ease-in-out infinite;
}
.ov-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(196, 153, 95, 0.08);
    animation-delay: 0s;
}
.ov-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border: 1px solid rgba(196, 153, 95, 0.13);
    animation-delay: 0.7s;
}
.ov-ring:nth-child(3) {
    width: 62%;
    height: 62%;
    border: 1px solid rgba(90, 184, 212, 0.18);
    animation-delay: 1.4s;
}
.ov-ring:nth-child(4) {
    width: 45%;
    height: 45%;
    border: 1px solid rgba(90, 184, 212, 0.28);
    animation-delay: 2.1s;
}
.ov-ring:nth-child(5) {
    width: 28%;
    height: 28%;
    border: 1px solid rgba(196, 153, 95, 0.5);
    background: rgba(196, 153, 95, 0.04);
    animation-delay: 2.8s;
}
.ov-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10%;
    height: 10%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    border-radius: 50%;
    animation: cGlow 3s ease-in-out infinite;
}
@keyframes waveEl {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.03);
        opacity: 1;
    }
}
@keyframes cGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
    50% {
        box-shadow: 0 0 28px 14px rgba(196, 153, 95, 0.16);
    }
}

/* services */
.svc-bg {
    background: var(--bg);
}
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-top: 4rem;
}
.svc-card {
    background: var(--bg-card);
    padding: 3rem 2.6rem;
    position: relative;
    overflow: hidden;
    transition: background var(--ease);
}
.svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--sky));
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-card:hover {
    background: #1a2040;
}
.svc-card:hover::before {
    height: 100%;
}
.svc-num {
    font-family: var(--mono);
    font-size: 0.54rem;
    letter-spacing: 0.3em;
    color: var(--t3);
    margin-bottom: 1.6rem;
}
.svc-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
}
.svc-name {
    font-size: 1.7rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--t1);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}
.svc-desc {
    font-size: 1.05rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 1.8rem;
    font-weight: 300;
}
.svc-link {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}
.svc-link::after {
    content: "→";
}
.svc-link:hover {
    gap: 1rem;
}

/* stats */
.stats-bg {
    background: var(--bg-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}
.stat-n {
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 200;
    letter-spacing: -0.05em;
    color: var(--gold-soft);
    line-height: 1;
    margin-bottom: 0.6rem;
}
.stat-l {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--t3);
}

/* process */
.proc-bg {
    background: var(--bg-2);
}
.proc-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
}
.proc-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold) 25%, rgba(90, 184, 212, 0.2) 75%, transparent);
}
.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.proc-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: var(--f-sm);
    color: var(--gold);
    margin-bottom: 1.6rem;
    background: var(--bg-2);
    position: relative;
    z-index: 1;
    transition: var(--ease);
}
.proc-step:hover .proc-num {
    background: var(--gold-faint);
    box-shadow: 0 0 0 10px rgba(196, 153, 95, 0.05);
    border-color: var(--gold);
}
.proc-step h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--t1);
    margin-bottom: 0.7rem;
}
.proc-step p {
    font-size: 1rem;
    color: var(--t2);
    line-height: 1.72;
    font-weight: 300;
}

/* testimonials */
.testi-bg {
    background: var(--bg);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}
.testi-card {
    background: var(--bg-card);
    padding: 2.8rem;
    border-radius: var(--r);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--ease);
}
.testi-card:hover {
    border-color: var(--border-gold);
    box-shadow:
        0 16px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px var(--border-gold);
    transform: translateY(-4px);
}
.testi-card::before {
    content: "\201C";
    position: absolute;
    top: 0.5rem;
    left: 1.8rem;
    font-size: 6rem;
    font-weight: 200;
    color: rgba(196, 153, 95, 0.08);
    line-height: 1;
    pointer-events: none;
}
.stars {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1.1rem;
}
.testi-text {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--t2);
    font-style: italic;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}
.testi-author {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* subbrand */
.sub-bg {
    background: var(--bg-2);
}
.sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4.5rem;
}
.sub-card {
    padding: 2.6rem 2.4rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--bg-card);
    transition: var(--ease);
}
.sub-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
}
.sub-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 1.4rem;
}
.sub-name {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--t2);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.sub-name span {
    color: var(--t1);
    font-weight: 500;
}
.sub-claim {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.9rem;
    font-style: italic;
}
.sub-desc {
    font-size: 1rem;
    color: var(--t3);
    line-height: 1.68;
    font-weight: 300;
}

/* home cta */
.hcta-bg {
    background: var(--bg-3);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.hcta-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 153, 95, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cta-big {
    font-size: clamp(3.2rem, 9vw, 8rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--t1);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}
.cta-sub {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--t2);
    max-width: 500px;
    margin: 0 auto 3.2rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════ */
/*  INNER PAGES                                      */
/* ══════════════════════════════════════════════════ */
.page-hero {
    padding: clamp(8rem, 15vw, 13rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 153, 95, 0.09) 0%, transparent 65%), var(--bg-2);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196, 153, 95, 0.06);
    animation: ringPulse 8s ease-in-out infinite;
    pointer-events: none;
}
.ph-eyebrow {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
    opacity: 0.85;
}
.ph-title {
    font-size: clamp(3.2rem, 9vw, 8rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--t1);
    margin-bottom: 1.4rem;
}
.ph-sub {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.78;
    color: var(--t2);
    max-width: 580px;
    margin: 0 auto;
}

/* leistungen detail */
.ldtl-bg {
    background: var(--bg);
}
.l-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    border-bottom: 1px solid var(--border);
}
.l-item:last-child {
    border-bottom: none;
}
.l-item.rev {
    direction: rtl;
}
.l-item.rev > * {
    direction: ltr;
}
.l-tag {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.l-tag::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--gold);
    display: block;
}
.l-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--t1);
    margin-bottom: 1.3rem;
}
.l-body {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--t2);
    margin-bottom: 1.8rem;
}
.l-pts {
    list-style: none;
    margin-bottom: 2.2rem;
}
.l-pts li {
    font-size: 1.05rem;
    color: var(--t2);
    line-height: 1.7;
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    font-weight: 300;
}
.l-pts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.l-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.l-icon {
    font-size: clamp(5rem, 14vw, 10rem);
    opacity: 0.7;
    line-height: 1;
    user-select: none;
    filter: drop-shadow(0 0 40px rgba(196, 153, 95, 0.15));
}

/* methode */
.mth-bg {
    background: var(--bg);
}
.mth-steps {
    display: grid;
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}
.mth-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2.6rem 3rem;
    background: var(--bg-card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: var(--ease);
}
.mth-step:hover {
    border-color: var(--border-gold);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.mth-n {
    font-family: var(--mono);
    font-size: 2.8rem;
    font-weight: 200;
    color: rgba(196, 153, 95, 0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 3.8rem;
    text-align: center;
}
.mth-c h3 {
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--t1);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.mth-c p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--t2);
}
.faq-bg {
    background: var(--bg-2);
}
.faq-wrap {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--t1);
    transition: color 0.3s;
    gap: 1rem;
}
.faq-q:hover {
    color: var(--gold);
}
.faq-ico {
    font-size: 1.3rem;
    color: var(--gold);
    transition: transform 0.35s;
    flex-shrink: 0;
}
.faq-item.open .faq-ico {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--t2);
    padding-bottom: 1.8rem;
}
.faq-item.open .faq-a {
    max-height: 300px;
}

/* über mich */
.ub-bg {
    background: var(--bg);
}
.ub-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}
.ub-sticky {
    position: sticky;
    top: 8rem;
}
.portrait {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--r);
    background-image: url("../img/coach_profil_600x800.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    overflow: hidden;
}
.portrait-cap {
    margin-top: 1.2rem;
    font-family: var(--mono);
    font-size: 0.56rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--t3);
    text-align: center;
}
.cert-list {
    list-style: none;
    margin-top: 2rem;
}
.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}
.cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.5rem;
    flex-shrink: 0;
}
.cert-item span {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.55;
}
.vals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 3rem;
}
.val-card {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
}
.val-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 0.6rem;
}
.val-card p {
    font-size: 0.98rem;
    color: var(--t2);
    line-height: 1.65;
    font-weight: 300;
}

/* stimmen */
.stim-bg {
    background: var(--bg-2);
}

/* kontakt */
.kt-bg {
    background: var(--bg);
}
.kt-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}
.kt-info h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--t1);
    margin-bottom: 1.4rem;
}
.kt-info h2 .accent {
    color: var(--gold);
}
.kt-lead {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.82;
    color: var(--t2);
    margin-bottom: 2.8rem;
}
.kt-details {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-bottom: 2.8rem;
}
.kt-det {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.kt-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-faint);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.kt-txt strong {
    display: block;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.2rem;
}
.kt-txt span {
    font-size: 1rem;
    font-weight: 300;
    color: var(--t2);
}
.kt-note {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--t3);
    line-height: 1.65;
    padding: 1.3rem 1.6rem;
    background: var(--bg-card);
    border-radius: var(--r-sm);
    border-left: 2px solid var(--border-gold);
}

/* FORM */
.form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: calc(var(--r) + 4px);
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.form-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: var(--t1);
    margin-bottom: 0.5rem;
}
.form-sub {
    font-size: 1rem;
    color: var(--t3);
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.fg {
    margin-bottom: 1.7rem;
}
.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.fl {
    display: block;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}
.fi,
.fsel,
.fta {
    width: 100%;
    background: var(--bg-3);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 1.05rem 1.25rem;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--t1);
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
    outline: none;
    appearance: none;
}
.fi::placeholder,
.fta::placeholder {
    color: var(--t3);
}
.fi:focus,
.fsel:focus,
.fta:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(196, 153, 95, 0.1);
}
.fta {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.fsel {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c4995f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
    background-color: var(--bg-3);
    color: var(--t1);
}
.fsel option {
    background: var(--bg-3);
    color: var(--t1);
}
.fcheck {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}
.fcheck input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    appearance: none;
    background: var(--bg-3);
    flex-shrink: 0;
    margin-top: 0.12rem;
    cursor: pointer;
    transition:
        background 0.25s,
        border-color 0.25s;
    position: relative;
}
.fcheck input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}
.fcheck input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 600;
}
.fcheck-l {
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.6;
}
.fcheck-l a {
    color: var(--gold);
    text-decoration: none;
}
.fsub {
    width: 100%;
    padding: 1.2rem;
    font-family: var(--mono);
    font-size: var(--f-sm);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--ease);
    box-shadow: 0 6px 32px rgba(196, 153, 95, 0.25);
    margin-top: 0.5rem;
}
.fsub:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 44px rgba(196, 153, 95, 0.38);
}
.f-success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}
.f-success-ico {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}
.f-success h3 {
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--t1);
    margin-bottom: 0.8rem;
}
.f-success p {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.75;
}

/* ── FOOTER ── */
footer {
    background: #070a12;
    padding: 4rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
    border-top: 1px solid var(--border);
}
.ft-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.2rem;
}
.ft-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--t1);
    margin-bottom: 1.1rem;
}
.ft-brand em {
    color: var(--gold);
    font-style: normal;
}
.ft-tagline {
    font-size: 0.98rem;
    color: var(--t3);
    line-height: 1.65;
    font-weight: 300;
    margin-top: 2em;
}
.ft-col h4 {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1.3rem;
}
.ft-col ul {
    list-style: none;
}
.ft-col ul li {
    margin-bottom: var(--f-sm);
}
.ft-col ul li a {
    font-size: 0.98rem;
    color: var(--t3);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    cursor: pointer;
}
.ft-col ul li a:hover {
    color: var(--gold-pale);
}
.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.ft-copy {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--t3);
    opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .about-grid,
    .kt-grid,
    .l-item,
    .l-item.rev {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .orb-visual {
        display: none;
    }
    .ft-top {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .proc-steps::before {
        display: none;
    }
    .ub-sticky {
        position: relative;
        top: 0;
        max-width: 320px;
        margin: 0 auto 2rem;
    }
    .vals-grid {
        grid-template-columns: 1fr;
    }
    .ub-grid {
        display: block;
    }
}
@media (max-width: 600px) {
    .ft-top,
    .frow,
    .svc-grid,
    .sub-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }
}
