:root {
    --clr-mist: #fff0f5;
    --clr-soft: #ffd6e0;
    --clr-coral: #ffa8b0;
    --clr-sunset: #ff7e6b;
    --clr-ember: #ff4c29;
    --clr-ink: #1c1418;
    --clr-muted: #5c4a52;
    --lux-night: #0c080a;
    --lux-rose: #1f1216;
    --lux-champagne: #f0d4c8;
    --lux-line: rgba(255, 168, 176, 0.35);
    --apex-blush: rgba(255, 214, 224, 0.75);
    --apex-glow: rgba(255, 126, 107, 0.28);
    --apex-fog: rgba(255, 240, 245, 0.92);
    --space-xs: 0.35rem;
    --space-sm: 0.55rem;
    --space-md: 0.9rem;
    --space-lg: 1.35rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --radius-sm: 0.45rem;
    --radius-md: 0.85rem;
    --radius-lg: 1.35rem;
    --radius-full: 999px;
    --shadow-soft: 0 0.35rem 1.1rem rgba(28, 20, 24, 0.08);
    --shadow-lift: 0 0.65rem 2rem rgba(255, 76, 41, 0.12);
    --font-display: "Instrument Serif", Georgia, serif;
    --font-body: "Sora", system-ui, sans-serif;
    --fs-xs: 0.7rem;
    --fs-sm: 0.78rem;
    --fs-base: 0.88rem;
    --fs-md: 0.95rem;
    --fs-lg: 1.15rem;
    --fs-xl: 1.55rem;
    --fs-2xl: clamp(1.65rem, 4vw, 2.35rem);
    --transition-fast: 0.22s ease;
    --transition-smooth: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    --max-read: 68ch;
    --header-offset: 4.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--clr-ink);
    background: var(--clr-mist);
    padding: 0 30px;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--clr-ember);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: var(--clr-sunset);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 var(--space-sm);
}

p {
    margin: 0 0 var(--space-md);
    color: var(--clr-muted);
}

.shell-page {
    overflow-x: hidden;
}

.shell-header {
    position: relative;
    z-index: 40;
    padding: var(--space-md) var(--space-lg) 0;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.shell-header.is-retracted {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.header-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 240, 245, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 168, 176, 0.35);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
}

.brand-mark {
    font-family: var(--font-display);
    font-size: var(--fs-md);
    letter-spacing: 0.02em;
    color: var(--clr-ink);
    text-decoration: none;
}

.brand-mark:hover {
    color: var(--clr-ember);
}

.nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-panel a {
    font-size: var(--fs-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--clr-ink);
    background: transparent;
}

.nav-panel a:hover {
    background: rgba(255, 214, 224, 0.65);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 126, 107, 0.45);
    background: rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-sm);
    cursor: pointer;
    color: var(--clr-ember);
    font-size: var(--fs-md);
    line-height: 1;
}

.hero-stage {
    position: relative;
    min-height: clamp(22rem, 62vh, 36rem);
    margin: var(--space-lg) var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    background: var(--clr-mist);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-md);
    padding: var(--space-2xl) var(--space-xl);
    max-width: 40rem;
}

.hero-kicker {
    font-size: var(--fs-xs);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-sunset);
}

.hero-title {
    font-size: var(--fs-2xl);
    color: var(--clr-ink);
}

.hero-lede {
    font-size: var(--fs-md);
    max-width: var(--max-read);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    background: linear-gradient(120deg, var(--clr-sunset), var(--clr-ember));
    color: #fff;
    box-shadow: var(--shadow-lift);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 2.2rem rgba(255, 76, 41, 0.22);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 76, 41, 0.35);
    background: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-ink);
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-ghost:hover {
    background: rgba(255, 214, 224, 0.65);
    border-color: rgba(255, 76, 41, 0.55);
}

.section-block {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

.section-heading {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-sm);
}

.section-sub {
    font-size: var(--fs-sm);
    max-width: 42ch;
    margin-bottom: var(--space-lg);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: var(--space-md);
}

.card-pillar {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 168, 176, 0.35);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    animation: rise-in 0.85s var(--transition-smooth) both;
}

.card-pillar:nth-child(2) {
    animation-delay: 0.08s;
}

.card-pillar:nth-child(3) {
    animation-delay: 0.16s;
}

.card-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.card-pillar h3 {
    font-size: var(--fs-lg);
}

.icon-row {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--clr-ember);
    font-size: var(--fs-lg);
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
    from {
        transform: translateY(0) rotate(-0.5deg);
    }

    to {
        transform: translateY(-6px) rotate(0.6deg);
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.band-angled {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    margin: var(--space-xl) 0;
    background: linear-gradient(115deg, rgba(255, 214, 224, 0.55), rgba(255, 168, 176, 0.35));
    transform: skewY(-2deg);
    border-radius: var(--radius-lg);
}

.band-angled-inner {
    max-width: 72rem;
    margin: 0 auto;
    transform: skewY(2deg);
}

.quote-strip {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    color: var(--clr-ink);
    border-left: 3px solid var(--clr-ember);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    animation: fade-up 1s ease both;
}

.policy-strip {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid rgba(255, 168, 176, 0.45);
    background: rgba(255, 255, 255, 0.72);
}

.policy-strip-inner {
    max-width: 58rem;
    margin: 0 auto;
}

.policy-strip p {
    margin: 0;
    font-size: var(--fs-xs);
    line-height: 1.6;
    color: var(--clr-muted);
}

.policy-strip strong {
    color: var(--clr-ink);
    font-weight: 600;
}

.policy-strip a {
    font-weight: 500;
    white-space: nowrap;
}

.footer-mini {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
    color: var(--clr-muted);
    border-top: 1px solid rgba(255, 168, 176, 0.35);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--clr-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--clr-ember);
}

.overlay-privacy {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: var(--space-lg);
    background: rgba(28, 20, 24, 0.45);
    backdrop-filter: blur(4px);
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.overlay-privacy.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-card {
    max-width: 28rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(255, 168, 176, 0.45);
}

.overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.page-asym {
    position: relative;
}

.offset-stack {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

.stack-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 168, 176, 0.35);
    box-shadow: var(--shadow-soft);
    max-width: 28rem;
    animation: rise-in 0.9s ease both;
}

.stack-card.shift-right {
    margin-left: auto;
    transform: rotate(1deg);
}

.stack-card.shift-left {
    margin-right: auto;
    transform: rotate(-1deg);
}

.stack-card.overlap-up {
    margin-top: -2.5rem;
    z-index: 2;
    position: relative;
}

.angled-panel {
    margin: var(--space-xl) 0;
    padding: var(--space-xl) var(--space-lg);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform: rotate(-1.2deg);
    max-width: 52rem;
}

.angled-panel.alt {
    margin-left: auto;
    transform: rotate(1deg);
}

.contact-shell {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
    display: grid;
    gap: var(--space-xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: start;
}

.form-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 168, 176, 0.45);
    box-shadow: var(--shadow-lift);
    animation: rise-in 0.85s ease both;
}

.form-row {
    display: grid;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.form-panel label {
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-muted);
}

.form-panel input,
.form-panel textarea {
    width: 100%;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 126, 107, 0.45);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    background: rgba(255, 240, 245, 0.45);
}

.form-panel textarea {
    min-height: 7rem;
    resize: vertical;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    color: var(--clr-muted);
}

.map-frame {
    border: 0;
    width: 100%;
    min-height: 16rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 168, 176, 0.45);
    animation: drift 10s ease-in-out infinite alternate;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 214, 224, 0.65), rgba(255, 168, 176, 0.35));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transform: rotate(0.8deg);
    box-shadow: var(--shadow-soft);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    font-size: var(--fs-sm);
    color: var(--clr-muted);
}

.contact-list li {
    margin-bottom: var(--space-sm);
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.thank-wrap {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: var(--space-2xl) var(--space-lg);
}

.thank-card {
    max-width: 32rem;
    text-align: center;
    background: #fff;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 168, 176, 0.45);
    box-shadow: var(--shadow-lift);
    animation: rise-in 0.9s ease both;
}

.thank-card h1 {
    font-size: var(--fs-xl);
}

.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-lg);
}

.thank-meta {
    margin-top: var(--space-lg);
    font-size: var(--fs-xs);
    color: var(--clr-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.contact-visual-spaced {
    margin-top: var(--space-md);
}

.legal-page {
    max-width: 52rem;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.legal-page h1 {
    font-size: var(--fs-xl);
}

.legal-page h2 {
    font-size: var(--fs-lg);
    margin-top: var(--space-lg);
}

.doc-shell {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-2xl);
}

.doc-hero {
    position: relative;
    margin: var(--space-lg) 0 var(--space-xl);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 214, 224, 0.85) 0%, rgba(255, 168, 176, 0.45) 48%, rgba(255, 126, 107, 0.35) 100%);
    box-shadow: var(--shadow-lift);
    overflow: hidden;
    transform: rotate(-0.4deg);
}

.doc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 20%, rgba(255, 240, 245, 0.55), transparent 45%);
    pointer-events: none;
}

.doc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.doc-eyebrow {
    font-size: var(--fs-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-ember);
    margin: 0 0 var(--space-sm);
}

.doc-hero h1 {
    font-size: clamp(1.45rem, 4vw, 2.1rem);
    margin-bottom: var(--space-md);
}

.doc-lede {
    font-size: var(--fs-md);
    color: var(--clr-muted);
    margin: 0;
    max-width: 42ch;
}

.doc-frame {
    display: grid;
    grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.doc-rail {
    position: sticky;
    top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 168, 176, 0.4);
    box-shadow: var(--shadow-soft);
}

.doc-rail-title {
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-sunset);
    margin: 0 0 var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
}

.doc-rail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.doc-rail-list li {
    margin: 0;
}

.doc-rail-list a {
    display: block;
    font-size: var(--fs-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--clr-ink);
    border-left: 2px solid transparent;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.doc-rail-list a:hover {
    background: rgba(255, 214, 224, 0.55);
    border-left-color: var(--clr-ember);
}

.doc-article {
    min-width: 0;
}

.doc-block {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 168, 176, 0.35);
}

.doc-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.doc-block h2 {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    margin-top: 0;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.doc-block h3 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--clr-sunset);
    margin: var(--space-lg) 0 var(--space-sm);
}

.doc-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-full);
    background: linear-gradient(145deg, var(--clr-soft), var(--clr-coral));
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--clr-ink);
}

.doc-callout {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, rgba(255, 240, 245, 0.95), rgba(255, 214, 224, 0.65));
    border: 1px solid rgba(255, 126, 107, 0.25);
    box-shadow: var(--shadow-soft);
}

.doc-callout p:last-child {
    margin-bottom: 0;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
}

.doc-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--clr-muted);
}

.doc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: var(--radius-full);
    background: var(--clr-ember);
    opacity: 0.75;
}

.doc-note {
    font-size: var(--fs-xs);
    color: var(--clr-muted);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.6);
    border: 1px dashed rgba(255, 168, 176, 0.5);
    margin-top: var(--space-md);
}

.doc-footer-cta {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(255, 168, 176, 0.45);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.doc-footer-cta p:last-child {
    margin-bottom: 0;
}

.thank-shell {
    max-width: 56rem;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-lg) var(--space-2xl);
    min-height: 65vh;
}

.thank-hero {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.thank-hero-card {
    position: relative;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #fff 0%, rgba(255, 240, 245, 0.9) 100%);
    border: 1px solid rgba(255, 168, 176, 0.5);
    box-shadow: var(--shadow-lift);
    text-align: center;
    overflow: hidden;
    animation: rise-in 0.85s ease both;
}

.thank-hero-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 55%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 168, 176, 0.35), transparent 65%);
    pointer-events: none;
}

.thank-hero-card>* {
    position: relative;
    z-index: 1;
}

.thank-hero-card h1 {
    font-size: clamp(1.5rem, 4.5vw, 2.25rem);
    margin-bottom: var(--space-md);
}

.thank-hero-card p[data-thank-body] {
    font-size: var(--fs-md);
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
}

.thank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.thank-panel {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid rgba(255, 168, 176, 0.35);
    box-shadow: var(--shadow-soft);
    animation: rise-in 0.9s ease both;
}

.thank-panel:nth-child(2) {
    animation-delay: 0.08s;
}

.thank-panel h2 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.thank-quote {
    margin: 0;
    padding: var(--space-lg);
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-style: italic;
    color: var(--clr-ink);
    border-radius: var(--radius-md);
    background: linear-gradient(115deg, rgba(255, 214, 224, 0.5), rgba(255, 168, 176, 0.25));
    border-left: 4px solid var(--clr-ember);
}

.thank-steps {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    counter-reset: step;
}

.thank-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    align-items: start;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 168, 176, 0.25);
}

.thank-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.thank-step-index {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    font-size: var(--fs-xs);
    font-weight: 600;
    background: var(--clr-ember);
    color: #fff;
    flex-shrink: 0;
}

.thank-next {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 168, 176, 0.35);
}

.pulse-dot {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: var(--radius-full);
    background: var(--clr-ember);
    margin-right: var(--space-xs);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.hero-visual-wrap {
    position: absolute;
    right: 4%;
    bottom: 6%;
    width: min(42%, 20rem);
    z-index: 3;
    opacity: 0.92;
    animation: drift 9s ease-in-out infinite alternate;
}

.canvas-band {
    position: relative;
    height: 7rem;
    margin: var(--space-lg) var(--space-lg) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.canvas-compact {
    width: 100%;
    height: 100%;
}

.anim-shimmer {
    animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.78;
    }

    50% {
        opacity: 1;
    }
}

.stagger-children>* {
    animation: rise-in 0.75s ease both;
}

.stagger-children>*:nth-child(2) {
    animation-delay: 0.08s;
}

.stagger-children>*:nth-child(3) {
    animation-delay: 0.16s;
}

.stagger-children>*:nth-child(4) {
    animation-delay: 0.24s;
}

.apex-hero {
    position: relative;
    margin: var(--space-md) var(--space-lg) var(--space-xl);
    border-radius: calc(var(--radius-lg) + 0.2rem);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 1rem 2.75rem rgba(255, 76, 41, 0.1);
}

.apex-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 10% 15%, var(--apex-blush), transparent 52%),
        radial-gradient(ellipse 75% 60% at 88% 25%, var(--apex-glow), transparent 50%),
        radial-gradient(ellipse 50% 45% at 50% 100%, rgba(255, 168, 176, 0.2), transparent 55%),
        linear-gradient(168deg, var(--apex-fog) 0%, #fff 38%, #ffeef3 100%);
    z-index: 0;
}

.apex-hero-rings {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.apex-hero-rings::before,
.apex-hero-rings::after {
    content: "";
    position: absolute;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 168, 176, 0.35);
}

.apex-hero-rings::before {
    width: min(42vw, 22rem);
    height: min(42vw, 22rem);
    top: -12%;
    right: -8%;
    animation: drift 14s ease-in-out infinite alternate;
}

.apex-hero-rings::after {
    width: min(28vw, 14rem);
    height: min(28vw, 14rem);
    bottom: 8%;
    left: -4%;
    border-color: rgba(255, 76, 41, 0.18);
    animation: drift 11s ease-in-out infinite alternate-reverse;
}

.apex-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.22;
    mix-blend-mode: multiply;
    z-index: 0;
}

.apex-hero-inner {
    position: relative;
    z-index: 2;
    padding: clamp(1.35rem, 3.5vw, 2.75rem);
}

.apex-hero--home {
    min-height: clamp(26rem, 80vh, 40rem);
}

.apex-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-xl);
    align-items: center;
    min-height: calc(clamp(26rem, 80vh, 40rem) - 2.5rem);
}

.apex-hero-panel {
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 0.5rem 2rem rgba(28, 20, 24, 0.06);
    animation: rise-in 0.85s var(--transition-smooth) both;
}

.apex-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-sunset);
    margin: 0 0 var(--space-md);
}

.apex-chip i {
    font-size: var(--fs-sm);
    color: var(--clr-ember);
}

.apex-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.8vw, 3rem);
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 var(--space-md);
    color: var(--clr-ink);
    letter-spacing: -0.03em;
}

.apex-lede {
    font-size: var(--fs-md);
    line-height: 1.62;
    color: var(--clr-muted);
    max-width: 44ch;
    margin: 0 0 var(--space-lg);
}

.apex-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.apex-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 168, 176, 0.35);
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-muted);
}

.apex-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.apex-hero-meta i {
    color: var(--clr-ember);
}

.apex-hero-figure {
    position: relative;
    animation: rise-in 0.95s var(--transition-smooth) 0.08s both;
}

.apex-hero-figure figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: rotate(-1.2deg);
    box-shadow: 0 1.25rem 3rem rgba(28, 20, 24, 0.12);
    border: 1px solid rgba(255, 168, 176, 0.45);
}

.apex-hero-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.apex-hero-figure figcaption {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-ink);
    background: rgba(255, 240, 245, 0.88);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 168, 176, 0.35);
}

.apex-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.75rem;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to top, var(--clr-mist) 0%, rgba(255, 240, 245, 0.55) 45%, transparent 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.apex-hero--sub {
    margin-bottom: var(--space-lg);
}

.apex-hero--sub .apex-hero-inner {
    padding: var(--space-lg) var(--space-xl);
}

.apex-hero-band {
    position: relative;
    height: 5.5rem;
    margin: 0 calc(var(--space-lg) * -0.25) var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    opacity: 0.9;
}

.apex-hero-band canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.apex-hero-stack {
    display: grid;
    gap: var(--space-md);
    max-width: 52rem;
}

.apex-hero--sub .apex-title {
    font-size: clamp(1.55rem, 3.8vw, 2.35rem);
}

.apex-hero--sub .apex-lede {
    max-width: 52ch;
    margin-bottom: 0;
}

.apex-hero--doc {
    margin-bottom: var(--space-lg);
    box-shadow: 0 0.75rem 2rem rgba(28, 20, 24, 0.07);
}

.apex-hero--doc .apex-hero-inner {
    padding: var(--space-xl) var(--space-xl);
}

.apex-hero-doc-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: start;
    max-width: 52rem;
}

.apex-doc-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--clr-soft), var(--clr-coral));
    color: var(--clr-ember);
    font-size: var(--fs-xl);
    box-shadow: var(--shadow-soft);
}

.apex-hero--doc .doc-eyebrow {
    margin-bottom: var(--space-xs);
}

.apex-hero--doc h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

.apex-hero--doc .doc-lede {
    margin: 0;
    max-width: 50ch;
}

.apex-hero--thanks {
    margin-bottom: var(--space-xl);
    min-height: clamp(18rem, 42vh, 26rem);
}

.apex-hero--thanks .apex-hero-canvas {
    opacity: 0.16;
}

.apex-hero--thanks .apex-hero-inner {
    padding: var(--space-xl) var(--space-lg);
    display: grid;
    place-items: center;
    min-height: clamp(16rem, 38vh, 24rem);
}

.apex-hero-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 36rem;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 168, 176, 0.45);
    box-shadow: var(--shadow-lift);
    animation: rise-in 0.85s ease both;
}

.apex-hero-card h1 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.apex-hero-card .hero-kicker {
    color: var(--clr-sunset);
}

.apex-hero--thanks .thank-actions {
    margin-top: var(--space-lg);
}

.lux-main {
    position: relative;
}

.lux-hero {
    position: relative;
    min-height: clamp(28rem, 88vh, 44rem);
    margin: var(--space-md) var(--space-lg) var(--space-2xl);
    border-radius: calc(var(--radius-lg) + 0.25rem);
    overflow: hidden;
    background: linear-gradient(155deg, var(--lux-night) 0%, var(--lux-rose) 42%, #2a1518 100%);
    box-shadow: 0 1.25rem 3.5rem rgba(12, 8, 10, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lux-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.42;
    mix-blend-mode: screen;
}

.lux-hero-glow {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 70%;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 126, 107, 0.22), transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.lux-hero-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.lux-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-xl);
    align-items: center;
    min-height: calc(clamp(28rem, 88vh, 44rem) - 3rem);
}

.lux-hero-copy {
    color: var(--clr-mist);
}

.lux-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lux-champagne);
    margin: 0 0 var(--space-md);
    animation: rise-in 0.9s var(--transition-smooth) both;
}

.lux-hero-tag i {
    color: var(--clr-coral);
    font-size: var(--fs-sm);
}

.lux-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.15rem);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
    color: #fff5f8;
    animation: rise-in 1s var(--transition-smooth) 0.06s both;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .lux-title {
        background: linear-gradient(120deg, #fff 10%, var(--lux-champagne) 55%, var(--clr-coral) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.lux-lede {
    font-size: var(--fs-md);
    line-height: 1.65;
    color: rgba(255, 240, 245, 0.78);
    max-width: 38ch;
    margin: 0 0 var(--space-lg);
    animation: rise-in 1s var(--transition-smooth) 0.12s both;
}

.lux-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: rise-in 1s var(--transition-smooth) 0.18s both;
}

.lux-hero-actions .btn-primary {
    background: linear-gradient(125deg, var(--clr-coral), var(--clr-ember));
    box-shadow: 0 0.5rem 2rem rgba(255, 76, 41, 0.35);
}

.lux-hero-actions .btn-ghost {
    border-color: rgba(255, 214, 224, 0.45);
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-mist);
}

.lux-hero-actions .btn-ghost:hover {
    background: rgba(255, 214, 224, 0.14);
    border-color: rgba(255, 214, 224, 0.65);
    color: #fff;
}

.lux-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 168, 176, 0.2);
    animation: rise-in 1.05s var(--transition-smooth) 0.24s both;
}

.lux-metric {
    text-align: left;
}

.lux-metric-val {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--lux-champagne);
    line-height: 1.2;
}

.lux-metric-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 240, 245, 0.55);
    margin-top: var(--space-xs);
}

.lux-hero-art {
    position: relative;
    animation: rise-in 1.1s var(--transition-smooth) 0.15s both;
}

.lux-frame {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: rotate(1.8deg);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 168, 176, 0.35);
}

.lux-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(12, 8, 10, 0.45) 100%);
    pointer-events: none;
}

.lux-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.lux-frame-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    z-index: 2;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-mist);
    background: rgba(12, 8, 10, 0.55);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 168, 176, 0.25);
}

.lux-intro {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
}

.lux-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: end;
}

.lux-intro h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    margin-bottom: var(--space-md);
    color: var(--clr-ink);
}

.lux-intro-lede {
    font-size: var(--fs-md);
    max-width: 52ch;
}

.lux-intro-aside {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 214, 224, 0.55), rgba(255, 168, 176, 0.25));
    border: 1px solid var(--lux-line);
    box-shadow: var(--shadow-soft);
    transform: translateY(0.35rem) rotate(-0.8deg);
}

.lux-intro-aside p {
    margin: 0;
    font-size: var(--fs-sm);
}

.lux-bento-wrap {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-2xl);
}

.lux-bento-head {
    margin-bottom: var(--space-lg);
}

.lux-bento-head h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.lux-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-md);
}

.lux-cell {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--lux-line);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.lux-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.lux-cell-span-7 {
    grid-column: span 7;
}

.lux-cell-span-5 {
    grid-column: span 5;
}

.lux-cell-span-4 {
    grid-column: span 4;
}

.lux-cell-span-8 {
    grid-column: span 8;
}

.lux-cell-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--clr-soft), var(--clr-coral));
    color: var(--clr-ember);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-md);
}

.lux-cell h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.lux-editorial {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.lux-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.lux-editorial-visual {
    position: relative;
}

.lux-editorial-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
}

.lux-editorial-float {
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    max-width: 11rem;
    padding: var(--space-md);
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--lux-line);
    box-shadow: var(--shadow-soft);
    font-size: var(--fs-sm);
    transform: rotate(-2deg);
}

.lux-editorial-float p {
    margin: 0;
}

.lux-ribbon {
    margin: var(--space-xl) var(--space-lg);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, var(--clr-ember) 0%, #8b1f1a 50%, var(--lux-rose) 100%);
    color: var(--clr-mist);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lux-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: shimmer 6s ease-in-out infinite;
}

.lux-ribbon p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    font-style: italic;
    color: rgba(255, 240, 245, 0.95);
    line-height: 1.4;
}

.lux-pillars {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.lux-pillars h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
}

.lux-pillar-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.lux-pillar {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--lux-line);
    border-top: 3px solid var(--clr-ember);
    box-shadow: var(--shadow-soft);
}

.lux-pillar-num {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    color: rgba(255, 126, 107, 0.35);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.lux-pillar h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-sm);
}

.lux-split {
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.lux-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-xl);
    align-items: start;
}

.lux-split-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 240, 245, 0.9), #fff);
    border: 1px solid var(--lux-line);
    box-shadow: var(--shadow-soft);
}

.lux-split-card h2 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
}

.lux-timeline {
    border-left: 2px solid var(--clr-coral);
    padding-left: var(--space-lg);
    margin: var(--space-md) 0 0;
}

.lux-timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
}

.lux-timeline-item::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--space-lg) - 0.35rem);
    top: 0.25rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: var(--radius-full);
    background: var(--clr-ember);
    box-shadow: 0 0 0 4px rgba(255, 168, 176, 0.35);
}

.lux-timeline-item h3 {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-sunset);
    margin-bottom: var(--space-xs);
}

.lux-timeline-item p {
    margin: 0;
}

.lux-quote-panel {
    max-width: 48rem;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--lux-line);
    box-shadow: var(--shadow-lift);
}

.lux-quote-panel blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--clr-ink);
    line-height: 1.45;
}

.lux-quote-panel cite {
    display: block;
    margin-top: var(--space-md);
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--clr-muted);
}

.lux-visit {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-2xl);
}

.lux-visit-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--clr-soft) 0%, rgba(255, 168, 176, 0.45) 100%);
    border: 1px solid rgba(255, 76, 41, 0.2);
    box-shadow: var(--shadow-lift);
}

.lux-visit-panel h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin-bottom: var(--space-md);
}

.lux-visit-meta {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
}

.lux-visit-meta li {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--clr-muted);
}

.lux-visit-meta i {
    color: var(--clr-ember);
    margin-top: 0.15rem;
}

.lux-visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.lux-visit-aside {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    align-self: center;
}

.lux-visit-aside p {
    margin: 0;
    font-size: var(--fs-sm);
}

@media (max-width: 960px) {
    .split-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-panel {
        position: absolute;
        right: var(--space-lg);
        top: calc(100% + var(--space-sm));
        flex-direction: column;
        align-items: stretch;
        min-width: 12rem;
        padding: var(--space-sm);
        background: rgba(255, 240, 245, 0.96);
        border: 1px solid rgba(255, 168, 176, 0.45);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

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

    .hero-visual-wrap {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 18rem);
        margin: var(--space-md) auto 0;
    }

    .doc-frame {
        grid-template-columns: 1fr;
    }

    .doc-rail {
        position: relative;
        top: 0;
    }

    .doc-rail-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thank-grid {
        grid-template-columns: 1fr;
    }

    .doc-hero {
        padding: var(--space-xl) var(--space-md);
    }

    .apex-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: var(--space-lg);
    }

    .apex-hero-figure {
        order: -1;
        max-width: 20rem;
        margin: 0 auto;
    }

    .apex-hero-figure figure {
        transform: rotate(0deg);
    }

    .apex-hero-doc-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .apex-doc-icon {
        margin: 0 auto;
    }

    .apex-hero-band {
        margin: 0 0 var(--space-sm);
    }

    .lux-hero-art {
        order: -1;
        max-width: 22rem;
        margin: 0 auto;
    }

    .lux-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: var(--space-lg);
    }

    .lux-hero {
        min-height: auto;
        margin: var(--space-sm) var(--space-md) var(--space-xl);
    }

    .lux-hero-inner {
        padding: var(--space-lg);
    }

    .lux-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .lux-metric {
        text-align: center;
    }

    .lux-frame {
        transform: rotate(0deg);
    }

    .lux-intro-grid {
        grid-template-columns: 1fr;
    }

    .lux-bento .lux-cell-span-7,
    .lux-bento .lux-cell-span-5,
    .lux-bento .lux-cell-span-4,
    .lux-bento .lux-cell-span-8 {
        grid-column: span 12;
    }

    .lux-editorial-grid {
        grid-template-columns: 1fr;
    }

    .lux-editorial-float {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: none;
        margin-top: var(--space-md);
        transform: none;
    }

    .lux-pillar-row {
        grid-template-columns: 1fr;
    }

    .lux-split-grid {
        grid-template-columns: 1fr;
    }

    .lux-visit-panel {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }

    .lux-ribbon {
        margin: var(--space-md) var(--space-md);
    }
}

@media (max-width: 520px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .hero-stage {
        margin: var(--space-md);
    }

    .band-angled {
        margin: var(--space-md) 0;
        padding: var(--space-xl) var(--space-md);
    }
}

@media (max-width: 320px) {
    :root {
        --fs-base: 0.8rem;
        --fs-xs: 0.64rem;
        --fs-sm: 0.72rem;
        --space-lg: 1rem;
        --space-xl: 1.35rem;
        --space-2xl: 2rem;
    }

    body {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .shell-header {
        padding: var(--space-sm) var(--space-sm) 0;
    }

    .header-inner {
        padding: var(--space-xs) var(--space-sm);
        gap: var(--space-sm);
        border-radius: var(--radius-md);
    }

    .brand-mark {
        font-size: var(--fs-sm);
        max-width: 11rem;
        line-height: 1.25;
    }

    .hero-overlay {
        padding: var(--space-md);
    }

    .hero-stage {
        margin: var(--space-sm);
        min-height: 18rem;
    }

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

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .section-block {
        padding: var(--space-lg) var(--space-sm);
    }

    .offset-stack {
        padding: var(--space-lg) var(--space-sm);
    }

    .policy-strip {
        padding: var(--space-sm);
    }

    .policy-strip a {
        white-space: normal;
    }

    .footer-mini {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
        padding: var(--space-md) var(--space-sm);
    }

    .doc-shell {
        padding: 0 var(--space-sm) var(--space-xl);
    }

    .doc-hero {
        margin: var(--space-sm) 0 var(--space-md);
        padding: var(--space-lg) var(--space-sm);
        transform: none;
    }

    .doc-rail {
        padding: var(--space-sm);
    }

    .doc-rail-list a {
        font-size: var(--fs-xs);
        padding: var(--space-xs);
    }

    .doc-block {
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-lg);
    }

    .doc-footer-cta {
        padding: var(--space-lg) var(--space-sm);
    }

    .thank-shell {
        padding: var(--space-sm) var(--space-sm) var(--space-xl);
    }

    .thank-hero-card {
        padding: var(--space-lg) var(--space-sm);
    }

    .thank-quote {
        font-size: var(--fs-md);
        padding: var(--space-md);
    }

    .thank-next {
        padding: var(--space-md) var(--space-sm);
    }

    .thank-step {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .thank-step-index {
        width: 1.4rem;
        height: 1.4rem;
        font-size: 0.6rem;
    }

    .legal-page {
        padding: var(--space-lg) var(--space-sm);
    }

    .overlay-card {
        padding: var(--space-md);
        max-width: calc(100vw - 1.5rem);
    }

    .overlay-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .overlay-actions .btn-primary,
    .overlay-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .canvas-band {
        margin: var(--space-sm);
        height: 4.5rem;
    }

    .contact-shell {
        padding: var(--space-lg) var(--space-sm);
    }

    .form-panel {
        padding: var(--space-md);
    }

    .map-frame {
        min-height: 12rem;
    }

    .thank-wrap {
        padding: var(--space-lg) var(--space-sm);
    }

    .nav-panel {
        right: var(--space-sm);
        min-width: min(12rem, calc(100vw - 1.25rem));
    }

    .apex-hero {
        margin: var(--space-xs);
        border-radius: var(--radius-md);
    }

    .apex-hero-inner {
        padding: var(--space-md);
    }

    .apex-hero-panel {
        padding: var(--space-md);
    }

    .apex-hero--doc .apex-hero-inner {
        padding: var(--space-lg) var(--space-sm);
    }

    .lux-hero {
        margin: var(--space-xs);
        border-radius: var(--radius-md);
    }

    .lux-hero-inner {
        padding: var(--space-md);
    }

    .lux-ribbon {
        margin: var(--space-sm);
        padding: var(--space-lg) var(--space-sm);
    }

    .lux-quote-panel {
        padding: var(--space-lg) var(--space-sm);
        margin-left: var(--space-sm);
        margin-right: var(--space-sm);
    }

    .lux-visit-panel {
        padding: var(--space-md);
    }

    .lux-editorial {
        padding: var(--space-lg) var(--space-sm);
    }

    .lux-bento-wrap {
        padding: 0 var(--space-sm) var(--space-xl);
    }

    .lux-intro {
        padding: var(--space-xl) var(--space-sm) var(--space-lg);
    }

    .lux-pillars {
        padding: var(--space-lg) var(--space-sm);
    }

    .lux-split {
        padding: var(--space-lg) var(--space-sm);
    }
}