/* =========================================================
   Shivoham Prime — premium light theme (MedSpa Prime aligned)
   Palette: White (#ffffff) / Soft cream (#f8f6f2) / Ink (#1e1e1e) / Gold (#c9a96a)
   ========================================================= */

:root {
    --bg: #ffffff;
    --bg-1: #f8f6f2;
    --bg-2: #ffffff;
    --bg-3: #fbf9f4;
    --surface: #ffffff;
    --surface-2: #f8f6f2;
    --border: rgba(20,20,20,0.08);
    --border-gold: rgba(201,169,106,0.38);
    --fg: #1e1e1e;
    --fg-muted: #5a5a5a;
    --fg-dim: #7a7a7a;
    --gold: #c9a96a;
    --gold-2: #b08f4d;
    --gold-3: #dcc28a;
    --gold-soft: rgba(201,169,106,0.14);
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-gold: 0 14px 40px -14px rgba(201,169,106,0.45);
    --shadow-card: 0 25px 60px -30px rgba(20,20,20,0.18);
    --ease: cubic-bezier(.4,.14,.3,1);
    --container: 1200px;
    --section-y: clamp(56px, 6.5vw, 96px);
    --hero-y: clamp(90px, 10vw, 130px);
    --header-h: 112px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0 0 .6em; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--fg); }
p { margin: 0 0 1em; color: var(--fg-muted); }

::selection { background: var(--gold); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: #fff; padding: .5rem 1rem; z-index: 9999; font-weight: 600; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-y) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head p { font-size: 1.05rem; color: var(--fg-muted); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px;
    font-weight: 600; font-size: .95rem; letter-spacing: .01em;
    border-radius: 999px;
    transition: transform .25s var(--ease), background .25s var(--ease),
                color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap; border: 1px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
    background: var(--gold); color: #ffffff;
    box-shadow: var(--shadow-gold);
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.btn--gold:hover {
    background: var(--gold-2); color: #ffffff;
    box-shadow: 0 14px 42px -10px rgba(201,169,106,.6);
}

.btn--ghost { background: transparent; color: var(--fg); border-color: rgba(0,0,0,0.18); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--dark { background: var(--fg); color: #fff; }
.btn--dark:hover { background: #2a2a2a; color: #fff; }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
    padding: 16px 0;
}
.site-header.is-scrolled { padding: 10px 0; background: rgba(255,255,255,0.96); border-bottom-color: var(--border); }

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { width: 271px; height: 80px; max-width: 100%; object-fit: contain; object-position: left center; transition: height .3s var(--ease), width .3s var(--ease); }
.site-header.is-scrolled .brand__logo { width: 220px; height: 64px; }

.nav { display: flex; align-items: center; gap: 40px; }
.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__link {
    position: relative;
    font-size: .95rem; font-weight: 500; color: var(--fg);
    padding: 6px 0;
}
.nav__link::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--gold); }

.nav__cta { padding: 11px 22px; font-size: .88rem; }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; border-radius: 8px; border: 1px solid var(--border); background: transparent; }
.nav-toggle span {
    position: absolute; left: 12px; right: 12px; height: 2px;
    background: var(--fg); border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(86px, 9vw, 120px) 0 clamp(50px, 6vw, 80px);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 900px) {
    .hero { min-height: calc(100vh - var(--header-h)); }
}

.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero__bg::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(201,169,106,.18), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(201,169,106,.12), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
}
.hero__grid {
    position: absolute; inset: -2px;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    animation: gridPan 40s linear infinite;
}
@keyframes gridPan { to { background-position: 72px 72px; } }

.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; will-change: transform; }
.hero__orb--1 {
    top: -12%; left: -8%;
    width: clamp(320px, 42vw, 640px); aspect-ratio: 1;
    background: radial-gradient(circle, rgba(201,161,74,.32), transparent 65%);
    animation: orbFloat1 22s ease-in-out infinite;
}
.hero__orb--2 {
    bottom: -18%; right: -10%;
    width: clamp(280px, 36vw, 560px); aspect-ratio: 1;
    background: radial-gradient(circle, rgba(201,169,106,.25), transparent 65%);
    animation: orbFloat2 28s ease-in-out infinite;
}
.hero__orb--3 {
    top: 45%; left: 50%;
    width: clamp(180px, 22vw, 340px); aspect-ratio: 1;
    background: radial-gradient(circle, rgba(207,160,80,.22), transparent 65%);
    transform: translate(-50%, -50%);
    animation: orbFloat3 19s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(90px,-50px) scale(1.08); } 66% { transform: translate(-60px,70px) scale(0.94); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-100px,-70px) scale(1.18); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .85; } 50% { transform: translate(-45%,-55%) scale(1.22); opacity: 1; } }

.hero__inner { position: relative; max-width: 940px; margin: 0 auto; text-align: center; }
.hero__inner > * { opacity: 0; animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero__inner > *:nth-child(1) { animation-delay: .15s; }
.hero__inner > *:nth-child(2) { animation-delay: .30s; }
.hero__inner > *:nth-child(3) { animation-delay: .50s; }
.hero__inner > *:nth-child(4) { animation-delay: .70s; }
.hero__inner > *:nth-child(5) { animation-delay: .90s; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(34px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
    font-size: clamp(2.2rem, 5.6vw, 4.4rem);
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--fg);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero__title .highlight {
    background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold) 30%, var(--gold-3) 50%, var(--gold) 70%, var(--gold-2) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: goldShimmer 5s linear infinite;
}
@keyframes goldShimmer {
    from { background-position: 200% 50%; }
    to   { background-position: -100% 50%; }
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: var(--fg-muted);
    max-width: 720px; margin: 0 auto 36px;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__cta .btn--gold {
    position: relative;
    box-shadow: 0 10px 40px -15px rgba(201,169,106,.55);
    animation: ctaGlow 2.8s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%,100% { box-shadow: 0 10px 40px -15px rgba(201,169,106,.55), 0 0 0 0 rgba(201,169,106,.30); }
    50%     { box-shadow: 0 14px 50px -10px rgba(201,169,106,.9),  0 0 0 12px rgba(201,169,106,0); }
}

.hero__meta { margin-top: 44px; display: flex; justify-content: center; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.hero__meta-item { text-align: center; }
.hero__meta-item strong { display: block; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold); font-weight: 700; margin-bottom: 2px; }
.hero__meta-item span { font-size: .82rem; color: var(--fg-dim); letter-spacing: .08em; text-transform: uppercase; }

.hero__scroll {
    position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--fg-dim); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
    opacity: .6; pointer-events: none;
    animation: scrollHint 2.4s ease-in-out infinite;
}
.hero__scroll::after {
    content: ""; width: 1px; height: 34px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollHint {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: .4; }
    50%     { transform: translateX(-50%) translateY(8px); opacity: .95; }
}

/* ---------- Services grid ---------- */
.services { background: var(--bg-1); }
.services-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
    position: relative;
    padding: 36px 30px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    overflow: hidden;
}
.service-card::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 0% 0%, var(--gold-soft), transparent 50%);
    opacity: 0; transition: opacity .4s var(--ease);
    pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-gold); box-shadow: var(--shadow-card); }
.service-card:hover::before { opacity: 1; }

.service-card__icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--gold-soft); color: var(--gold);
    margin-bottom: 22px; border: 1px solid var(--border-gold);
    transition: transform .35s var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { margin: 0 0 18px; font-size: .95rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; }
.service-card__link:hover { gap: 12px; }

/* ---------- How it works ---------- */
.how { background: var(--bg); }
.steps { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
    padding: 32px 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.step__number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 12px; opacity: .9;
}
.step h3 { font-size: 1.15rem; }
.step p { margin: 0; font-size: .95rem; }

/* ---------- Why choose us — forced 3 x 3 on desktop ---------- */
.why { background: var(--bg-1); }
.why-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* 4-item variant — locked to 2×2 so cards have room to breathe at every width */
.why-grid--four { grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid--four { grid-template-columns: repeat(2, 1fr); } }
.why-item {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex; gap: 16px; align-items: flex-start;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-item:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.why-item__check {
    flex-shrink: 0;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--gold-soft); color: var(--gold);
    display: grid; place-items: center;
    border: 1px solid var(--border-gold);
}
.why-item__check svg { width: 14px; height: 14px; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { margin: 0; font-size: .92rem; }

/* ---------- CTA band (glass card + floating orbs + gradient border) ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(60px, 7vw, 100px) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
    text-align: center;
}
.cta-band::before,
.cta-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}
.cta-band::before {
    width: clamp(320px, 40vw, 560px); aspect-ratio: 1;
    top: -20%; left: -10%;
    background: radial-gradient(circle, rgba(201,161,74,0.35), transparent 65%);
    animation: ctaOrb1 22s ease-in-out infinite;
}
.cta-band::after {
    width: clamp(280px, 34vw, 460px); aspect-ratio: 1;
    bottom: -25%; right: -10%;
    background: radial-gradient(circle, rgba(201,169,106,0.25), transparent 65%);
    animation: ctaOrb2 26s ease-in-out infinite;
}
@keyframes ctaOrb1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(70px,40px) scale(1.1); }
}
@keyframes ctaOrb2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(-60px,-40px) scale(1.12); }
}

.cta-band__inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,253,247,0.75));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 26px;
    box-shadow:
        0 30px 80px -28px rgba(201,169,106,0.28),
        0 0 0 1px rgba(255,255,255,0.6) inset;
}
.cta-band__buttons { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
/* Gradient border */
.cta-band__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--gold-3) 0%, rgba(201,169,106,0) 35%, rgba(201,169,106,0) 65%, var(--gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
/* Sparkle corner */
.cta-band__inner::after {
    content: "✦";
    position: absolute;
    top: 22px; right: 32px;
    color: var(--gold);
    font-size: 1.35rem;
    opacity: 0.55;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes sparkle {
    0%,100% { opacity: 0.35; transform: scale(1) rotate(0deg); }
    50%     { opacity: 0.85; transform: scale(1.25) rotate(180deg); }
}

.cta-band h2 {
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    margin-bottom: 14px;
}
.cta-band p {
    font-size: 1.05rem;
    margin: 0 auto 26px;
    max-width: 580px;
}

/* ---------- Page hero (sub-pages) — tighter top spacing ---------- */
.page-hero {
    padding: clamp(40px, 5vw, 68px) 0 clamp(28px, 3.5vw, 48px);
    text-align: center; position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 10%, rgba(201,169,106,.16), transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(201,161,74,.10), transparent 55%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { font-size: 1.08rem; color: var(--fg-muted); max-width: 700px; margin: 0 auto; }

/* ---------- Service detail ---------- */
.service-detail { display: grid; gap: 32px; grid-template-columns: 1fr; padding: clamp(48px, 6vw, 80px) 0; border-bottom: 1px solid var(--border); align-items: center; }
/* Mobile-first: the visual (image) shows before the content */
.service-detail__visual { order: -1; }
@media (min-width: 860px) {
    .service-detail { grid-template-columns: 1fr 1fr; gap: 72px; }
    .service-detail__visual { order: 0; }
    .service-detail:nth-child(even) .service-detail__visual { order: -1; }
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail h2 { font-size: clamp(1.75rem, 3.4vw, 2.4rem); }
.service-detail__list { margin: 22px 0 28px; }
.service-detail__list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; color: var(--fg-muted);
    border-bottom: 1px dashed var(--border);
}
.service-detail__list li::before {
    content: ""; flex-shrink: 0; width: 18px; height: 18px;
    background: var(--gold-soft); border: 1px solid var(--border-gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
    margin-top: 4px;
}
.service-detail__visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(201,169,106,.12), rgba(201,169,106,0) 60%),
        linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    display: grid; place-items: center;
    position: relative; overflow: hidden;
}
.service-detail__visual svg { width: 30%; height: auto; color: var(--gold); opacity: .9; }
.service-detail__visual::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201,169,106,.14), transparent 60%);
}

/* ---------- About ---------- */
.about-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
.about-visual { order: -1; }
@media (min-width: 860px) {
    .about-grid { grid-template-columns: 5fr 6fr; gap: 72px; }
    .about-visual { order: 0; }
}
.about-visual {
    aspect-ratio: 4/5; border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201,169,106,.25), transparent 55%),
        linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    position: relative; overflow: hidden; display: grid; place-items: center;
}
.about-visual::before {
    content: "SP"; font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 18vw, 14rem); font-weight: 700;
    color: rgba(201,169,106,.28); letter-spacing: -.04em;
}
.about h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.values-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 28px; }
.value { padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.value:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.value h3 { font-size: 1.1rem; color: var(--gold); }
.value p { margin: 0; font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 50px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 6fr; gap: 72px; } }

.contact-info h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
.contact-info__list { margin-top: 28px; display: grid; gap: 18px; }
.contact-info__item { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: flex; gap: 16px; align-items: flex-start; }
.contact-info__item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info__item h4 { font-size: .95rem; margin: 0 0 4px; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-dim); font-weight: 600; }
.contact-info__item p, .contact-info__item a { margin: 0; color: var(--fg); font-size: 1rem; }

.form-card { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: .95rem; border: 1px solid transparent; }
.form-alert--success { background: rgba(52,168,83,.10); border-color: rgba(52,168,83,.35); color: #1a6a2f; }
.form-alert--error   { background: rgba(220,52,52,.08); border-color: rgba(220,52,52,.35); color: #a41717; }

.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-dim); }
.form-field input,
.form-field textarea {
    width: 100%; padding: 14px 16px;
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--fg);
    font: inherit; font-size: .98rem;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
    outline: none; border-color: var(--gold);
    background: #fff; box-shadow: 0 0 0 3px rgba(201,169,106,.15);
}
.form-field .error-text { font-size: .82rem; color: #c0342f; min-height: 1em; }
.form-field.has-error input,
.form-field.has-error textarea { border-color: rgba(220,52,52,.6); }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-submit { margin-top: 4px; width: 100%; padding: 16px 24px; }
@media (min-width: 640px) { .form-submit { width: auto; } }

/* ---------- Consent checkboxes ---------- */
.form-consent { display: grid; gap: 12px; margin: 4px 0 20px; }
.form-consent__item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px 16px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color .25s var(--ease);
}
.form-consent__item.has-error { border-color: rgba(220,52,52,.6); }
.form-consent__item input[type="checkbox"] {
    appearance: none; flex-shrink: 0;
    width: 20px; height: 20px; margin-top: 2px;
    border: 1.5px solid rgba(0,0,0,.22); border-radius: 5px;
    background: transparent; cursor: pointer; position: relative;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.form-consent__item input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.form-consent__item input[type="checkbox"]:checked::after {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.form-consent__item input[type="checkbox"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-consent__item label { font-size: .88rem; color: var(--fg-muted); line-height: 1.55; cursor: pointer; margin: 0; letter-spacing: 0; text-transform: none; font-weight: 400; }
.form-consent__item label a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.form-consent__item label a:hover { color: var(--gold-2); }

/* ---------- 404 error page ---------- */
.error-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(80px, 10vw, 120px) 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 900px) {
    .error-page { min-height: calc(100vh - var(--header-h)); }
}
.error-page__inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 8px;
}
.error-page__code {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 45%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    margin-bottom: 18px;
    animation: goldShimmer 6s linear infinite;
    background-size: 250% 100%;
    opacity: 0.95;
}
.error-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 14px;
}
.error-page p {
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 0;
}
.error-page__actions {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin: 34px 0 40px;
}
.error-page__links {
    padding-top: 26px;
    border-top: 1px solid var(--border);
}
.error-page__hint {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 12px;
}
.error-page__links ul {
    display: inline-flex;
    gap: 10px 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}
.error-page__links a {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
}
.error-page__links a:hover {
    color: var(--gold-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------- Prose (legal) ---------- */
.prose { max-width: 780px; margin: 0 auto; padding: clamp(32px, 5vw, 56px) 0; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.5em; color: var(--gold); }
.prose p, .prose li { color: var(--fg-muted); font-size: 1rem; }
.prose ul { padding-left: 1.4em; margin: 0 0 1.2em; list-style: disc; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose__meta { color: var(--fg-dim); font-size: .9rem; margin-bottom: 2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-1); padding: 56px 0 22px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 38px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; } }
.brand--footer .brand__logo { width: 271px; height: 80px; }
.footer-tagline { margin-top: 16px; color: var(--fg-dim); font-size: .95rem; max-width: 360px; }
.footer-heading { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg); margin: 0 0 14px; font-weight: 600; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--fg-dim); font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    padding-top: 22px; border-top: 1px solid var(--border);
    color: var(--fg-dim); font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom__links a { color: var(--fg-dim); }
.footer-bottom__links a:hover { color: var(--gold); }
.footer-bottom__tag { color: var(--gold); letter-spacing: .1em; }

/* =========================================================
   NEW HOMEPAGE SECTIONS (v3 premium polish)
   ========================================================= */

/* Typographic accents used across headings */
.serif-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.section--dark .serif-italic { color: #dcc28a; }
.section--white .serif-italic,
.services-row .serif-italic,
.why-clean .serif-italic,
.faq .serif-italic,
.founder-v2 .serif-italic,
.audit .serif-italic,
.cta-band .serif-italic {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 60%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.gold-underline {
    position: relative; display: inline-block;
    background: linear-gradient(180deg, transparent 80%, rgba(201,169,106,0.22) 80%);
    padding: 0 2px;
}

.section-head--left { margin-left: 0; text-align: left; max-width: 720px; }

/* ---------- Hero enhancements ---------- */
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid var(--border-gold);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
    font-size: .78rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold-2);
    margin-bottom: 22px;
}
.hero__badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #1aa86a;
    box-shadow: 0 0 0 4px rgba(26,168,106,0.2);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(26,168,106,0.2); }
    50%     { box-shadow: 0 0 0 8px rgba(26,168,106,0); }
}
.hero__meta { margin-top: 52px; gap: clamp(16px, 3vw, 44px); align-items: center; }
.hero__meta-divider {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}
@media (max-width: 640px) { .hero__meta-divider { display: none; } }

/* ---------- Trust marquee ---------- */
.trust {
    background: var(--bg-1);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    display: grid; gap: 14px;
}
.trust__label {
    text-align: center;
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--fg-dim);
}
.trust__track {
    overflow: hidden; position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trust__row {
    display: flex; gap: 0;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.trust__row span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700; font-style: italic;
    color: var(--fg);
    padding: 0 24px;
}
.trust__row em {
    color: var(--gold);
    font-style: normal;
    font-size: .9rem;
    align-self: center;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Who this is for (numbered, line under on hover) ---------- */
.who-for { padding-top: clamp(72px, 8vw, 110px); padding-bottom: clamp(72px, 8vw, 110px); }
.who-for__grid {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .who-for__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } }
@media (min-width: 1000px) { .who-for__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.who-for__item {
    position: relative;
    padding: 8px 4px 18px;
    transition: transform .35s var(--ease);
}
.who-for__num {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .9rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: .08em;
    margin-bottom: 18px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-gold);
}
.who-for__icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(201,169,106,0.14), rgba(201,169,106,0.04));
    color: var(--gold);
    border: 1px solid var(--border-gold);
    margin-bottom: 20px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.who-for__item:hover { transform: translateY(-6px); }
.who-for__item:hover .who-for__icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 16px 32px -14px rgba(201,169,106,.55);
}
.who-for__icon svg { width: 26px; height: 26px; }
.who-for__item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.who-for__item p { margin: 0; font-size: .92rem; color: var(--fg-muted); }
.who-for__line {
    position: absolute; left: 4px; bottom: 0;
    height: 2px; width: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width .45s var(--ease);
}
.who-for__item:hover .who-for__line { width: calc(100% - 8px); }

/* ---------- Services rows (richer hover) ---------- */
.services-row { padding-top: clamp(72px, 8vw, 110px); padding-bottom: clamp(72px, 8vw, 110px); }
.srow-list {
    display: grid; gap: 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.srow {
    display: grid;
    grid-template-columns: auto 56px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 28px 8px;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
    transition: padding .35s var(--ease), background .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.srow::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(201,169,106,0.10), rgba(201,169,106,0.02) 55%, transparent 80%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}
.srow::after {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    transform: scaleY(0); transform-origin: top;
    transition: transform .45s var(--ease);
}
.srow:hover { padding-left: 20px; }
.srow:hover::before { opacity: 1; }
.srow:hover::after { transform: scaleY(1); }
.srow__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem; font-weight: 700;
    color: var(--gold); min-width: 48px; letter-spacing: -0.02em;
    z-index: 1;
}
.srow__icon {
    width: 58px; height: 58px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(201,169,106,0.14), rgba(201,169,106,0.03));
    color: var(--gold);
    border: 1px solid var(--border-gold);
    display: grid; place-items: center;
    transition: transform .35s var(--ease);
    z-index: 1;
}
.srow:hover .srow__icon { transform: scale(1.1) rotate(-6deg); }
.srow__icon svg { width: 28px; height: 28px; }
.srow__body { z-index: 1; }
.srow__body h3 { font-size: 1.22rem; margin-bottom: 4px; }
.srow__body p { margin: 0; font-size: .96rem; }
.srow__arrow {
    color: var(--gold);
    transition: transform .35s var(--ease), color .35s var(--ease);
    z-index: 1;
}
.srow:hover .srow__arrow { transform: translateX(8px); color: var(--gold-2); }
@media (max-width: 640px) {
    .srow { grid-template-columns: auto 1fr auto; gap: 14px; padding: 22px 0; }
    .srow__icon { display: none; }
    .srow__body h3 { font-size: 1.05rem; }
    .srow:hover { padding-left: 0; }
}

/* ---------- How-it-works flow ---------- */
.how-flow .flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0; margin: 0;
    list-style: none;
    position: relative;
}
@media (min-width: 880px) {
    .how-flow .flow { grid-template-columns: repeat(3, 1fr); gap: 48px; }
    .how-flow .flow::before {
        content: ""; position: absolute;
        left: 10%; right: 10%; top: 44px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-gold) 15%, var(--border-gold) 85%, transparent);
    }
}
.flow__step { position: relative; }
.flow__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 86px; height: 86px; border-radius: 50%;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--gold-3), var(--gold) 50%, var(--gold-2)) border-box;
    border: 2px solid transparent;
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem; font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px -14px rgba(201,169,106,.5);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    position: relative; z-index: 1;
}
.flow__num span { line-height: 1; }
.flow__step:hover .flow__num {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 18px 40px -12px rgba(201,169,106,.7);
}
.flow__step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.flow__step p { margin: 0; font-size: .95rem; max-width: 320px; }

/* ---------- Results (DARK) — dramatic numbers ---------- */
.results { position: relative; overflow: hidden; isolation: isolate; padding: clamp(80px, 9vw, 120px) 0; }
.results__glow {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201,161,74,0.22), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201,161,74,0.12), transparent 50%);
}
.results__dots {
    position: absolute; inset: 0; z-index: -1;
    background-image:
        radial-gradient(rgba(201,161,74,0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    opacity: 0.6;
}

.stats {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 72px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 48px;
}
@media (min-width: 720px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    .stats .stat + .stat {
        border-left: 1px solid rgba(255,255,255,0.08);
        padding-left: 40px;
    }
}
.stat {
    text-align: left;
    padding: 4px 0 4px 4px;
    transition: transform .35s var(--ease);
}
.stat:hover { transform: translateY(-4px); }
.stat__label {
    display: block;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}
.stat strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    background: linear-gradient(135deg, #dcc28a 0%, var(--gold) 45%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    margin-bottom: 14px;
}
.stat strong sup {
    font-size: 0.55em;
    top: -0.35em;
    position: relative;
    margin-left: 4px;
}
.stat p { margin: 0; color: rgba(255,255,255,0.55); font-size: .9rem; }

.quote {
    position: relative;
    margin: 0 auto;
    max-width: 820px;
    padding: 44px clamp(22px, 4vw, 50px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    backdrop-filter: blur(6px);
}
.quote__mark {
    position: absolute;
    top: -22px; left: 32px;
    color: var(--gold);
    filter: drop-shadow(0 10px 20px rgba(201,169,106,0.45));
}
.quote blockquote {
    margin: 0 0 26px;
    font-size: clamp(1.08rem, 1.9vw, 1.35rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}
.quote blockquote em {
    font-style: italic;
    color: #dcc28a;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}
.quote figcaption {
    display: flex; gap: 14px; align-items: center;
    font-size: .9rem;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.quote__avatar {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #dcc28a, var(--gold));
    color: #1e1e1e;
    font-weight: 700; font-size: .92rem;
    letter-spacing: 0.02em;
}
.quote figcaption strong { display: block; color: #dcc28a; font-weight: 600; margin-bottom: 2px; }
.quote figcaption span { color: rgba(255,255,255,0.6); }

/* ---------- Founder v2 (typography-led pull quote) ---------- */
.founder-v2 { padding: clamp(80px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.founder-v2::before {
    content: "";
    position: absolute;
    top: -50%; left: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,106,0.08), transparent 70%);
    pointer-events: none;
}
.founder-v2__wrap {
    max-width: 920px; margin: 0 auto;
    text-align: center;
    position: relative;
}
.founder-v2__quote {
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--fg);
    position: relative;
    margin-top: 28px;
    margin-bottom: 36px;
}
.founder-v2__quote .open-q {
    position: absolute;
    top: -40px; left: 50%; transform: translateX(-50%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 8rem; line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
}
.founder-v2__meta { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.founder-v2__sig {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-size: 1.7rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.founder-v2__role {
    font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--fg-dim);
}

/* ---------- Audit offer (enhanced) ---------- */
.audit { padding: clamp(72px, 8vw, 110px) 0; position: relative; overflow: hidden; isolation: isolate; }
.audit__bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(201,161,74,0.25), transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(201,169,106,0.18), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}
.audit__card {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 64px);
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,253,247,0.8));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 26px;
    box-shadow:
        0 30px 80px -30px rgba(201,169,106,0.4),
        0 0 0 1px rgba(255,255,255,0.7) inset;
    text-align: center;
}
.audit__card::before {
    content: ""; position: absolute; inset: 0;
    padding: 1.5px; border-radius: 26px;
    background: linear-gradient(135deg, var(--gold-3) 0%, transparent 35%, transparent 65%, var(--gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.audit__corner {
    position: absolute; width: 26px; height: 26px;
    border: 2px solid var(--gold);
    pointer-events: none; opacity: 0.6;
}
.audit__corner--tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; border-top-left-radius: 6px; }
.audit__corner--br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; border-bottom-right-radius: 6px; }

.audit__tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}
.audit__card h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.audit__card p {
    font-size: 1.06rem;
    max-width: 640px; margin: 0 auto 30px;
}
.audit__benefits {
    display: grid; gap: 14px;
    max-width: 580px; margin: 0 auto 34px;
    text-align: left;
    grid-template-columns: 1fr;
}
@media (min-width: 560px) { .audit__benefits { grid-template-columns: repeat(2, 1fr); } }
.audit__benefits li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: .96rem; color: var(--fg);
}
.audit__benefits li::before {
    content: ""; flex-shrink: 0; width: 22px; height: 22px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(201,169,106,0.16), rgba(201,169,106,0.04)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 13px;
    border: 1px solid var(--border-gold);
}
.audit__cta { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.audit__note { font-size: .82rem; color: var(--fg-dim); }

/* ---------- Why clean (numbered, open) ---------- */
.why-clean { padding-top: clamp(72px, 8vw, 110px); padding-bottom: clamp(72px, 8vw, 110px); }
.why-clean__grid {
    display: grid; gap: 40px 48px;
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
@media (min-width: 700px)  { .why-clean__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-clean__grid { grid-template-columns: repeat(3, 1fr); gap: 48px 64px; } }
.why-clean__item {
    position: relative;
    padding-top: 6px;
    transition: transform .3s var(--ease);
}
.why-clean__num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-gold);
    width: 46px;
    letter-spacing: .04em;
}
.why-clean__item:hover { transform: translateY(-4px); }
.why-clean__item h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--fg); }
.why-clean__item p { margin: 0; font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-1); padding-top: clamp(72px, 8vw, 110px); padding-bottom: clamp(72px, 8vw, 110px); }
.faq__wrap { max-width: 880px; }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq__item {
    border-bottom: 1px solid var(--border);
    transition: background .25s var(--ease);
}
.faq__item[open] { background: linear-gradient(180deg, rgba(201,169,106,0.03), transparent); }
.faq__item > summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: color .25s var(--ease);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__q {
    display: flex; align-items: center; gap: 16px;
    font-weight: 600;
    font-size: 1.04rem;
    color: var(--fg);
}
.faq__qnum {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .85rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
}
.faq__item > summary:hover .faq__q { color: var(--gold); }
.faq__chev {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform .3s var(--ease);
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__answer {
    padding: 0 6px 24px 42px;
    animation: faqSlide .35s var(--ease);
}
.faq__answer p { margin: 0; color: var(--fg-muted); font-size: .96rem; line-height: 1.65; }
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
    .faq__answer { padding-left: 6px; }
}

/* Section background modifiers */
.section--white { background: #ffffff; }
.section--dark  { background: #131313; color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--dark .eyebrow,
.section--dark .section-head .eyebrow { color: var(--gold-3); }
.section--dark .eyebrow::before { background: var(--gold-3); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Staggered delays when multiple reveal elements share a parent */
.who-for__item.reveal:nth-child(2)  { transition-delay: .08s; }
.who-for__item.reveal:nth-child(3)  { transition-delay: .16s; }
.who-for__item.reveal:nth-child(4)  { transition-delay: .24s; }
.srow.reveal:nth-child(2)           { transition-delay: .08s; }
.srow.reveal:nth-child(3)           { transition-delay: .16s; }
.flow__step.reveal:nth-child(2)     { transition-delay: .12s; }
.flow__step.reveal:nth-child(3)     { transition-delay: .24s; }
.stat.reveal:nth-child(2)           { transition-delay: .1s; }
.stat.reveal:nth-child(3)           { transition-delay: .2s; }
.why-clean__item.reveal:nth-child(2) { transition-delay: .06s; }
.why-clean__item.reveal:nth-child(3) { transition-delay: .12s; }
.why-clean__item.reveal:nth-child(4) { transition-delay: .18s; }
.why-clean__item.reveal:nth-child(5) { transition-delay: .24s; }
.why-clean__item.reveal:nth-child(6) { transition-delay: .30s; }
.faq__item.reveal:nth-child(2)      { transition-delay: .05s; }
.faq__item.reveal:nth-child(3)      { transition-delay: .10s; }
.faq__item.reveal:nth-child(4)      { transition-delay: .15s; }
.faq__item.reveal:nth-child(5)      { transition-delay: .20s; }
.faq__item.reveal:nth-child(6)      { transition-delay: .25s; }

/* ---------- Mobile nav / responsive ---------- */
@media (max-width: 860px) {
    /* Header stays above everything so hamburger is always clickable */
    .site-header { z-index: 130; }

    .nav-toggle { display: block; position: relative; z-index: 135; }

    .nav {
        display: flex;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(88vw, 360px);
        background: #ffffff;
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: clamp(96px, 14vh, 124px) 24px 28px;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        z-index: 110;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: -24px 0 60px rgba(20,20,20,.18);
    }
    .nav.is-open { transform: translateX(0); }

    /* Top accent line inside the drawer */
    .nav::before {
        content: "";
        position: sticky; top: 0;
        display: block;
        height: 3px;
        margin: -1px -24px 28px;
        background: linear-gradient(90deg, transparent 0%, var(--gold-3) 30%, var(--gold) 50%, var(--gold-3) 70%, transparent 100%);
        flex-shrink: 0;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
        margin: 0 0 24px; padding: 0;
        list-style: none;
    }
    .nav__list li { width: 100%; list-style: none; }

    .nav__link {
        display: flex; align-items: center; gap: 12px;
        width: 100%;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: .01em;
        padding: 16px 4px;
        border-bottom: 1px solid var(--border);
        color: var(--fg);
        position: relative;
        transition: color .2s var(--ease), padding-left .25s var(--ease);
    }
    .nav__link::after { display: none; }
    .nav__link::before {
        content: "";
        width: 6px; height: 6px; border-radius: 999px;
        background: var(--gold);
        opacity: 0;
        transform: scale(0.5);
        transition: opacity .25s var(--ease), transform .25s var(--ease);
    }
    .nav__link.is-active { color: var(--gold-2); padding-left: 6px; }
    .nav__link.is-active::before { opacity: 1; transform: scale(1); }
    .nav__link:hover, .nav__link:focus-visible { color: var(--gold); padding-left: 6px; }
    .nav__link:hover::before, .nav__link:focus-visible::before { opacity: 1; transform: scale(1); }

    .nav__cta {
        display: inline-flex;
        margin-top: auto;
        width: 100%;
        padding: 15px 22px;
        font-size: .95rem;
        justify-content: center;
        flex-shrink: 0;
    }

    body.nav-open { overflow: hidden; }
    body.nav-open::after {
        content: "";
        position: fixed; inset: 0;
        background: rgba(20,20,20,.5);
        z-index: 100;
        animation: navBackdropIn .3s var(--ease);
    }
    @keyframes navBackdropIn { from { opacity: 0; } to { opacity: 1; } }

    .brand__logo { width: 220px; height: 64px; max-width: 60vw; }
    .site-header.is-scrolled .brand__logo { width: 180px; height: 52px; }
    .brand--footer .brand__logo { width: 220px; height: 64px; }

    /* Hide scroll hint on mobile — it was overlapping hero content */
    .hero__scroll { display: none; }

    /* Footer: centre the brand row + bottom row on mobile */
    .footer-col--brand { text-align: center; }
    .footer-col--brand .brand { justify-content: center; }
    .footer-tagline { margin-left: auto; margin-right: auto; }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .footer-bottom__links { justify-content: center; }
}

@media (max-width: 560px) {
    .hero__meta { gap: 20px; }
    .hero__meta-item strong { font-size: 1.4rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .btn { padding: 13px 22px; font-size: .9rem; }
    .section-head { margin-bottom: 32px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero__inner > * { opacity: 1; animation: none; }
    .hero__orb { animation: none; }
}

/* =========================================================
   PREMIUM POLISH (v4)
   - Shared LP nav/footer (founding-partner + medspa-leads)
   - Premium buttons, section ornaments, glass cards
   ========================================================= */

/* ---------- Extra button sizes + blocks ---------- */
.btn--xl { padding: 17px 34px; font-size: 1rem; letter-spacing: .01em; }
.btn--block { display: inline-flex; width: 100%; justify-content: center; }

/* Stronger gold button (used across all pages) */
.btn--gold {
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 48%, var(--gold-2) 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: background-position .4s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--gold:hover {
    background-position: 100% 0%;
    box-shadow: 0 18px 46px -12px rgba(201,169,106,.7);
}

/* Typographic gradient helper */
.gold-grad {
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 55%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- LP shared: nav + footer ---------- */
.lp-body { background: var(--bg); }

.lp-nav {
    position: sticky; top: 0; z-index: 60;
    padding: 14px 0;
    background: rgba(255,255,255,0.78);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.lp-nav.is-scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: var(--border);
    padding: 10px 0;
}
.lp-nav__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-nav__brand img { width: 271px; height: 80px; max-width: min(271px, 58vw); object-fit: contain; object-position: left center; transition: height .3s var(--ease), width .3s var(--ease); }
.lp-nav.is-scrolled .lp-nav__brand img { width: 220px; height: 64px; }
.lp-nav__cta { padding: 11px 22px; font-size: .86rem; }
@media (max-width: 420px) {
    .lp-nav__cta { padding: 10px 16px; font-size: .78rem; }
    .lp-nav__brand img { width: 180px; height: 52px; }
}

.lp-footer {
    padding: 38px 0 30px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
    color: var(--fg-dim);
    font-size: .9rem;
}
.lp-footer__inner {
    display: grid; gap: 22px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}
@media (max-width: 720px) {
    .lp-footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.lp-footer__brand img { width: 271px; height: 80px; max-width: 100%; object-fit: contain; }
@media (max-width: 720px) { .lp-footer__brand img { width: 220px; height: 64px; } }
.lp-footer__cta { padding: 12px 22px; font-size: .88rem; justify-self: center; }
.lp-footer__meta {
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
    font-size: .82rem;
}
@media (max-width: 720px) { .lp-footer__meta { align-items: center; } }
.lp-footer__tag { color: var(--gold); letter-spacing: .12em; font-size: .76rem; }

/* ---------- Founding-partner: Hero v2 ---------- */
.lp-hero2 {
    position: relative; overflow: hidden; isolation: isolate;
    padding: clamp(70px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(201,169,106,0.22), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}
.lp-hero2__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.lp-hero2__bg::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(20,20,20,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,20,20,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 82%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 82%);
}
.lp-hero2__orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.lp-hero2__orb--1 {
    top: -14%; left: -10%;
    width: clamp(280px, 40vw, 540px); aspect-ratio: 1;
    background: radial-gradient(circle, rgba(201,161,74,.32), transparent 65%);
    animation: orbFloat1 22s ease-in-out infinite;
}
.lp-hero2__orb--2 {
    bottom: -22%; right: -12%;
    width: clamp(260px, 34vw, 480px); aspect-ratio: 1;
    background: radial-gradient(circle, rgba(201,169,106,.22), transparent 65%);
    animation: orbFloat2 28s ease-in-out infinite;
}
.lp-hero2__inner { position: relative; max-width: 920px; margin: 0 auto; }
.lp-hero2__title {
    font-size: clamp(2.1rem, 5.2vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.034em;
    margin: 22px 0 20px;
    line-height: 1.12;
}
.lp-hero2__sub {
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    color: var(--fg-muted);
    max-width: 680px; margin: 0 auto 34px;
}
.lp-hero2__cta {
    display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 48px;
}
.lp-hero2__stats {
    display: inline-flex; align-items: center; flex-wrap: wrap; gap: 20px clamp(18px, 4vw, 44px);
    margin: 0; padding: 22px 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,253,247,0.6));
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 18px 50px -30px rgba(201,169,106,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    list-style: none;
}
.lp-hero2__stats li {
    display: flex; flex-direction: column; align-items: center;
    line-height: 1.1; text-align: center;
}
.lp-hero2__stats li strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}
.lp-hero2__stats li strong i {
    font-style: normal;
    font-size: 0.6em;
    margin-left: 1px;
    vertical-align: super;
}
.lp-hero2__stats li span {
    font-size: .72rem; color: var(--fg-dim);
    letter-spacing: .06em; text-transform: uppercase;
    margin-top: 4px;
}
.lp-hero2__stats-divider {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}
@media (max-width: 560px) {
    .lp-hero2__stats { border-radius: 20px; padding: 20px 16px; }
    .lp-hero2__stats-divider { display: none; }
}

/* ---------- Founding-partner: live pill ---------- */
.lp-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--border-gold);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    font-size: .76rem; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold-2);
}
.lp-pill__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #1aa86a;
    box-shadow: 0 0 0 4px rgba(26,168,106,0.22);
    animation: dotPulse 2s ease-in-out infinite;
}
.lp-pill--live { }

/* ---------- Founding-partner: Why-this-offer ---------- */
.lp-why-offer { padding: clamp(68px, 8vw, 110px) 0; background: var(--bg); }
.fp-reasons {
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
    margin-top: 14px;
}
@media (min-width: 820px) { .fp-reasons { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.fp-reason {
    position: relative;
    padding: 32px 28px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    overflow: hidden;
}
.fp-reason::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transform-origin: center;
    transition: transform .5s var(--ease);
}
.fp-reason:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-card); }
.fp-reason:hover::before { transform: scaleX(1); }
.fp-reason__num {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: .06em;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 16px;
    min-width: 28px;
}
.fp-reason h3 { font-size: 1.15rem; margin-bottom: 8px; }
.fp-reason p  { margin: 0; font-size: .95rem; color: var(--fg-muted); }

/* ---------- Founding-partner: What you get (reuses .services-grid) ---------- */
.lp-what-you-get { padding: clamp(68px, 8vw, 110px) 0; background: var(--bg-1); }

/* ---------- Founding-partner: Pricing ---------- */
.lp-pricing { padding: clamp(68px, 8vw, 110px) 0; background: var(--bg); }
.fp-pricing {
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 860px) { .fp-pricing { grid-template-columns: 1fr 1fr; gap: 28px; } }
.fp-price {
    position: relative;
    padding: clamp(28px, 3vw, 40px);
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.fp-price:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--border-gold); }
.fp-price__label {
    display: block;
    font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--fg-dim); margin-bottom: 12px;
}
.fp-price__amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 700; color: var(--fg);
    letter-spacing: -0.02em; line-height: 1.05;
    margin-bottom: 12px;
}
.fp-price__amount small {
    font-family: 'Inter', sans-serif;
    font-weight: 500; color: var(--fg-dim);
    font-size: 1rem; margin-left: 4px; letter-spacing: 0;
}
.fp-price p { margin: 0 0 18px; font-size: .95rem; }
.fp-price__list { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.fp-price__list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .94rem; color: var(--fg);
}
.fp-price__list li::before {
    content: ""; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold-soft)
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 12px;
    border: 1px solid var(--border-gold);
    margin-top: 2px;
}
.fp-price--founding {
    background: linear-gradient(180deg, #ffffff, #f8f6f2);
    border-color: var(--border-gold);
    box-shadow: 0 30px 60px -30px rgba(201,169,106,0.45);
}
.fp-price--founding::before {
    content: ""; position: absolute; inset: 0;
    padding: 1.5px; border-radius: 22px;
    background: linear-gradient(135deg, var(--gold-3) 0%, transparent 40%, transparent 60%, var(--gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.fp-price__tag {
    position: absolute; top: -14px; left: 28px;
    display: inline-block;
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: #fff; font-weight: 700;
    padding: 6px 14px; border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
    box-shadow: 0 10px 28px -10px rgba(201,169,106,0.7);
}
.fp-pricing__note {
    margin: 32px auto 0; max-width: 680px; text-align: center;
    color: var(--fg-dim); font-size: .92rem;
}

/* ---------- Founding-partner: How-it-works flow ---------- */
.lp-steps-section { padding: clamp(68px, 8vw, 110px) 0; background: var(--bg-1); }
.lp-flow {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 34px;
    grid-template-columns: 1fr; position: relative;
}
@media (min-width: 880px) {
    .lp-flow { grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .lp-flow::before {
        content: ""; position: absolute; left: 12%; right: 12%; top: 42px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-gold) 16%, var(--border-gold) 84%, transparent);
    }
}
.lp-flow li { position: relative; text-align: left; }
.lp-flow__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 82px; height: 82px; border-radius: 50%;
    background:
        linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
        linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2)) border-box;
    border: 2px solid transparent;
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem; font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 14px 32px -14px rgba(201,169,106,0.55);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative; z-index: 1;
}
.lp-flow li:hover .lp-flow__num { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px -12px rgba(201,169,106,0.75); }
.lp-flow li h3 { font-size: 1.15rem; margin-bottom: 6px; }
.lp-flow li p { margin: 0; font-size: .95rem; max-width: 320px; }

/* ---------- Founding-partner: Fit section ---------- */
.lp-fit { padding: clamp(68px, 8vw, 110px) 0; background: var(--bg); }
.fp-fit {
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 820px) { .fp-fit { grid-template-columns: 1fr 1fr; gap: 28px; } }
.fp-fit__col {
    position: relative;
    padding: clamp(24px, 3vw, 34px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.fp-fit__col:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fp-fit__title {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 1.1rem; margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    width: 100%;
}
.fp-fit__col--yes .fp-fit__title::before {
    content: ""; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(26,168,106,0.14)
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a9a62' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 12px;
    border: 1px solid rgba(26,168,106,0.35);
}
.fp-fit__col--no .fp-fit__title::before {
    content: ""; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(220,52,52,0.1)
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0342f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") no-repeat center / 11px;
    border: 1px solid rgba(220,52,52,0.35);
}
.fp-fit__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.fp-fit__list li {
    padding-left: 26px; position: relative;
    font-size: .96rem; color: var(--fg);
}
.fp-fit__col--yes .fp-fit__list li::before {
    content: ""; position: absolute; left: 0; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: rgba(26,168,106,0.14)
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a9a62' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 9px;
    border: 1px solid rgba(26,168,106,0.3);
}
.fp-fit__col--no .fp-fit__list li::before {
    content: ""; position: absolute; left: 0; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: rgba(220,52,52,0.08)
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0342f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") no-repeat center / 9px;
    border: 1px solid rgba(220,52,52,0.3);
}

/* ---------- Founding-partner: Apply (form) ---------- */
.lp-apply {
    padding: clamp(72px, 9vw, 120px) 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(201,161,74,0.22), transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(201,169,106,0.18), transparent 55%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 100%);
}
.lp-apply__card {
    position: relative;
    max-width: 760px; margin: 0 auto;
    padding: clamp(30px, 4vw, 52px);
    background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(255,253,247,0.82));
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 26px;
    box-shadow: 0 30px 80px -28px rgba(201,169,106,0.4), 0 0 0 1px rgba(255,255,255,0.7) inset;
}
.lp-apply__card::before {
    content: ""; position: absolute; inset: 0;
    padding: 1.5px; border-radius: 26px;
    background: linear-gradient(135deg, var(--gold-3) 0%, transparent 40%, transparent 60%, var(--gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.lp-apply__head { text-align: center; margin-bottom: 26px; }
.lp-apply__head h2 { font-size: clamp(1.8rem, 3.8vw, 2.4rem); margin-bottom: 10px; }
.lp-apply__head p { margin: 0; color: var(--fg-muted); }
.lp-apply__note {
    margin: 14px 0 0; text-align: center;
    font-size: .82rem; color: var(--fg-dim); letter-spacing: .04em;
}

/* Chip choices (clinic type) */
.fp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.fp-chip {
    position: relative;
    cursor: pointer;
}
.fp-chip input { position: absolute; opacity: 0; pointer-events: none; }
.fp-chip span {
    display: inline-block;
    padding: 10px 16px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    font-size: .9rem; font-weight: 500; color: var(--fg);
    background: #fff;
    transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.fp-chip:hover span { border-color: var(--gold); color: var(--gold); }
.fp-chip input:checked + span {
    background: linear-gradient(135deg, rgba(201,169,106,0.12), rgba(201,169,106,0.04));
    border-color: var(--gold); color: var(--gold-2);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -10px rgba(201,169,106,0.5);
}

/* =========================================================
   medspa-leads: premium upgrades on top of inline styles
   ========================================================= */

/* Nothing else — medspa-leads is fully self-contained. */

/* =========================================================
   Trust strip (under hero) — clean horizontal capsule
   ========================================================= */
.trust-strip {
    list-style: none; padding: 0; margin: 36px 0 0;
    display: flex; flex-wrap: wrap; gap: 14px 24px;
    justify-content: center;
    color: var(--fg-muted);
    font-size: .92rem; font-weight: 500;
}
.trust-strip li {
    display: inline-flex; align-items: center; gap: 8px;
}
.trust-strip__check {
    display: inline-grid; place-items: center;
    width: 22px; height: 22px; border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-3), var(--gold));
    color: #fff; font-size: .78rem; font-weight: 800;
}
@media (max-width: 560px) {
    .trust-strip { gap: 10px 18px; font-size: .85rem; }
    .trust-strip__check { width: 18px; height: 18px; font-size: .7rem; }
}

/* =========================================================
   Services grid — 4-up variant for the new "What we build"
   ========================================================= */
/* 4-card variant — locked to 2×2 so cards have room to breathe at every width */
.services-grid--four { grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid--four { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Pain section — what clinics want to fix
   ========================================================= */
.pain { background: var(--bg-1); }
.pain-grid {
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.pain-item {
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pain-item:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.pain-item__icon {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,169,106,0.16), rgba(201,169,106,0.04));
    color: var(--gold-2);
    margin-bottom: 14px;
}
.pain-item__icon svg { width: 22px; height: 22px; }
.pain-item h3 { font-size: 1.08rem; margin: 0 0 8px; color: var(--fg); }
.pain-item p { font-size: .94rem; color: var(--fg-muted); margin: 0; line-height: 1.6; }

/* =========================================================
   Pricing — 3-tier home cards
   ========================================================= */
.pricing { background: #ffffff; }
.pricing-grid {
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 880px)  { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .pricing-grid { gap: 26px; } }

.pricing-card {
    position: relative;
    display: flex; flex-direction: column;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.pricing-card__head h3 { font-size: 1.3rem; margin: 0 0 6px; color: var(--fg); }
.pricing-card__head p  { font-size: .92rem; color: var(--fg-muted); margin: 0 0 22px; line-height: 1.55; }

.pricing-card__price { margin-bottom: 22px; }
.pricing-card__amount-prefix {
    display: block;
    font-size: .82rem; color: var(--fg-muted);
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: .02em;
}
.pricing-card__amount {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--fg);
    letter-spacing: -0.02em;
}
.pricing-card__amount small { font-size: .42em; color: var(--fg-muted); font-weight: 500; margin-left: 4px; }
.pricing-card__setup {
    display: block;
    font-size: .86rem; color: var(--fg-muted);
    margin-top: 4px;
}

/* Expandable details inside the featured pricing card (Website Care / SEO) */
.pricing-card__details {
    margin: 4px 0 22px;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-card__details > summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold-2);
    letter-spacing: .04em;
    text-transform: uppercase;
    user-select: none;
    transition: color .2s var(--ease);
}
.pricing-card__details > summary::-webkit-details-marker,
.pricing-card__details > summary::marker { display: none; content: ""; }
.pricing-card__details-label { flex: 1; }
.pricing-card__details-icon {
    flex-shrink: 0;
    display: inline-grid; place-items: center;
    width: 26px; height: 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-3), var(--gold));
    color: #fff;
    box-shadow: 0 4px 10px -4px rgba(201,169,106,0.7);
    transition: transform .3s var(--ease);
}
.pricing-card__details-icon svg { width: 12px; height: 12px; stroke-width: 2.6; }
.pricing-card__details[open] > summary .pricing-card__details-icon { transform: rotate(180deg); }
.pricing-card__details > summary:hover { color: var(--gold); }

.pricing-card__details-body {
    padding: 4px 0 16px;
    display: grid; gap: 14px;
}
.pricing-card__details-block {
    padding: 12px 14px;
    background: rgba(201,169,106,0.06);
    border: 1px solid rgba(201,169,106,0.18);
    border-radius: 12px;
}
.pricing-card__details-title {
    display: block;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 4px;
}
.pricing-card__details-block p {
    font-size: .86rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin: 0;
}

/* "Good to know" panel under pricing — composed, intentional layout */
.pricing-info {
    position: relative;
    margin-top: 36px;
    padding: 28px clamp(20px, 3vw, 36px);
    background: linear-gradient(180deg, #ffffff, var(--bg-1));
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 50px -30px rgba(20,20,20,0.18);
    overflow: hidden;
}
.pricing-info::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-3) 20%, var(--gold) 50%, var(--gold-3) 80%, transparent 100%);
}
.pricing-info__head {
    display: flex; align-items: center; gap: 10px;
    margin: 0 0 18px;
}
.pricing-info__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .74rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-2);
}
.pricing-info__eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--gold);
}
.pricing-info__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 760px) {
    .pricing-info__list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pricing-info__list > li {
    display: flex; align-items: flex-start; gap: 14px;
    min-height: 56px;
}
.pricing-info__icon {
    flex-shrink: 0;
    display: inline-grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,169,106,0.16), rgba(201,169,106,0.04));
    color: var(--gold-2);
    border: 1px solid var(--border-gold);
}
.pricing-info__icon svg { width: 19px; height: 19px; }
.pricing-info__list > li > div { display: flex; flex-direction: column; gap: 3px; }
.pricing-info__list > li strong {
    color: var(--fg);
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.35;
}
.pricing-info__list > li span {
    color: var(--fg-muted);
    font-size: .86rem;
    line-height: 1.55;
}

.pricing-card__list {
    list-style: none; padding: 0; margin: 0 0 26px;
    flex: 1;
}
.pricing-card__list li {
    position: relative;
    padding: 9px 0 9px 28px;
    font-size: .94rem; color: var(--fg);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.pricing-card__list li:first-child { border-top: 0; }
.pricing-card__list li::before {
    content: "";
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; border-radius: 999px;
    background: var(--gold-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 11px;
}

.pricing-card--featured {
    background: linear-gradient(180deg, #ffffff, #f8f6f2);
    border-color: var(--gold);
    box-shadow: 0 30px 70px -28px rgba(201,169,106,0.55);
    transform: translateY(-6px);
}
.pricing-card--featured:hover { transform: translateY(-10px); }
.pricing-card__tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
    color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px;
    box-shadow: 0 10px 24px -10px rgba(201,169,106,0.7);
    white-space: nowrap;
}

.pricing-note {
    margin-top: 28px; text-align: center;
    color: var(--fg-muted); font-size: .94rem;
    max-width: 760px; margin-left: auto; margin-right: auto;
}
.pricing-note strong { color: var(--fg); }

/* =========================================================
   Founding Clinic Partner Program (home + LPs — dark luxury band)
   ========================================================= */
.founding-partner {
    position: relative;
    color: #fff;
    padding: clamp(64px, 8vw, 110px) 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(201,169,106,0.14), transparent 60%),
        radial-gradient(800px 500px at 0% 100%, rgba(79,124,125,0.10), transparent 60%),
        #131313;
}
.founding-partner__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.founding-partner__orb { display: none; } /* radial gradients on the section now do this */

/* ---------- Grid: 2-col simple layout ---------- */
.founding-partner__grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
@media (min-width: 980px) {
    .founding-partner__grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 64px;
    }
}

/* ---------- Left text column ---------- */
.founding-partner__text { color: rgba(255,255,255,0.85); }

.founding-partner__flame {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px 8px 14px;
    background: linear-gradient(135deg, rgba(255,140,80,0.18), rgba(201,169,106,0.18));
    border: 1px solid rgba(255,140,80,0.4);
    border-radius: 999px;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffcd9b;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(255,140,80,0.18);
}
.founding-partner__flame-icon {
    color: #ff8c50;
    display: inline-flex;
    animation: fpFlameGlow 2s ease-in-out infinite;
}
@keyframes fpFlameGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255,140,80,0.6)); }
    50%      { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(255,140,80,0.9)); }
}

.founding-partner__title {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
}
.founding-partner__title em {
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 50%, var(--gold-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

.founding-partner__body { max-width: 540px; }
.founding-partner__body p {
    color: rgba(255,255,255,0.78);
    font-size: 1.04rem;
    line-height: 1.65;
    margin: 0 0 14px;
}
.founding-partner__body--soft {
    color: rgba(255,255,255,0.55) !important;
    font-size: .95rem !important;
    margin-bottom: 0 !important;
}

.founding-partner__availability {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(201,169,106,0.10);
    border: 1px solid rgba(201,169,106,0.30);
    border-radius: 999px;
    color: var(--gold-3);
    font-size: .9rem; font-weight: 500;
    margin: 22px 0 24px;
    width: fit-content;
    max-width: 100%;
    line-height: 1.4;
}
.founding-partner__availability-icon {
    display: inline-flex;
    color: var(--gold-3);
    flex-shrink: 0;
}

.founding-partner__cta-row {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.founding-partner__cta-row .btn { white-space: nowrap; }

/* Glow variant for primary CTA inside dark sections */
.btn--glow {
    box-shadow:
        0 14px 30px rgba(201,169,106,0.35),
        0 0 0 1px rgba(201,169,106,0.4),
        0 0 30px rgba(201,169,106,0.25);
}
.btn--glow:hover {
    box-shadow:
        0 18px 36px rgba(201,169,106,0.5),
        0 0 0 1px rgba(201,169,106,0.6),
        0 0 50px rgba(201,169,106,0.35);
}

/* Outline-on-dark button (secondary CTA) */
.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.28);
}
.btn--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold-3);
    background: rgba(201,169,106,0.06);
}

/* ---------- Right aside (benefits + tiers) ---------- */
.founding-partner__aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.founding-partner__card {
    position: relative;
    padding: 26px 24px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(201,169,106,0.30);
    border-radius: 22px;
    color: rgba(255,255,255,0.82);
    transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    isolation: isolate;
}
.founding-partner__card::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(360px 200px at 100% 0%, rgba(201,169,106,0.18), transparent 60%);
    pointer-events: none;
    z-index: -1;
    border-radius: inherit;
}
.founding-partner__card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,169,106,0.5);
    box-shadow: 0 24px 50px rgba(0,0,0,0.30);
}

.founding-partner__card-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
}
.founding-partner__card--tiers .founding-partner__card-head { align-items: flex-start; }

.founding-partner__card-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1410;
    box-shadow: 0 6px 14px rgba(201,169,106,0.32);
}
.founding-partner__card-title {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem; font-weight: 600;
    margin: 0;
    letter-spacing: -0.005em;
}
.founding-partner__tiers-meta {
    margin: 4px 0 0;
    font-size: .8rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: .03em;
}

/* Benefits list — 2-col grid */
.founding-partner__benefits-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 12px 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 480px) {
    .founding-partner__benefits-list { grid-template-columns: 1fr 1fr; }
}
.founding-partner__benefits-list li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: .92rem;
    line-height: 1.45;
}
.founding-partner__tick {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #1a1410;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    margin-top: 1px;
}

/* Tier list */
.founding-partner__tiers-list {
    list-style: none; padding: 0; margin: 0 0 14px;
    display: grid; gap: 10px;
}
.founding-partner__tier {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(201,169,106,0.18);
    border-radius: 14px;
    transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.founding-partner__tier:hover {
    transform: translateY(-2px);
    border-color: rgba(201,169,106,0.4);
    background: rgba(201,169,106,0.08);
}
.founding-partner__tier--featured {
    background: rgba(201,169,106,0.10);
    border-color: rgba(201,169,106,0.5);
    box-shadow: inset 0 0 0 1px rgba(201,169,106,0.15);
}

.ft-name {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600; font-size: 1.08rem;
    color: #fff;
    letter-spacing: -0.005em;
}
.ft-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,106,0.18);
    flex-shrink: 0;
}
.ft-pricing {
    text-align: right;
    line-height: 1.25;
}
.ft-price {
    display: inline-flex; align-items: baseline; gap: .5rem;
    font-size: .85rem; color: rgba(255,255,255,0.65);
    letter-spacing: .01em;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.ft-price strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 600;
    color: #fff;
    letter-spacing: -0.015em;
}
.ft-per {
    font-size: .9rem;
    color: rgba(255,255,255,0.55);
    margin-left: -.2rem;
}
.ft-setup {
    display: flex; align-items: baseline; gap: .55rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: .88rem;
    color: var(--gold-3);
    margin-top: .35rem;
    letter-spacing: .01em;
    font-weight: 500;
}

/* "Was" strikethrough — regular pricing shown beside founding price */
.ft-was {
    color: rgba(255,255,255,.75);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.005em;
    white-space: nowrap;
}
/* Custom strike — linear-gradient on <s> for a perfectly horizontal line */
.ft-was s {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 0 2px;
    line-height: 1;
    background-image: linear-gradient(
        to bottom,
        transparent calc(50% - 1.5px),
        var(--gold)  calc(50% - 1.5px),
        var(--gold)  calc(50% + 1.5px),
        transparent calc(50% + 1.5px)
    );
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
/* Slimmer strike for the setup line */
.ft-setup .ft-was {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: rgba(201,169,106,.85);
}
.ft-setup .ft-was s {
    background-image: linear-gradient(
        to bottom,
        transparent calc(50% - 1px),
        var(--gold)  calc(50% - 1px),
        var(--gold)  calc(50% + 1px),
        transparent calc(50% + 1px)
    );
}

.founding-partner__tiers-tagline {
    margin: 0 0 12px;
    font-size: .82rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.founding-partner__tiers-note {
    margin: 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: .03em;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 720px) {
    .founding-partner__card { padding: 22px 18px; }
    .founding-partner__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .founding-partner__cta-row { width: 100%; }
    .founding-partner__cta-row .btn { flex: 1 1 100%; justify-content: center; }
    .founding-partner__availability { font-size: .85rem; padding: 10px 14px; }
    .founding-partner__tier {
        flex-direction: column; align-items: flex-start;
        gap: 6px; padding: 14px 16px;
    }
    .ft-pricing { text-align: left; }
    .ft-price, .ft-setup { justify-content: flex-start; }
    .ft-name { font-size: 1.05rem; }
    .ft-price { font-size: .82rem; }
    .ft-price strong { font-size: 1.4rem; }
    .ft-was { font-size: 1.15rem; font-weight: 700; }
    .ft-setup { font-size: .85rem; }
    .ft-setup .ft-was { font-size: .9rem; font-weight: 600; }
}
@media (max-width: 480px) {
    .founding-partner__title { font-size: 1.7rem; }
    .founding-partner__card-icon { width: 28px; height: 28px; }
    .founding-partner__card-title { font-size: 1.08rem; }
    .founding-partner__benefits-list { grid-template-columns: 1fr; }
    .ft-price strong { font-size: 1.3rem; }
    .ft-was { font-size: 1.05rem; }
    .ft-setup .ft-was { font-size: .85rem; }
}

/* =========================================================
   Partnership models (founding-partner page — 3 model cards)
   ========================================================= */
.partner-models {
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 880px)  { .partner-models { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .partner-models { gap: 26px; } }

.partner-model {
    position: relative;
    display: flex; flex-direction: column;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.partner-model:hover { transform: translateY(-4px); border-color: var(--border-gold); }

.partner-model__icon {
    display: inline-grid; place-items: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,169,106,0.16), rgba(201,169,106,0.04));
    color: var(--gold-2);
    margin-bottom: 16px;
}
.partner-model__icon svg { width: 26px; height: 26px; }
.partner-model__head h3  { font-size: 1.25rem; margin: 0 0 4px; color: var(--fg); }
.partner-model__tag      { font-size: .85rem; color: var(--fg-muted); margin: 0 0 18px; }

.partner-model__pay {
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(201,169,106,0.08), rgba(201,169,106,0.02));
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 18px;
}
.partner-model__pay-label {
    display: block;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold-2);
    margin-bottom: 4px;
}
.partner-model__pay-value {
    display: block;
    font-size: 1rem; font-weight: 600; color: var(--fg);
}

.partner-model__list {
    list-style: none; padding: 0; margin: 0 0 22px;
    flex: 1;
}
.partner-model__list li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: .92rem; color: var(--fg);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.partner-model__list li:first-child { border-top: 0; }
.partner-model__list li::before {
    content: "";
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; border-radius: 999px;
    background: var(--gold-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 10px;
}

.partner-model--featured {
    background: linear-gradient(180deg, #ffffff, #f8f6f2);
    border-color: var(--gold);
    box-shadow: 0 30px 70px -28px rgba(201,169,106,0.55);
    transform: translateY(-6px);
}
.partner-model--featured:hover { transform: translateY(-10px); }
.partner-model__tag-pill {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
    color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px;
    box-shadow: 0 10px 24px -10px rgba(201,169,106,0.7);
    white-space: nowrap;
}

/* =========================================================
   Responsive polish — global guarantees so nothing overflows
   on any device class (320px → 1920px+)
   ========================================================= */

/* Prevent any media or block-level element from stretching beyond its parent. */
img, svg, video, iframe, canvas, picture { max-width: 100%; height: auto; }
table { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; }

/* Tablet — between mobile and desktop nav */
@media (max-width: 980px) {
    :root { --container: min(1200px, 100%); --section-y: clamp(48px, 6vw, 80px); }
    .hero h1, .lp-hero h1, .lp-hero2__title { font-size: clamp(1.85rem, 5vw, 3.2rem); }
    .lp-hero2__sub { font-size: 1rem; }
}

/* Mobile breakpoint — full collapse to single column, larger tap targets.
 * Note: site-header mobile drawer kicks in at 860px (above) — don't override
 * .nav, .nav__list or .nav-toggle here or the drawer breaks. */
@media (max-width: 720px) {
    :root { --header-h: 88px; }
    .container { padding-left: 18px; padding-right: 18px; }
    .lp-nav__inner { gap: 12px; }
    .lp-nav__cta { padding: 9px 14px; font-size: .76rem; }

    .btn, .lp-btn { padding: 12px 22px; font-size: .9rem; }
    .btn--xl, .lp-btn--lg { padding: 14px 24px; font-size: .95rem; }
    .form-row.two { grid-template-columns: 1fr; gap: 12px; }
    .form-submit { width: 100%; }

    section { padding: 48px 0; }
    .section-head { margin-bottom: 28px; }
    .section-head h2 { font-size: clamp(1.55rem, 5.5vw, 2rem); }
    .section-head p { font-size: .98rem; }

    .lp-hero2__title { font-size: clamp(1.7rem, 6.5vw, 2.4rem); line-height: 1.18; }
    .lp-hero2__sub { font-size: .98rem; }
    .lp-hero2__cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .lp-hero2__cta .btn { width: 100%; }
    .lp-hero2__stats { flex-direction: column; gap: 10px; }
    .lp-hero2__stats-divider { display: none; }

    .fp-pricing { grid-template-columns: 1fr; gap: 18px; }
    .fp-fit { grid-template-columns: 1fr; gap: 18px; }
    .fp-reasons { grid-template-columns: 1fr; gap: 18px; }
    .lp-flow { grid-template-columns: 1fr; gap: 16px; }

    .lp-apply__card { padding: 28px 18px; }
    .lp-apply__head h2 { font-size: clamp(1.45rem, 5vw, 2rem); }

    .footer-grid { gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Small phones — tighten further for ≤ 380px */
@media (max-width: 380px) {
    .container { padding-left: 14px; padding-right: 14px; }
    .btn, .lp-btn { padding: 11px 18px; font-size: .85rem; }
    .lp-pill { font-size: .7rem; padding: 6px 10px; }
    .lp-hero2__title { font-size: 1.55rem; }
}

/* Touch device interactions — bigger tap targets, no hover lift */
@media (hover: none) and (pointer: coarse) {
    .btn:hover, .lp-btn:hover, .nav__link:hover { transform: none; }
    a, button, input[type="submit"], .btn, .lp-btn { min-height: 44px; }
}

/* Avoid horizontal scroll on any viewport */
html, body { overflow-x: hidden; max-width: 100vw; }

