:root {
    --void: #040208;
    --deep: #0a0612;
    --plum: #140a1c;
    --teal-deep: #0c1a1e;
    --rose: #e87898;
    --pink: #f4a7bb;
    --lavender: #c9a7eb;
    --purple: #b06ad0;
    --teal: #5abab8;
    --mint: #7ec4c4;
    --peach: #f7c5a5;
    --gold: #d4a853;
    --gold-soft: #e8c876;
    --text: #f0e4ec;
    --text-2: #c8a8c0;
    --text-3: #9a7a94;
    --glass-bg: rgba(28, 14, 38, 0.42);
    --glass-bg-strong: rgba(22, 10, 32, 0.58);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-edge: rgba(255, 255, 255, 0.18);
    --glass-blur: 18px;
    --card-bg: rgba(14, 8, 22, 0.72);
    --card-bg-solid: rgba(14, 8, 22, 0.94);
    --card-border: rgba(255, 255, 255, 0.09);
    --card-text: #e8dce6;
    --card-text-muted: #c4b4c0;
    --nav-tagline-h: 2.15rem;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overflow-x: hidden;
    scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }
body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text);
    background: var(--void);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--deep);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: max(0.75rem, env(safe-area-inset-top));
    outline: 2px solid var(--lavender);
    outline-offset: 2px;
}
.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 5px;
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.03);
}
.scroll-progress-fill {
    display: block;
    width: 100%;
    height: 0;
    border-radius: 3px 0 0 3px;
    background: linear-gradient(
        180deg,
        var(--rose),
        var(--lavender),
        var(--teal),
        var(--purple),
        var(--rose),
        var(--lavender),
        var(--teal),
        var(--purple),
        var(--rose)
    );
    background-size: 100% 200%;
    animation: scrollRainbowFlow 8s linear infinite;
    box-shadow:
        0 0 10px rgba(232, 120, 152, 0.35),
        0 0 18px rgba(201, 167, 235, 0.2);
    transition: height 0.1s ease-out;
}
@keyframes scrollRainbowFlow {
    to { background-position: 0 200%; }
}
::selection { background: var(--rose); color: var(--void); }

/* Background */
.cosmic-bg {
    position: fixed; inset: 0; z-index: -10;
    background: linear-gradient(180deg, var(--void) 0%, var(--deep) 25%, var(--plum) 50%, var(--teal-deep) 75%, var(--deep) 100%);
}
.cosmic-bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(180, 60, 110, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(140, 50, 160, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 85%, rgba(45, 130, 130, 0.1) 0%, transparent 45%);
}
#starCanvas {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    contain: strict;
}

/* Glass */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 var(--glass-edge);
}
.glass-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(calc(var(--glass-blur) + 4px));
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 4px));
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 var(--glass-edge);
}

/* Nav */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 0.85rem 1.25rem;
    transition: padding 0.35s ease;
    pointer-events: none;
}
.nav.scrolled { padding: 0.55rem 1.25rem; }
.nav-pill-wrap {
    position: relative;
    pointer-events: auto;
    width: fit-content;
    max-width: calc(100% - 1.5rem);
    margin: 0 auto;
    border-radius: 999px;
    isolation: isolate;
}
.nav-pill-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.nav-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: var(--nav-tagline-h);
    width: fit-content;
    max-width: 100%;
    padding: 0.35rem 0.45rem 0.35rem 0.55rem;
    border-radius: 999px;
    overflow: visible;
    background: linear-gradient(135deg, rgba(24, 10, 34, 0.72), rgba(12, 18, 28, 0.58));
    border: 1px solid transparent;
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.38),
        0 10px 22px rgba(255, 255, 255, 0.07),
        0 5px 14px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.nav-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        var(--rose),
        var(--lavender),
        var(--teal),
        var(--purple),
        var(--rose),
        var(--lavender),
        var(--teal),
        var(--purple),
        var(--rose)
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.78;
    animation: navRainbowFlow 8s linear infinite;
}
@keyframes navRainbowFlow {
    to { background-position: 200% 0; }
}
.nav-shell::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -14px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.09) 45%, transparent 72%);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}
.nav.scrolled .nav-shell {
    padding: 0.28rem 0.4rem 0.28rem 0.5rem;
    background: linear-gradient(135deg, rgba(14, 6, 20, 0.88), rgba(8, 12, 20, 0.82));
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 10px 20px rgba(255, 255, 255, 0.07),
        0 5px 12px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.nav.scrolled .nav-shell::before { opacity: 0.78; }
.nav-brand {
    display: inline-flex; align-items: center;
    gap: 0.3rem;
    text-decoration: none; line-height: 0;
    flex: 0 1 auto;
    min-width: 0;
    padding: 0;
}

.brand-logo {
    display: block; object-fit: contain; object-position: center;
    width: auto;
}
.brand-logo--hero-tagline {
    display: block;
    width: min(28rem, 78vw);
    height: auto;
    max-height: 3.25rem;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}
.brand-logo--nav-name {
    height: var(--nav-tagline-h);
    width: auto;
    max-width: min(7.5rem, 20vw);
    aspect-ratio: 690 / 193;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}
.brand-logo--sign {
    height: 1.65rem;
    max-width: min(11rem, 60vw);
    margin-top: 0.4rem;
}
.brand-logo--footer {
    height: 3rem;
    max-width: min(16rem, 75vw);
    margin: 0 auto;
}
.brand-logo--footer-tagline {
    display: block;
    width: min(18rem, 76vw);
    height: auto;
    max-height: 2.15rem;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.05rem;
    align-items: center;
    padding: 0.12rem 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-links a {
    font-size: 0.68rem; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--text-2); text-decoration: none;
    transition: color 0.25s, background 0.25s;
}
.nav-links a:not(.nav-cta) {
    position: relative;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
}
.nav-links a:not(.nav-cta):hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
    color: var(--deep) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    padding: 0.4rem 0.9rem !important;
    margin-left: 0.15rem;
    border-radius: 999px;
    font-weight: 500 !important;
    box-shadow: 0 2px 14px rgba(212, 168, 83, 0.28);
    transition: transform 0.2s, box-shadow 0.2s, color 0.2s !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.38);
    color: var(--deep) !important;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold)) !important;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(201, 167, 235, 0.45);
    border-radius: 50%;
    background: rgba(28, 14, 38, 0.88);
    box-shadow: 0 0 14px rgba(201, 167, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}
.mobile-toggle:hover {
    border-color: rgba(232, 200, 118, 0.55);
    background: rgba(36, 18, 50, 0.95);
    box-shadow: 0 0 18px rgba(232, 200, 118, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.mobile-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gold-soft);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    margin: 0 auto;
    box-shadow: 0 0 6px rgba(232, 200, 118, 0.45);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay {
    position: fixed; inset: 0; z-index: 1090; background: rgba(0, 0, 0, 0.55);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* Sections */
section {
    padding: 4.5rem 1.5rem;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}
.section-inner {
    max-width: 1100px; width: 100%; margin: 0 auto;
    display: flex; flex-direction: column; align-items: stretch;
}
.section-label {
    font-size: 0.65rem; font-weight: 500; letter-spacing: 4px;
    text-transform: uppercase; color: var(--lavender); text-align: center; margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300; line-height: 1.2; color: #faf6f8; text-align: center; margin-bottom: 1rem;
}
.section-title em, .cta-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.divider {
    width: 50px; height: 1px; margin: 1rem auto 1.5rem;
    background: linear-gradient(90deg, transparent, var(--rose), var(--teal), transparent);
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: none; }

/* Hero */
.hero {
    min-height: 100svh; display: flex; align-items: center; justify-content: center;
    padding: 5rem 1.25rem 4.5rem; text-align: center;
    position: relative; overflow: hidden;
    content-visibility: visible;
}
.hero-content {
    max-width: 760px; width: 100%; position: relative; z-index: 3;
}

/* Hero decoration */
.hero-deco {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-ring-system {
    --ring-inset-mid: 18%;
    --ring-inset-inner: 32%;
    --ring-outer: 100%;
    --ring-mid: calc(100% - 2 * var(--ring-inset-mid));
    --ring-inner: calc(100% - 2 * var(--ring-inset-inner));
    position: absolute;
    top: 50%; left: 50%;
    width: min(92vw, 680px);
    height: min(92vw, 680px);
    transform: translate(-50%, -50%);
    animation: ringSystemFloat 10s ease-in-out infinite;
}
@keyframes ringSystemFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, calc(-50% - 6px)) scale(1.012); }
}
.hero-ring-system::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 248, 230, 0.1) 0%,
        rgba(232, 120, 152, 0.06) 28%,
        rgba(176, 106, 208, 0.04) 52%,
        transparent 72%);
    filter: blur(2px);
    animation: ringHaloPulse 7s ease-in-out infinite;
}
@keyframes ringHaloPulse {
    0%, 100% { opacity: 0.55; transform: scale(0.98); }
    50% { opacity: 0.9; transform: scale(1.04); }
}

.hero-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow:
        inset 0 0 80px rgba(176, 106, 208, 0.04),
        0 0 120px rgba(232, 120, 152, 0.03),
        0 18px 48px rgba(0, 0, 0, 0.18);
    animation: ringBreath 8s ease-in-out infinite;
}
.hero-ring::before,
.hero-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.hero-ring::before {
    inset: var(--ring-inset-mid);
    border-color: rgba(201, 167, 235, 0.06);
    box-shadow: 0 0 40px rgba(201, 167, 235, 0.04);
}
.hero-ring::after {
    inset: var(--ring-inset-inner);
    border-color: rgba(126, 196, 196, 0.05);
    box-shadow: 0 0 32px rgba(126, 196, 196, 0.03);
}
@keyframes ringBreath {
    0%, 100% {
        box-shadow:
            inset 0 0 80px rgba(176, 106, 208, 0.04),
            0 0 120px rgba(232, 120, 152, 0.03),
            0 18px 48px rgba(0, 0, 0, 0.18);
    }
    50% {
        box-shadow:
            inset 0 0 100px rgba(176, 106, 208, 0.07),
            0 0 160px rgba(232, 120, 152, 0.05),
            0 22px 56px rgba(0, 0, 0, 0.22);
    }
}

.hero-core {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
        rgba(255, 254, 248, 0.95) 0%,
        var(--gold-soft) 42%,
        #c88a28 78%,
        #8a6020 100%);
    box-shadow:
        0 0 14px rgba(255, 248, 230, 0.9),
        0 0 32px rgba(232, 200, 118, 0.55),
        0 0 64px rgba(212, 168, 83, 0.3);
}
.hero-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32%;
    height: 32%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fffef8;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.95);
}
.hero-core::after {
    content: '';
    position: absolute;
    inset: -130%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 248, 230, 0.22) 0%,
        rgba(232, 200, 118, 0.1) 38%,
        transparent 72%);
    z-index: -1;
    pointer-events: none;
}
.hero-title-rule .hero-core {
    transform: scale(0);
    animation:
        sunRulePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards,
        corePulse 5s ease-in-out 2.6s infinite;
}
@keyframes sunRulePop {
    to { transform: scale(1); }
}
@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.92; }
    50% { transform: scale(1.12); opacity: 1; }
}

/* Orbiting light motes — locked to ring diameters */
.hero-ring-orbit {
    --orbit-dur: 60s;
    --orbit-delay: 0s;
    --orbit-size: var(--ring-outer);
    --mote-size: 7px;
    --mote-color: #fff;
    --mote-glow: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%; left: 50%;
    width: var(--orbit-size);
    height: var(--orbit-size);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(var(--orbit-start, 0deg));
    animation: moteOrbit var(--orbit-dur) linear infinite;
    animation-delay: var(--orbit-delay);
}
@keyframes moteOrbit {
    to { transform: translate(-50%, -50%) rotate(calc(var(--orbit-start, 0deg) + 360deg)); }
}
.hero-mote {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--mote-size);
    height: var(--mote-size);
    transform: translate(-50%, calc(-50% + 0.5px));
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff 0%, var(--mote-color) 55%, transparent 100%);
    box-shadow:
        0 0 6px var(--mote-glow),
        0 0 14px var(--mote-glow),
        0 0 28px rgba(255, 255, 255, 0.08);
}
.hero-mote::after {
    content: '';
    position: absolute;
    inset: -70%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mote-glow) 0%, transparent 70%);
    opacity: 0.55;
}

/* inner ring */
.hero-ring-orbit--moon {
    --orbit-dur: 23s; --orbit-delay: -6s; --orbit-start: 52deg;
    --orbit-size: var(--ring-inner);
    --mote-size: 5px;
    --mote-color: #e8e6f2;
    --mote-glow: rgba(200, 196, 216, 0.75);
}
.hero-ring-orbit--lavender {
    --orbit-dur: 39s; --orbit-delay: -17s; --orbit-start: 143deg;
    --orbit-size: var(--ring-inner);
    --mote-size: 6px;
    --mote-color: var(--lavender);
    --mote-glow: rgba(201, 167, 235, 0.8);
}
/* middle ring */
.hero-ring-orbit--rose {
    --orbit-dur: 55s; --orbit-delay: -31s; --orbit-start: 217deg;
    --orbit-size: var(--ring-mid);
    --mote-size: 8px;
    --mote-color: var(--rose);
    --mote-glow: rgba(232, 120, 152, 0.82);
}
.hero-ring-orbit--ocean {
    --orbit-dur: 94s; --orbit-delay: -58s; --orbit-start: 38deg;
    --orbit-size: var(--ring-mid);
    --mote-size: 9px;
    --mote-color: var(--teal);
    --mote-glow: rgba(90, 186, 184, 0.8);
}
/* outer ring */
.hero-ring-orbit--forest {
    --orbit-dur: 73s; --orbit-delay: -44s; --orbit-start: 301deg;
    --orbit-size: var(--ring-outer);
    --mote-size: 10px;
    --mote-color: #6ecf8a;
    --mote-glow: rgba(90, 186, 140, 0.78);
}
.hero-ring-orbit--sunset {
    --orbit-dur: 116s; --orbit-delay: -79s; --orbit-start: 264deg;
    --orbit-size: var(--ring-outer);
    --mote-size: 7px;
    --mote-color: var(--peach);
    --mote-glow: rgba(247, 197, 165, 0.82);
}

.hero-title-eyebrow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    opacity: 0;
    transform: translateY(8px);
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero-title-eyebrow-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-title-word {
    position: relative;
    font-family: var(--sans);
    font-size: clamp(0.82rem, 2.35vw, 1.02rem);
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-indent: 0.26em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(6px);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(201, 167, 235, 0.2));
    animation:
        wordReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) calc(0.4s + var(--i, 0) * 0.12s) forwards,
        wordShimmer 8s ease-in-out calc(1.2s + var(--i, 0) * 0.4s) infinite;
}
.hero-title-word--source {
    background-image: linear-gradient(125deg, #fffafd 0%, #ebe0f0 38%, #c9a7eb 72%, #b8d0e8 100%);
}
.hero-title-word--energy {
    background-image: linear-gradient(125deg, #fff8fa 0%, #f5d8e4 35%, var(--rose) 62%, #e8c8a8 100%);
}
.hero-title-word::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -0.35rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 167, 235, 0.45), transparent);
    opacity: 0;
    transform: scaleX(0.4);
    animation: wordUnderline 0.9s ease calc(0.7s + var(--i, 0) * 0.1s) forwards;
}
@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes wordShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
@keyframes wordUnderline {
    to { opacity: 0.7; transform: scaleX(1); }
}
.hero-title-sep {
    position: relative;
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff 0%, var(--rose) 55%, #a85878 100%);
    box-shadow:
        0 0 8px rgba(232, 120, 152, 0.65),
        0 0 18px rgba(201, 167, 235, 0.35);
    opacity: 0;
    transform: scale(0);
    animation: sepPop 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) 0.72s forwards, sepGlow 4s ease-in-out 1.5s infinite;
}
.hero-title-sep::before,
.hero-title-sep::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-title-sep::before { width: 18px; height: 1px; }
.hero-title-sep::after { width: 1px; height: 18px; }
@keyframes sepPop {
    to { opacity: 1; transform: scale(1); }
}
@keyframes sepGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(232, 120, 152, 0.55), 0 0 16px rgba(201, 167, 235, 0.28); }
    50% { box-shadow: 0 0 12px rgba(232, 120, 152, 0.8), 0 0 24px rgba(201, 167, 235, 0.45); }
}
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%;
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    text-decoration: none; color: var(--text-3);
    font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase;
    opacity: 0;
    animation: heroScrollIn 0.8s ease 3s forwards;
    transition: color 0.2s;
}
@keyframes heroScrollIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-scroll span {
    display: block;
    padding-right: 3px; /* optical center with letter-spacing */
}
.hero-scroll:hover { color: var(--lavender); }
.hero-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, var(--lavender), transparent);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.hero-scroll-line::after {
    content: '';
    position: absolute; top: -100%; left: 0; width: 100%; height: 50%;
    background: linear-gradient(180deg, transparent, var(--rose));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Hero title block */
.hero-title-block {
    position: relative;
    margin: 0 auto 1.75rem;
    padding: 1.85rem 1.25rem 1.5rem;
    max-width: 720px;
}
.hero-title-glow {
    position: absolute;
    inset: 8% 4% 18%;
    background: radial-gradient(ellipse at 50% 58%, rgba(232, 120, 152, 0.12) 0%, rgba(176, 106, 208, 0.07) 42%, transparent 72%);
    filter: blur(22px);
    opacity: 0;
    animation: titleGlowIn 1.8s ease 0.55s forwards, titleGlowPulse 6s ease-in-out 2.2s infinite;
    pointer-events: none;
}
@keyframes titleGlowIn {
    to { opacity: 1; }
}
@keyframes titleGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.06); opacity: 1; }
}

.hero-title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
}

.hero-title-main-wrap {
    position: relative;
    display: inline-block;
    font-family: var(--serif);
    font-size: clamp(2.95rem, 8.2vw, 4.85rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.06;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
    animation: mainTitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}
.hero-title-main-wrap::before {
    content: 'Alignment';
    position: absolute;
    inset: 0 auto auto 0;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    padding: 0 0.04em 0.1em;
    color: rgba(24, 8, 18, 0.5);
    transform: translate(2px, 3px);
    pointer-events: none;
    z-index: 0;
    filter: blur(0.3px);
}
.hero-title-main-wrap::after {
    content: '';
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: 8%;
    height: 38%;
    background: radial-gradient(ellipse at center, rgba(232, 120, 152, 0.2) 0%, rgba(176, 106, 208, 0.08) 45%, transparent 72%);
    filter: blur(14px);
    pointer-events: none;
    z-index: -1;
}
.hero-title-main {
    position: relative;
    z-index: 1;
    display: inline-block;
    font: inherit;
    padding: 0 0.04em 0.1em;
    overflow: visible;
    background: linear-gradient(125deg, #fff8fc 0%, #faf0f6 8%, var(--rose) 28%, var(--lavender) 52%, var(--teal) 88%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    filter:
        drop-shadow(0 2px 14px rgba(176, 106, 208, 0.22))
        drop-shadow(0 10px 32px rgba(0, 0, 0, 0.3));
    animation: titleShimmer 7s ease-in-out 2.4s infinite;
}
.hero-title-main::selection {
    -webkit-text-fill-color: var(--void);
}
@keyframes mainTitleReveal {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes titleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-title-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1.65s forwards;
}
.hero-title-rule::before,
.hero-title-rule::after {
    content: '';
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose), var(--teal));
    animation: ruleExpand 1s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
}
.hero-title-rule::after {
    background: linear-gradient(90deg, var(--teal), var(--lavender), transparent);
}
@keyframes ruleExpand {
    to { width: 72px; }
}

.hero-tagline {
    margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(14px);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}
.hero-cta-group {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(14px);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.35s forwards;
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: var(--deep); background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 18px rgba(212, 168, 83, 0.25); transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212, 168, 83, 0.35); }
.btn-secondary {
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--lavender); background: rgba(201, 167, 235, 0.08);
    padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none;
    border: 1px solid rgba(201, 167, 235, 0.25); transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(201, 167, 235, 0.14); transform: translateY(-2px); }

/* About */
.about {
    position: relative;
    overflow: visible;
}
.about::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: min(90%, 700px); height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 120, 152, 0.2), rgba(126, 196, 196, 0.15), transparent);
}
.about-panel {
    padding: 2.5rem 2.25rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.about-text p {
    font-size: 0.94rem;
    color: var(--card-text);
    margin-bottom: 1rem;
    line-height: 1.82;
}
.about-lead {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: #faf6f8;
    line-height: 1.65;
    margin-bottom: 1.25rem !important;
}
.about-lead strong { color: var(--gold-soft); font-weight: 400; }

.about-text em { font-style: italic; color: var(--pink); }
.about-closing {
    margin-top: 1.5rem;
}
.about-quote-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.about-quote {
    flex: 1;
    min-width: 0;
    font-family: var(--serif); font-size: 1.08rem; font-style: italic;
    color: var(--lavender); border-left: 2px solid var(--teal);
    padding: 0.5rem 0 0.5rem 1.25rem; margin: 0;
    line-height: 1.65;
}
.about-sign {
    font-family: var(--serif); font-size: 1rem;
    color: var(--text-2); margin: 0.85rem 0 0 !important;
    padding-left: calc(2.65rem + 0.75rem + 1.25rem);
}
.about-profile-img {
    width: 2.65rem;
    height: 2.65rem;
    flex-shrink: 0;
    align-self: center;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(176, 106, 208, 0.2));
}

/* About + Client Love terrace */
.about-composition {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.5rem;
}

.about-composition::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    width: min(90%, 680px);
    height: 38%;
    border-radius: 50%;
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(201, 167, 235, 0.07) 0%,
        rgba(232, 120, 152, 0.04) 40%,
        transparent 72%);
    filter: blur(32px);
    pointer-events: none;
    z-index: 0;
}

#testimonials {
    scroll-margin-top: 5.5rem;
}

.about-panel--letter {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-love-terrace {
    position: relative;
    z-index: 1;
    width: min(100%, 44rem);
    margin-top: 0.25rem;
    padding-bottom: 1rem;
    overflow: visible;
}

.about-love-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.35rem 0 0.85rem;
    position: relative;
    z-index: 3;
}

.about-love-thread {
    display: block;
    width: 1px;
    height: 1.35rem;
    background: linear-gradient(180deg,
        rgba(212, 168, 83, 0.55),
        rgba(201, 167, 235, 0.35));
}

.about-love-thread--lower {
    height: 1rem;
    background: linear-gradient(180deg,
        rgba(201, 167, 235, 0.35),
        rgba(126, 196, 196, 0.15),
        transparent);
}

.about-love-gem {
    width: 9px;
    height: 9px;
    margin: 0.2rem 0;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #fff, var(--gold-soft), var(--rose));
    box-shadow:
        0 0 14px rgba(212, 168, 83, 0.45),
        0 0 22px rgba(232, 120, 152, 0.2);
}

.about-love-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.about-love-title {
    font-family: var(--serif);
    font-size: clamp(1.45rem, 3.2vw, 1.9rem);
    font-weight: 300;
    line-height: 1.2;
    color: #faf6f8;
    margin: 0 0 0.65rem;
}

.about-love-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-love-divider {
    width: 52px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg,
        transparent,
        rgba(232, 120, 152, 0.55),
        rgba(126, 196, 196, 0.5),
        transparent);
}

.love-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
}

/* Services & Process */
.services-process {
    position: relative;
    overflow: hidden;
}
.services-process::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 28% 22%, rgba(176, 106, 208, 0.09) 0%, transparent 48%),
        radial-gradient(ellipse at 72% 78%, rgba(126, 196, 196, 0.07) 0%, transparent 50%);
    pointer-events: none;
}
.sj {
    --sj-progress: 0;
    position: relative;
    width: 100%;
}
.sj-stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}
.sj-frame {
    position: relative;
    z-index: 1;
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
}
.sj-head {
    text-align: center;
    margin-bottom: clamp(1.1rem, 2.2vw, 1.65rem);
}
.sj-head .section-label { margin-bottom: 0.65rem; }
.sj-head .divider { margin: 0.85rem auto 0; }
.sj-heading {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.75vw, 1.72rem);
    font-weight: 300;
    line-height: 1.2;
    color: #faf6f8;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.38s ease-out, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.sj-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sj-active .sj-heading {
    opacity: 1;
    transform: none;
}
.sj-journey .sj-heading { transition-delay: 0.05s; }

.sj-catalog {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 3vw, 2rem);
    row-gap: 0.75rem;
}
.sj-offer {
    --accent: var(--lavender);
    position: relative;
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: start;
    gap: 0 1rem;
    padding: 0.35rem 0;
    min-width: 0;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.32s ease-out,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.sj-offer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: 0;
    transform: scaleY(0.4);
    transition: opacity 0.18s ease-out, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sj-offer--gold { --accent: var(--gold); }
.sj-offer--pink { --accent: var(--pink); }
.sj-offer--mint { --accent: var(--mint); }
.sj-offer--peach { --accent: var(--peach); }
.sj-active .sj-offer {
    opacity: 1;
    transform: none;
}
.sj-active .sj-offer:nth-child(1) { transition-delay: 0.04s; }
.sj-active .sj-offer:nth-child(2) { transition-delay: 0.08s; }
.sj-active .sj-offer:nth-child(3) { transition-delay: 0.12s; }
.sj-active .sj-offer:nth-child(4) { transition-delay: 0.16s; }
.sj-offer-glyph {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--accent) 40%, transparent));
    transition: filter 0.18s ease-out, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s ease-out;
}
.sj-offer-glyph svg {
    width: 1.25rem;
    height: 1.25rem;
}
.sj-offer-copy { min-width: 0; text-align: left; }
.sj-offer-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
    min-width: 0;
}
.sj-offer-copy h3 {
    font-family: var(--serif);
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    color: #faf6f8;
    margin: 0;
    font-weight: 400;
    line-height: 1.35;
    transition: color 0.18s ease-out, text-shadow 0.18s ease-out;
}
.sj-offer-copy p {
    font-size: 0.86rem;
    color: var(--card-text);
    line-height: 1.68;
    margin: 0;
}
.sj-tag,
.sj-chip {
    --tag-glass: rgba(12, 8, 20, 0.62);
    --tag-accent: var(--accent, var(--text-3));
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    flex-shrink: 0;
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 1.55px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    padding: 0.34rem 0.56rem 0.34rem 0.46rem;
    border-radius: 5px;
    color: color-mix(in srgb, var(--tag-accent) 72%, #faf6f8);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.11) 0%, transparent 46%),
        linear-gradient(168deg, var(--tag-glass) 0%, rgba(8, 5, 14, 0.78) 100%);
    border: 1px solid color-mix(in srgb, var(--tag-accent) 32%, rgba(255, 255, 255, 0.14));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 2px 8px rgba(0, 0, 0, 0.22),
        0 0 10px color-mix(in srgb, var(--tag-accent) 10%, transparent);
    backdrop-filter: blur(10px) saturate(1.12);
    -webkit-backdrop-filter: blur(10px) saturate(1.12);
    transition:
        color 0.18s ease-out,
        border-color 0.18s ease-out,
        box-shadow 0.18s ease-out,
        background 0.18s ease-out,
        opacity 0.18s ease-out;
}
.sj-tag::before,
.sj-chip::before {
    content: '';
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    transform: rotate(45deg);
    border-radius: 1px;
    background: linear-gradient(135deg,
        #fff 0%,
        color-mix(in srgb, var(--tag-accent) 55%, #fff) 42%,
        var(--tag-accent) 100%);
    box-shadow:
        0 0 5px color-mix(in srgb, var(--tag-accent) 50%, transparent),
        inset 0 0 2px rgba(255, 255, 255, 0.7);
}
.sj-tag {
    opacity: 0.92;
}

.sj-mid {
    position: relative;
    margin: clamp(1.25rem, 2.8vw, 1.85rem) 0 clamp(1rem, 2.2vw, 1.45rem);
    min-height: 2.5rem;
}
.sj-separator {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 12rem;
    margin: 0 auto;
    opacity: 0;
    transform: scaleX(0.9);
    transition: opacity 0.35s ease-out 0.12s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}
.sj-active .sj-separator {
    opacity: 1;
    transform: none;
}
.sj-separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(201, 167, 235, 0.7),
        rgba(232, 120, 152, 0.75),
        transparent);
}
.sj-separator-gem {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #fff6fa;
    box-shadow:
        0 0 10px rgba(255, 248, 252, 0.95),
        0 0 22px rgba(232, 120, 152, 0.75),
        0 0 36px rgba(201, 167, 235, 0.45);
    animation: sjGemTwinkle 2.8s ease-in-out infinite;
}
@keyframes sjGemTwinkle {
    0%, 100% { transform: scale(0.92); opacity: 0.82; }
    50% { transform: scale(1.12); opacity: 1; }
}
.sj-converge {
    position: absolute;
    left: 0;
    right: 0;
    top: -0.25rem;
    bottom: -0.25rem;
    width: 100%;
    height: calc(100% + 0.5rem);
    pointer-events: none;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.35s ease-out 0.18s;
}
.sj-active .sj-converge { opacity: 1; }
.sj-converge-path {
    opacity: 0.32;
    filter: drop-shadow(0 0 4px rgba(201, 167, 235, 0.32));
    transition: stroke-dashoffset 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.sj-active.sj-converge-ready .sj-converge-path {
    stroke-dashoffset: 0 !important;
    animation: sjPathTwinkle 5.4s ease-in-out infinite;
}
.sj-active.sj-converge-ready .sj-converge-path[data-sj-offer="pink"] {
    transition-delay: 0.04s;
    animation-delay: -1.35s;
}
.sj-active.sj-converge-ready .sj-converge-path[data-sj-offer="mint"] {
    transition-delay: 0.08s;
    animation-delay: -2.7s;
}
.sj-active.sj-converge-ready .sj-converge-path[data-sj-offer="peach"] {
    transition-delay: 0.12s;
    animation-delay: -4.05s;
}
@keyframes sjPathTwinkle {
    0%, 100% {
        opacity: 0.28;
        filter: drop-shadow(0 0 3px rgba(201, 167, 235, 0.28));
    }
    22% {
        opacity: 0.52;
        filter:
            drop-shadow(0 0 5px rgba(232, 120, 152, 0.42))
            drop-shadow(0 0 9px rgba(201, 167, 235, 0.38));
    }
    48% {
        opacity: 0.38;
        filter: drop-shadow(0 0 4px rgba(126, 196, 196, 0.35));
    }
    71% {
        opacity: 0.68;
        filter:
            drop-shadow(0 0 7px rgba(255, 248, 252, 0.48))
            drop-shadow(0 0 12px rgba(232, 200, 118, 0.4))
            drop-shadow(0 0 16px rgba(201, 167, 235, 0.32));
    }
    86% {
        opacity: 0.44;
        filter: drop-shadow(0 0 5px rgba(232, 120, 152, 0.32));
    }
}

.sj-timeline-wrap {
    position: relative;
    padding-top: 0.15rem;
}
.sj-timeline-rail {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.sj-timeline-track,
.sj-timeline-fill {
    position: absolute;
    border-radius: 3px;
}
.sj-timeline-track {
    background: rgba(255, 255, 255, 0.06);
}
.sj-timeline-fill {
    background: linear-gradient(90deg,
        #c9a7eb,
        #e87898 42%,
        #7ec4c4 78%,
        #e8c876);
    box-shadow:
        0 0 8px rgba(201, 167, 235, 0.65),
        0 0 18px rgba(232, 120, 152, 0.35);
    transform-origin: left center;
}
.sj-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.5vw, 1rem);
}
.sj-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.32s ease-out, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.sj-active .sj-station {
    opacity: 1;
    transform: none;
}
.sj-active .sj-station:nth-child(1) { transition-delay: 0.2s; }
.sj-active .sj-station:nth-child(2) { transition-delay: 0.26s; }
.sj-active .sj-station:nth-child(3) { transition-delay: 0.32s; }
.sj-active .sj-station:nth-child(4) { transition-delay: 0.38s; }
.sj-node {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 14px rgba(201, 167, 235, 0.2);
    transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sj-node--choose {
    border-color: rgba(232, 200, 118, 0.45);
    box-shadow: 0 0 18px rgba(212, 168, 83, 0.28);
}
.sj-num {
    font-family: var(--serif);
    font-size: 0.82rem;
    color: var(--gold-soft);
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(232, 200, 118, 0.35);
}
.sj-station-body {
    width: 100%;
    text-align: left;
    padding: 0 0.1rem;
}
.sj-station-body h3 {
    font-family: var(--serif);
    font-size: clamp(0.95rem, 1.3vw, 1.02rem);
    color: #faf6f8;
    margin: 0 0 0.38rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}
.sj-station-body p {
    font-size: 0.84rem;
    color: var(--card-text);
    line-height: 1.66;
    margin: 0;
}
.sj-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.55rem;
    margin-top: 0.75rem;
}
.sj-chip {
    --tag-accent: var(--text-3);
    cursor: default;
    opacity: 0.78;
}
.sj-chip--gold { --accent: var(--gold); --tag-accent: var(--gold); }
.sj-chip--pink { --accent: var(--pink); --tag-accent: var(--pink); }
.sj-chip--mint { --accent: var(--mint); --tag-accent: var(--mint); }
.sj-chip--peach { --accent: var(--peach); --tag-accent: var(--peach); }

/* Crisp link states — offerings meet only at Step II */
.sj.sj-link-gold .sj-offer--gold::before,
.sj.sj-link-pink .sj-offer--pink::before,
.sj.sj-link-mint .sj-offer--mint::before,
.sj.sj-link-peach .sj-offer--peach::before {
    opacity: 1;
    transform: scaleY(1);
}
.sj.sj-link-gold .sj-offer--gold .sj-offer-glyph,
.sj.sj-link-pink .sj-offer--pink .sj-offer-glyph,
.sj.sj-link-mint .sj-offer--mint .sj-offer-glyph,
.sj.sj-link-peach .sj-offer--peach .sj-offer-glyph {
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent) 75%, transparent));
    transform: scale(1.08);
}
.sj.sj-link-gold .sj-offer--gold h3,
.sj.sj-link-pink .sj-offer--pink h3,
.sj.sj-link-mint .sj-offer--mint h3,
.sj.sj-link-peach .sj-offer--peach h3 {
    color: #fff;
    text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 45%, transparent);
}
:is(
    .sj.sj-link-gold .sj-offer--gold,
    .sj.sj-link-pink .sj-offer--pink,
    .sj.sj-link-mint .sj-offer--mint,
    .sj.sj-link-peach .sj-offer--peach
) .sj-tag,
:is(
    .sj.sj-link-gold .sj-chip--gold,
    .sj.sj-link-pink .sj-chip--pink,
    .sj.sj-link-mint .sj-chip--mint,
    .sj.sj-link-peach .sj-chip--peach
) {
    --tag-glass: rgba(14, 8, 22, 0.72);
    color: color-mix(in srgb, var(--tag-accent) 84%, #fff);
    border-color: color-mix(in srgb, var(--tag-accent) 48%, rgba(255, 255, 255, 0.2));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 2px 10px rgba(0, 0, 0, 0.26),
        0 0 16px color-mix(in srgb, var(--tag-accent) 32%, transparent);
    opacity: 1;
}
:is(
    .sj.sj-link-gold .sj-offer--gold,
    .sj.sj-link-pink .sj-offer--pink,
    .sj.sj-link-mint .sj-offer--mint,
    .sj.sj-link-peach .sj-offer--peach
) .sj-tag::before,
:is(
    .sj.sj-link-gold .sj-chip--gold,
    .sj.sj-link-pink .sj-chip--pink,
    .sj.sj-link-mint .sj-chip--mint,
    .sj.sj-link-peach .sj-chip--peach
)::before {
    box-shadow:
        0 0 7px color-mix(in srgb, var(--tag-accent) 65%, transparent),
        0 0 12px color-mix(in srgb, var(--tag-accent) 28%, transparent),
        inset 0 0 2px rgba(255, 255, 255, 0.85);
}
.sj.sj-link-all .sj-node--choose {
    border-color: rgba(255, 236, 200, 0.85);
    box-shadow:
        0 0 16px rgba(255, 248, 252, 0.55),
        0 0 28px rgba(212, 168, 83, 0.55),
        0 0 44px rgba(201, 167, 235, 0.35);
    transform: scale(1.08);
}
@media (min-width: 901px) {
    .sj-mid {
        min-height: 4.5rem;
        margin: 1.65rem 0 1.35rem;
    }
    .sj-timeline-rail {
        left: 12.5%;
        right: 12.5%;
        top: 1.15rem;
        height: 3px;
    }
    .sj-timeline-track,
    .sj-timeline-fill {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }
    .sj-timeline-fill {
        width: calc(var(--sj-progress, 0) * 100%);
    }
    .sj-converge { display: block; }
}

@media (max-width: 900px) {
    .sj-converge { display: none; }
    .sj-catalog {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0.85rem;
    }
    .sj-offer {
        padding: 0.5rem 0;
    }
    .sj-station-body {
        padding: 0;
    }
    .sj-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 1.35rem;
    }
    .sj-timeline-rail {
        left: 0.45rem;
        top: 0.5rem;
        bottom: 0.5rem;
        width: 3px;
    }
    .sj-timeline-track,
    .sj-timeline-fill {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .sj-timeline-fill {
        height: calc(var(--sj-progress, 0) * 100%);
        transform-origin: top center;
        background: linear-gradient(180deg,
            #c9a7eb,
            #e87898 42%,
            #7ec4c4 78%,
            #e8c876);
    }
    .sj-station {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.85rem;
        text-align: left;
        padding: 1rem 0 0;
    }
    .sj-node {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 2rem;
        height: 2rem;
    }
    .sj-station-body h3 { text-align: left; }
    .sj-chips { justify-content: flex-start; }
}

/* Client Love (nested in About stack) */
.love-panel {
    position: relative;
    width: 100%;
    isolation: isolate;
}

.love-panel-core {
    position: relative;
    z-index: 6;
    padding: clamp(1.5rem, 3.2vw, 2rem) clamp(1.5rem, 3.5vw, 2.15rem);
    min-height: 12.5rem;
}
.love-panel-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        rgba(210, 218, 232, 0.45),
        transparent);
    pointer-events: none;
    z-index: 2;
}
.love-spotlight {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    touch-action: pan-y pinch-zoom;
}
.love-quote {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease-out, visibility 0.35s;
    pointer-events: none;
}
.love-quote.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.love-quote-text {
    font-family: var(--serif);
    font-size: clamp(0.98rem, 1.85vw, 1.1rem);
    font-style: italic;
    font-weight: 300;
    color: #fdf8fa;
    line-height: 1.8;
    margin: 0 0 1.15rem;
    max-width: 100%;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.75),
        0 2px 12px rgba(0, 0, 0, 0.45);
}
.love-quote-text::before {
    content: '\201C';
    display: block;
    font-size: clamp(1.75rem, 3.5vw, 2.15rem);
    line-height: 0.85;
    font-style: normal;
    background: linear-gradient(135deg, #fff 0%, #d2dae8 35%, #c9a7eb 55%, #7ec4c4 75%, #e8c876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.72;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 14px rgba(201, 167, 235, 0.28));
}
.love-quote-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
}
.love-quote-name {
    font-family: var(--serif);
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 400;
    color: #f0ecf4;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.love-quote-role {
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(210, 205, 220, 0.88);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.love-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2.5vw, 1.25rem);
    width: 100%;
    max-width: 20rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.love-nav {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-3);
    background: transparent;
    transition: color 0.18s ease-out, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.love-nav svg {
    width: 1.15rem;
    height: 1.15rem;
    transition: transform 0.18s ease-out;
}
.love-nav:hover {
    color: var(--gold-soft);
}
.love-nav--prev:hover svg { transform: translateX(-3px); }
.love-nav--next:hover svg { transform: translateX(3px); }
.love-nav:active { transform: scale(0.92); }
.love-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    flex: 1 1 auto;
}
.love-dot {
    position: relative;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}
.love-dot::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    transition: transform 0.18s ease-out, background 0.18s ease-out, box-shadow 0.18s ease-out;
}
.love-dot.is-active::before {
    background: rgba(228, 234, 244, 0.9);
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(210, 218, 232, 0.45);
}
.love-dot:hover:not(.is-active)::before {
    background: rgba(201, 167, 235, 0.4);
}

/* CTA */
.cta-section {
    padding: clamp(4.5rem, 8vw, 6rem) 1.5rem;
}
.cta-title.section-title {
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    line-height: 1.22;
}

/* Footer */
.footer {
    padding: 2.5rem 1.5rem; text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 4, 14, 0.5);
}
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; }
.footer-brand { margin-bottom: 0.15rem; }
.footer-tagline { margin: 0.35rem 0 0; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-3); border: 1px solid var(--glass-border); text-decoration: none; transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--lavender); border-color: rgba(201,167,235,0.3); }
.footer-social svg { width: 16px; height: 16px; }

/* Responsive */
.about {
    content-visibility: auto;
    contain-intrinsic-size: auto 1280px;
}

.services-process,
.cta-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

@media (max-width: 768px) {
    :root {
        --glass-blur: 12px;
        --nav-tagline-h: 1.55rem;
        --card-bg: rgba(14, 8, 22, 0.94);
        --card-text: #f0e6ec;
        --card-text-muted: #cbbdc8;
    }

    body { -webkit-tap-highlight-color: transparent; }

    .about,
    .services-process,
    .cta-section {
        content-visibility: visible;
        contain-intrinsic-size: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .glass,
    .glass-strong {
        backdrop-filter: blur(var(--glass-blur)) saturate(1.05) !important;
        -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.05) !important;
    }

    .nav {
        padding:
            max(0.65rem, calc(env(safe-area-inset-top) + 0.35rem))
            max(0.85rem, env(safe-area-inset-right))
            0.65rem
            max(0.85rem, env(safe-area-inset-left));
    }
    .nav.scrolled {
        padding:
            max(0.45rem, calc(env(safe-area-inset-top) + 0.2rem))
            max(0.85rem, env(safe-area-inset-right))
            0.45rem
            max(0.85rem, env(safe-area-inset-left));
    }
    .nav-pill-wrap {
        max-width: calc(100% - 1rem);
    }
    .nav-pill-wrap::before {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .nav-shell {
        width: fit-content;
        max-width: 100%;
        padding: 0.28rem 0.3rem 0.28rem 0.4rem;
        gap: 0.35rem;
        background: linear-gradient(135deg, rgba(24, 10, 34, 0.96), rgba(12, 18, 28, 0.94));
    }
    .nav-brand { gap: 0.2rem; flex: 0 1 auto; min-width: 0; }
    .brand-logo--nav-name { max-width: min(7rem, 42vw); }

    .mobile-toggle {
        display: flex;
        width: 2.5rem;
        height: 2.5rem;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        z-index: 1110;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(18rem, 88vw);
        height: 100dvh;
        margin: 0;
        transform: translate3d(100%, 0, 0);
        z-index: 1100;
        background: rgba(10, 4, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 0.5rem;
        padding:
            max(2.5rem, calc(env(safe-area-inset-top) + 2rem))
            1.5rem
            max(2rem, calc(env(safe-area-inset-bottom) + 1.5rem));
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
        border: none;
        border-left: 1px solid rgba(201, 167, 235, 0.22);
        border-radius: 0;
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
        pointer-events: none;
        visibility: hidden;
    }
    .nav-links.open {
        transform: translate3d(0, 0, 0);
        pointer-events: auto !important;
        visibility: visible;
    }

    .nav.menu-open {
        pointer-events: auto;
    }
    .nav-links li { width: 100%; }
    .nav-links a:not(.nav-cta) {
        display: block;
        width: 100%;
        padding: 1rem 1.1rem;
        font-size: 0.78rem;
        letter-spacing: 2px;
        text-align: center;
        border-radius: 12px;
        color: #f0e4ec;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-links a:not(.nav-cta):hover,
    .nav-links a:not(.nav-cta):active {
        color: #fff;
        background: rgba(201, 167, 235, 0.14);
        border-color: rgba(201, 167, 235, 0.22);
    }
    .nav-cta {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-top: 0.75rem;
        padding: 1.05rem 1.25rem !important;
        text-align: center;
        font-size: 0.78rem !important;
    }

    section { padding: 3.5rem max(1rem, env(safe-area-inset-left)) 3.5rem max(1rem, env(safe-area-inset-right)); }

    .hero {
        min-height: 100svh;
        padding:
            calc(4.75rem + env(safe-area-inset-top))
            max(1rem, env(safe-area-inset-right))
            calc(5.25rem + env(safe-area-inset-bottom))
            max(1rem, env(safe-area-inset-left));
    }
    .hero-content { max-width: 100%; }
    .hero-title-block { padding: 1.35rem 0.5rem 1rem; margin-bottom: 1.25rem; }
    .hero-title-eyebrow { gap: 0.5rem; margin-bottom: 0.5rem; }
    .hero-title-eyebrow-inner { gap: 0.65rem; }
    .hero-title-word {
        font-size: clamp(0.72rem, 3vw, 0.88rem);
        letter-spacing: 0.2em;
        text-indent: 0.2em;
    }
    .hero-title-main-wrap { font-size: clamp(2.55rem, 11.5vw, 3.55rem); line-height: 1.08; }
    .hero-tagline { margin-bottom: 1.25rem; }
    .brand-logo--hero-tagline { width: min(16rem, 76vw); max-height: 2.35rem; }
    .hero-ring-system {
        width: min(92vw, 520px);
        height: min(92vw, 520px);
    }
    .hero-ring-orbit--forest { --mote-size: 8px; }
    .hero-ring-orbit--ocean { --mote-size: 7px; }
    .hero-ring-orbit--rose { --mote-size: 7px; }
    .hero-ring-orbit--sunset { --mote-size: 6px; }
    .hero-ring-orbit--lavender { --mote-size: 5px; }
    .hero-ring-orbit--moon { --mote-size: 4px; }
    .hero-scroll { bottom: max(1.15rem, env(safe-area-inset-bottom)); }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    html { scroll-padding-top: 4.5rem; }

    .section-title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
    .about-panel { padding: 1.75rem 1.25rem; }
    .about-lead { font-size: 1.08rem; line-height: 1.7; }
    .about-text p { font-size: 0.94rem; line-height: 1.78; }
    .about-closing { margin-top: 1.25rem; }
    .about-quote-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .about-quote {
        font-size: 1.02rem;
        padding: 0.75rem 0 0.75rem 1rem;
        width: 100%;
    }
    .about-sign {
        margin-top: 0.75rem !important;
        padding-left: 0;
        font-size: 0.95rem;
    }
    .about-profile-img { width: 2.5rem; height: 2.5rem; }

    .about-love-terrace {
        width: 100%;
        margin-top: 0.5rem;
    }
    .about-love-title { font-size: clamp(1.35rem, 6vw, 1.65rem); }

    .sj-heading { font-size: clamp(1.22rem, 4.8vw, 1.62rem); }
    .sj-offer-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .sj-tag,
    .sj-chip {
        font-size: 0.48rem;
        letter-spacing: 1.35px;
        padding: 0.3rem 0.48rem 0.3rem 0.4rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background:
            linear-gradient(140deg, rgba(255, 255, 255, 0.07) 0%, transparent 46%),
            linear-gradient(168deg, rgba(14, 8, 22, 0.92) 0%, rgba(8, 5, 14, 0.88) 100%);
    }
    .sj-tag { white-space: nowrap; }
    .sj-offer-copy h3,
    .sj-station-body h3 { font-size: 1.05rem; }
    .sj-offer-copy p,
    .sj-station-body p { font-size: 0.92rem; line-height: 1.72; }
    .sj-offer { padding: 0.5rem 0; }
    .sj-station { padding: 0.5rem 0; }
    .sj-station-body { padding: 0; }
    .sj-mid { margin: 1.15rem 0 0.85rem; min-height: 0; }
    .sj-stars { display: none; }

    .love-panel-core {
        min-height: 11rem;
        padding: 1.2rem 1.15rem;
    }
    .love-spotlight {
        min-height: 9.5rem;
        width: 100%;
    }
    .love-quote-text { font-size: 0.98rem; line-height: 1.78; }
    .love-controls { gap: 0.65rem; }
    .love-nav {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    .love-dot {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 44px;
        min-height: 44px;
    }
    .love-dot::before {
        width: 1rem;
        height: 1rem;
    }

    .cta-section { padding: 4rem max(1rem, env(safe-area-inset-left)) 4rem max(1rem, env(safe-area-inset-right)); }
    .cta-title { font-size: clamp(1.55rem, 7vw, 2rem); }

    .footer {
        padding:
            2.5rem max(1.5rem, env(safe-area-inset-right))
            max(2.5rem, calc(env(safe-area-inset-bottom) + 1.5rem))
            max(1.5rem, env(safe-area-inset-left));
    }
    .brand-logo--sign { height: 1.4rem; }
    .brand-logo--footer { height: 2.5rem; }
    .brand-logo--footer-tagline { width: min(13rem, 72vw); max-height: 1.65rem; }

    @media (hover: none) {
        .sj-offer::before { opacity: 0.7 !important; transform: scaleY(1) !important; }
        .sj-offer-glyph { transform: none !important; filter: none !important; }
        .love-nav:hover { transform: none; }
        .btn-primary:hover, .btn-secondary:hover { transform: none; }
        .nav-cta:hover { transform: none; }
    }
}

@media (max-width: 480px) {
    .hero-title-word { letter-spacing: 0.16em; text-indent: 0.16em; font-size: 0.66rem; }
    .hero-title-eyebrow-inner { gap: 0.5rem; }
    .hero-title-main-wrap { font-size: clamp(2.25rem, 12vw, 3rem); }

    .brand-logo--hero-tagline { width: min(14rem, 82vw); max-height: 2.1rem; }
    .love-quote-text { font-size: 0.96rem; line-height: 1.74; }
    .love-stage { width: 100%; padding: 0 0.15rem; }

    .sj-offer { padding: 0.45rem 0; }
    .sj-tag,
    .sj-chip {
        font-size: 0.46rem;
        letter-spacing: 1.2px;
        gap: 0.3rem;
    }
    .sj-tag::before,
    .sj-chip::before {
        width: 4px;
        height: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-in { transition: none; }
    .scroll-progress-fill { animation: none; transition: none; }
    .nav-shell::before { animation: none; background-position: 0 0; }

    .hero-title-word, .hero-title-sep, .hero-title-main, .hero-title-main-wrap,
    .hero-title-eyebrow,
    .hero-title-glow, .hero-title-rule,
    .hero-title-rule::before, .hero-title-rule::after, .hero-title-rule .hero-core,
    .hero-tagline, .hero-cta-group,
    .hero-scroll,
    .hero-scroll-line::after { animation: none; }
    .hero-ring-system,
    .hero-ring,
    .hero-ring-system::before { animation: none; }
    .hero-title-rule .hero-core { transform: scale(1); animation: none; }
    .hero-ring-orbit { animation: none; }
    .hero-ring-orbit--moon { transform: translate(-50%, -50%) rotate(52deg); }
    .hero-ring-orbit--lavender { transform: translate(-50%, -50%) rotate(143deg); }
    .hero-ring-orbit--rose { transform: translate(-50%, -50%) rotate(217deg); }
    .hero-ring-orbit--forest { transform: translate(-50%, -50%) rotate(301deg); }
    .hero-ring-orbit--ocean { transform: translate(-50%, -50%) rotate(38deg); }
    .hero-ring-orbit--sunset { transform: translate(-50%, -50%) rotate(264deg); }
    .hero-title-main { filter: none; }
    .hero-title-main-wrap::before,
    .hero-title-main-wrap::after { opacity: 0; }
    .hero-title-word { opacity: 1; transform: none; text-shadow: none; }
    .hero-title-sep { opacity: 1; transform: scale(1); }
    .hero-title-eyebrow { opacity: 1; transform: none; }
    .hero-title-main-wrap { opacity: 1; transform: none; filter: none; }
    .hero-title-word::after { opacity: 0.7; transform: scaleX(1); }
    .hero-scroll { transform: translateX(-50%); }
    .hero-scroll-line::after { animation: none; }
    .hero-title-rule::before, .hero-title-rule::after { width: 72px; }
    #starCanvas { display: none; }
    .love-quote { transition: none; }

    .sj-heading,
    .sj-offer,
    .sj-separator,
    .sj-station,
    .sj-converge { opacity: 1; transform: none; transition: none; }
    .sj-converge-path { stroke-dashoffset: 0 !important; transition: none; animation: none !important; opacity: 0.45; }
    .sj-separator-gem { animation: none; }
    .sj-stars { display: none; }
    .sj { --sj-progress: 1; }
}
/* === crystal-card.css === */

:root {
    --crystal-r: 22px;
    --crystal-r-sm: 16px;
    --crystal-r-lg: 24px;
    --crystal-fill: linear-gradient(168deg,
        rgba(20, 12, 30, 0.96) 0%,
        rgba(12, 14, 24, 0.92) 48%,
        rgba(16, 10, 26, 0.94) 100%);
    --crystal-border: linear-gradient(140deg,
        rgba(232, 200, 118, 0.42) 0%,
        rgba(232, 120, 152, 0.3) 28%,
        rgba(201, 167, 235, 0.34) 52%,
        rgba(126, 196, 196, 0.36) 76%,
        rgba(232, 200, 118, 0.38) 100%);
    --crystal-shadow:
        0 20px 46px rgba(0, 0, 0, 0.3),
        0 0 36px rgba(201, 167, 235, 0.06);
}

.crystal-card {
    position: relative;
    border: 2px solid transparent;
    background:
        var(--crystal-fill) padding-box,
        var(--crystal-border) border-box;
    box-shadow: var(--crystal-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    contain: paint;
}

.crystal-card--sm {
    --crystal-r: var(--crystal-r-sm);
    border-radius: var(--crystal-r-sm);
}

.crystal-card--lg {
    --crystal-r: var(--crystal-r-lg);
    border-radius: var(--crystal-r-lg);
}

.crystal-card:not(.crystal-card--sm):not(.crystal-card--lg) {
    border-radius: var(--crystal-r);
}

.crystal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(ellipse 78% 48% at 18% 8%, rgba(232, 120, 152, 0.07) 0%, transparent 58%),
        radial-gradient(ellipse 62% 42% at 88% 92%, rgba(126, 196, 196, 0.06) 0%, transparent 52%),
        radial-gradient(ellipse 70% 38% at 50% 0%, rgba(212, 168, 83, 0.06) 0%, transparent 62%);
}

.crystal-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(105deg,
        transparent 42%,
        rgba(255, 255, 255, 0.03) 47%,
        rgba(255, 255, 255, 0.09) 50%,
        rgba(255, 255, 255, 0.03) 53%,
        transparent 58%);
    opacity: 0.45;
}

.crystal-card--lg::after {
    animation: crystalSheen 14s ease-in-out infinite;
    will-change: transform, opacity;
}

.crystal-card--sm::after {
    opacity: 0.3;
}

@keyframes crystalSheen {
    0%, 100% { transform: translate3d(-10%, 0, 0); opacity: 0.3; }
    50% { transform: translate3d(10%, 0, 0); opacity: 0.65; }
}

.crystal-card > * {
    position: relative;
    z-index: 2;
}

.glass.crystal-card,
.glass-strong.crystal-card {
    backdrop-filter: blur(calc(var(--glass-blur) + 2px)) saturate(1.08);
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 2px)) saturate(1.08);
    border: 2px solid transparent !important;
    background:
        linear-gradient(168deg,
            rgba(20, 12, 30, 0.88) 0%,
            rgba(12, 14, 24, 0.84) 50%,
            rgba(16, 10, 26, 0.87) 100%) padding-box,
        var(--crystal-border) border-box !important;
}

@media (max-width: 768px) {
    .crystal-card--lg {
        border-radius: 18px;
    }

    .crystal-card--sm {
        border-radius: 14px;
    }

    .crystal-card {
        background:
            var(--card-bg-solid) padding-box,
            var(--crystal-border) border-box;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        contain: layout paint;
        overflow: visible;
    }

    .crystal-card::after {
        animation: none !important;
        will-change: auto;
        opacity: 0.28;
        transform: none;
    }

    .crystal-card::before {
        background:
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.05) 0%, transparent 62%),
            radial-gradient(ellipse 55% 40% at 90% 95%, rgba(126, 196, 196, 0.04) 0%, transparent 55%);
    }

    .glass.crystal-card,
    .glass-strong.crystal-card {
        backdrop-filter: blur(calc(var(--glass-blur) + 2px)) saturate(1.05) !important;
        -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 2px)) saturate(1.05) !important;
        background:
            linear-gradient(168deg,
                rgba(20, 12, 30, 0.9) 0%,
                rgba(12, 14, 24, 0.86) 50%,
                rgba(16, 10, 26, 0.89) 100%) padding-box,
            var(--crystal-border) border-box !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .crystal-card::after {
        animation: none !important;
        will-change: auto;
        opacity: 0.25;
        transform: none;
    }
}
/* === divine-crystal.css === */

#cta {
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 58% 44% at 50% 78%, rgba(232, 120, 152, 0.06) 0%, transparent 68%),
        radial-gradient(ellipse 48% 38% at 50% 38%, rgba(212, 168, 83, 0.07) 0%, transparent 62%),
        radial-gradient(ellipse 34% 28% at 16% 52%, rgba(201, 167, 235, 0.04) 0%, transparent 65%),
        radial-gradient(ellipse 34% 28% at 84% 48%, rgba(126, 196, 196, 0.04) 0%, transparent 65%);
}

#cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: min(72%, 520px);
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg,
        transparent,
        rgba(232, 120, 152, 0.16),
        rgba(212, 168, 83, 0.2),
        rgba(232, 120, 152, 0.16),
        transparent);
}

#cta .section-inner {
    position: relative;
    z-index: 1;
    align-items: center;
}

#cta .cta-atmosphere {
    position: absolute;
    inset: 8% 0 0;
    pointer-events: none;
    z-index: 0;
}

#cta .cta-glow-heart {
    position: absolute;
    top: 42%;
    left: 50%;
    width: min(420px, 88vw);
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse 58% 52% at 50% 48%,
        rgba(232, 120, 152, 0.09) 0%,
        rgba(212, 168, 83, 0.05) 38%,
        transparent 72%);
    filter: blur(22px);
    animation: ctaHeartGlow 10s ease-in-out infinite;
}

#cta .cta-glow-ring {
    position: absolute;
    top: 38%;
    left: 50%;
    width: min(480px, 92vw);
    height: min(480px, 72vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.08);
    box-shadow: 0 0 48px rgba(201, 167, 235, 0.05);
    animation: ctaRingBreathe 14s ease-in-out infinite;
}

@keyframes ctaHeartGlow {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.96); }
    50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.03); }
}

@keyframes ctaRingBreathe {
    0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(0.98); }
    50% { opacity: 0.65; transform: translate(-50%, -50%) scale(1.02); }
}

#cta .section-label {
    color: var(--gold-soft);
    letter-spacing: 5px;
    margin-bottom: 0.7rem;
}

#cta .cta-title {
    margin-bottom: 0.5rem;
}

#cta .divider {
    margin-bottom: 2rem;
    width: 64px !important;
    background: linear-gradient(90deg,
        transparent,
        var(--rose) 20%,
        var(--gold-soft) 50%,
        var(--lavender) 80%,
        transparent) !important;
}

/* Invitation */
#cta .cta-invitation {
    position: relative;
    width: min(100%, 600px);
    margin: 0 auto;
    padding-top: 2.5rem;
}

#cta .cta-invitation-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    pointer-events: none;
}

#cta .cta-seal {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg,
        rgba(18, 10, 28, 0.95) 0%,
        rgba(28, 14, 38, 0.88) 100%);
    border: 1px solid rgba(232, 200, 118, 0.35);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.32),
        0 0 20px rgba(232, 120, 152, 0.1);
    animation: ctaSealFloat 7s ease-in-out infinite;
}

#cta .cta-seal-glow {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(232, 120, 152, 0.2) 0%,
        transparent 72%);
    filter: blur(5px);
    animation: ctaSealGlow 5s ease-in-out infinite;
}

#cta .cta-seal svg {
    position: relative;
    z-index: 1;
    width: 1.2rem;
    height: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(232, 120, 152, 0.3));
}

@keyframes ctaSealFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes ctaSealGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#cta .cta-from {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.85rem 0.35rem 0.4rem;
    border-radius: 999px;
    background: rgba(14, 8, 22, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#cta .cta-portrait {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(232, 200, 118, 0.32);
}

#cta .cta-from-line {
    font-size: 0.7rem;
    letter-spacing: 0.7px;
    color: var(--card-text-muted);
    margin: 0;
    white-space: nowrap;
}

#cta .cta-from-name {
    font-family: var(--serif);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--gold-soft);
}

#cta .cta-invitation-letter {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.65rem, 4vw, 2.25rem) clamp(2rem, 4vw, 2.35rem);
    text-align: center;
}

#cta .cta-lead {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-size: clamp(1.06rem, 2.3vw, 1.18rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.55;
    color: var(--lavender);
    max-width: 27rem;
    margin: 0 auto 1.2rem;
}

#cta .cta-text {
    position: relative;
    z-index: 1;
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--card-text);
    max-width: 30rem;
    margin: 0 auto 0;
}

#cta .cta-action {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#cta .cta-action::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 168, 83, 0.55),
        transparent);
}

#cta .cta-offer-line {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin: 0;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: var(--card-text-muted);
    background: rgba(212, 168, 83, 0.07);
    border: 1px solid rgba(212, 168, 83, 0.18);
}

#cta .cta-offer-line svg {
    width: 11px;
    height: 11px;
    color: var(--mint);
    flex-shrink: 0;
}

#cta .cta-invite-btn {
    position: relative;
    overflow: hidden;
    min-width: min(100%, 270px);
    box-shadow:
        0 4px 18px rgba(212, 168, 83, 0.28),
        0 0 24px rgba(232, 120, 152, 0.06);
}

#cta .cta-invite-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 42%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 58%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

#cta .cta-invite-btn:hover::after {
    transform: translateX(120%);
}

@media (max-width: 768px) {
    #cta .cta-glow-ring {
        display: none;
    }
    #cta .cta-invitation {
        padding-top: 2.15rem;
    }
    #cta .cta-from {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    #cta .cta-from-line {
        white-space: normal;
        text-align: left;
        line-height: 1.3;
        max-width: 10.5rem;
    }
    #cta .cta-invitation-letter {
        margin-top: 4.25rem;
        padding: 1.75rem 1.25rem 1.85rem;
    }
    #cta .cta-lead {
        font-size: 1.02rem;
        margin-bottom: 1rem;
    }
    #cta .cta-text {
        font-size: 0.94rem;
        line-height: 1.76;
    }
    #cta .cta-action {
        margin-top: 1.65rem;
        padding-top: 1.5rem;
        gap: 0.8rem;
    }
    #cta .cta-offer-line {
        font-size: 0.63rem;
        padding: 0.44rem 0.72rem;
        max-width: min(100%, 14rem);
        justify-content: center;
        text-align: center;
    }
    #cta .cta-glow-heart {
        animation: none;
        opacity: 0.7;
    }
    #cta .cta-seal {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #cta .cta-glow-heart,
    #cta .cta-glow-ring,
    #cta .cta-seal,
    #cta .cta-seal-glow { animation: none !important; }
    #cta .cta-invite-btn::after { display: none; }
}