:root {
    --home-bg: #fffbf9;
    --home-text: #2d2426;
    --home-purple: #4a1d2c;
    --home-gold: #c69b58;
    --home-rose: #d97986;
    --home-muted: #8d7a7c;
    --home-muted-strong: #5a4b4d;
    --home-border-soft: rgba(111, 35, 60, 0.08);
    --home-glass-bg: rgba(255, 255, 255, 0.6);
}

body.home-luxury {
    background-color: var(--home-bg);
    color: var(--home-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.premium-home {
    position: relative;
    overflow: clip;
    color: var(--home-text);
    padding: 0;
    background: transparent;
    z-index: 1;
}

.premium-home::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(141, 47, 77, 0.01) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(141, 47, 77, 0.01) 25%, transparent 25%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

.premium-section {
    position: relative;
    padding: 8rem 0;
}

.hero-canvas-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
     background:
        radial-gradient(circle at 10% 10%, rgba(217, 121, 134, 0.08), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(198, 155, 88, 0.06), transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 80%),
        linear-gradient(180deg, #fffaf6 0%, #fdf5f0 40%, #f7eee5 100%);
}

.hero-canvas-container.is-fallback {
    pointer-events: auto;
    z-index: -1;
}

.hero-canvas-container.is-fallback canvas {
    display: none;
}

.home-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.82), rgba(251, 246, 239, 0.86)),
        linear-gradient(180deg, rgba(252, 248, 244, 0.86) 0%, rgba(246, 235, 225, 0.88) 100%);
    backdrop-filter: blur(10px) saturate(130%);
    transition: opacity 520ms ease, visibility 520ms ease;
}

.home-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.home-preloader-card {
    display: grid;
    place-items: center;
    gap: 0.85rem;
    padding: 1.4rem 1.65rem 1.3rem;
    border-radius: 30px;
    border: 1px solid rgba(111, 35, 60, 0.12);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.88), rgba(255, 248, 244, 0.78)),
        rgba(255, 255, 255, 0.88);
    box-shadow:
        0 28px 80px rgba(58, 40, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
}

.home-preloader-animation {
    width: min(190px, 50vw);
    height: min(190px, 50vw);
    display: grid;
    place-items: center;
    filter: drop-shadow(0 18px 24px rgba(141, 47, 77, 0.12));
}

.home-preloader-animation svg,
.home-preloader-animation canvas {
    width: 100% !important;
    height: 100% !important;
}

.home-preloader-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--home-purple), var(--home-blue));
    box-shadow: 0 14px 30px rgba(111, 35, 60, 0.24);
}

.home-preloader-text {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--home-purple);
}

.home-preloader-bar {
    width: 13rem;
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(111, 35, 60, 0.08);
}

.home-preloader-bar span {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--home-purple), var(--home-gold));
    animation: preloader-sweep 1.35s ease-in-out infinite;
}

.premium-home::before,
.premium-home::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.premium-home::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.36), transparent 28%);
    opacity: 0.48;
    inset: 0;
}

.premium-home::after {
    background-image: 
        linear-gradient(45deg, rgba(111, 35, 60, 0.03) 25%, transparent 25%, transparent 75%, rgba(111, 35, 60, 0.03) 75%),
        linear-gradient(45deg, rgba(111, 35, 60, 0.03) 25%, transparent 25%, transparent 75%, rgba(111, 35, 60, 0.03) 75%);
    background-size: 120px 120px;
    background-position: 0 0, 60px 60px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
    opacity: 0.18;
}

.premium-hero {
    position: relative;
    min-height: calc(100svh - 88px);
    padding: clamp(1rem, 2vw, 1.6rem) 0 clamp(1.2rem, 2.4vw, 2rem);
    display: flex;
    align-items: center;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at center, rgba(141, 47, 77, 0.04) 2px, transparent 2px);
    background-size: 80px 80px;
    opacity: 0.15;
    transform: perspective(1000px) rotateX(55deg) translateY(0);
    transform-origin: center center;
    mask-image: radial-gradient(circle at center, black, transparent 90%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding-inline: clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    min-height: calc(100vh - 120px);
}

@media (max-width: 1100px) {
    .hero-shell {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        padding-bottom: 4rem;
        text-align: center;
    }
    
    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-proof-line, .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: auto;
        margin-top: 3rem;
    }
}

.hero-copy {
    max-width: 44rem;
}

.hero-superline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 0.35rem;
}

.hero-mode-banner {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 22px;
    border: 1px solid rgba(111, 35, 60, 0.1);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(18px);
    animation: card-rise 860ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-mode-banner-label {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--home-purple);
}

.hero-mode-banner strong {
    font-size: 0.95rem;
    color: var(--home-text);
}

.hero-superline-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(111, 35, 60, 0.1);
    background: rgba(255, 255, 255, 0.72);
    color: var(--home-muted-strong);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--home-gold);
    margin-bottom: 1rem;
}

.hero-copy h1,
.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: "Playfair Display", Georgia, serif;
    color: var(--home-purple);
    margin-bottom: 1rem;
}

.final-cta-copy h2,
.device-copy h2 {
    margin: 1rem 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.hero-title h1 {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title {
    display: grid;
    gap: 0.08em;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line-a {
    animation: title-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-title-line-b {
    animation: title-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
    color: #6f233c;
}

.hero-title-line-b {
    position: relative;
}

.hero-title-line-b::after {
    content: "";
    position: absolute;
    left: 0.1em;
    right: 0.25em;
    bottom: 0.08em;
    height: 0.42em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(141, 47, 77, 0.18), rgba(198, 155, 88, 0.18));
    z-index: -1;
    transform-origin: left center;
    animation: underline-grow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms both;
}

.hero-subtitle,
.section-head p,
.device-copy p,
.final-cta-copy p,
.plan-card p,
.feature-card p,
.journey-card p,
.snapshot-card p {
    color: var(--home-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--home-muted-strong);
    margin-bottom: 2.5rem;
}

.hero-emotion-line {
    margin-top: 0.9rem;
    max-width: 32rem;
    color: var(--home-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.08rem, 1.7vw, 1.38rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.hero-proof-line,
.hero-meta,
.device-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.hero-proof-line {
    margin-top: 1.5rem;
}

.hero-proof-line span,
.hero-meta span,
.device-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--home-border-soft);
    background: rgba(255, 255, 255, 0.78);
    color: var(--home-muted-strong);
    backdrop-filter: blur(16px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.hero-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--home-purple), #6f233c);
    box-shadow:
        0 18px 40px rgba(111, 35, 60, 0.24),
        0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-btn-secondary {
    color: var(--home-purple);
    border-color: rgba(111, 35, 60, 0.14);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
}

.hero-btn:hover,
.hero-btn:focus-visible {
    transform: translateY(-2px) scale(1.01);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
    box-shadow:
        0 20px 46px rgba(111, 35, 60, 0.3),
        0 10px 32px rgba(0, 0, 0, 0.14);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
    border-color: rgba(111, 35, 60, 0.22);
    background: rgba(255, 255, 255, 0.94);
}

.hero-meta {
    margin-top: 1.25rem;
    color: var(--home-muted);
}

.hero-voice-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.hero-voice-line span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px dashed rgba(111, 35, 60, 0.16);
    background: rgba(255, 255, 255, 0.62);
    color: var(--home-text);
    font-size: 0.83rem;
}

/* Luxury Metrics Refinement */
.luxury-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.luxury-metric {
    padding: 3rem 2.5rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(111, 35, 60, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(58, 40, 42, 0.04);
}

.luxury-metric:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(111, 35, 60, 0.08);
}

.luxury-metric-value {
    font-size: 3.5rem;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    color: var(--home-purple);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.luxury-metric-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    color: var(--home-text);
    margin-bottom: 0.5rem;
    display: block;
}

.luxury-metric p {
    margin: 0.5rem 0 0;
    color: var(--home-muted-strong);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hero Visual & Image Stack Fix */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-frame {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 Aspect Ratio */
    border-radius: 40px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(111, 35, 60, 0.08)),
        var(--home-border-soft);
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

.hero-image-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(74, 29, 44, 0.12);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-image.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Security Section Styling */
.security-rail {
    background: linear-gradient(180deg, transparent, rgba(141, 47, 77, 0.02), transparent);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.security-icon {
    flex-shrink: 0;
    width: 3.5rem; 
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(217, 121, 134, 0.1);
    color: var(--home-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.security-copy h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--home-purple);
}

.security-copy p {
    color: var(--home-muted-strong);
    line-height: 1.6;
    font-size: 1rem;
}

.hero-caption-panel {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    max-width: 15rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(111, 35, 60, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(18px);
    transition:
        opacity 360ms ease,
        transform 360ms ease;
}

.hero-caption-panel.is-swapping {
    animation: caption-pop 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-rotate-button {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 4;
    width: 2.8rem;
    height: 2.8rem;
    border: none;
    border-radius: 50%;
    color: var(--home-purple);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(58, 40, 42, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-rotate-button:hover,
.hero-rotate-button:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 36px rgba(58, 40, 42, 0.16);
}

.hero-caption-panel strong {
    display: block;
    font-size: 1rem;
    color: var(--home-text);
    line-height: 1.25;
}

.hero-caption-panel span {
    display: block;
    margin-top: 0.4rem;
    color: var(--home-muted);
    font-size: 0.9rem;
}

.hero-frame-strip {
    position: absolute;
    right: 0.95rem;
    top: 0.95rem;
    z-index: 3;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 16rem;
}

.hero-frame-strip span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(141, 47, 77, 0.07);
    color: var(--home-muted-strong);
    font-size: 0.82rem;
}

.premium-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.75rem) 0;
}

.section-head {
    margin-bottom: 3rem;
}

.section-head-compact {
    max-width: 920px;
}

.section-head::after {
    content: "";
    display: block;
    width: 5rem;
    height: 1px;
    margin-top: 1rem;
    background: linear-gradient(90deg, rgba(141, 47, 77, 0.35), transparent);
}

.section-head h2,
.final-cta-copy h2,
.device-copy h2 {
    font-size: clamp(2rem, 4.8vw, 4rem);
}

.section-head p,
.device-copy p,
.final-cta-copy p {
    margin-top: 0.9rem;
}

.luxury-rail,
.luxury-story,
.final-cta {
    max-width: none;
    width: 100%;
    padding-inline: 0;
}

.quick-search-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(141, 47, 77, 0.03), transparent);
}

.quick-search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(111, 35, 60, 0.08);
    box-shadow: 
        0 40px 100px rgba(58, 40, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.quick-search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(111, 35, 60, 0.05);
    margin: 2.5rem 0 1.5rem;
}

.quick-search-field {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-search-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--home-muted);
    padding-left: 0.5rem;
}

.quick-search-field select, 
.quick-search-field input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(111, 35, 60, 0.1);
    background: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.quick-search-field select:focus {
    border-color: var(--home-purple);
    outline: none;
}

.quick-search-submit {
    align-self: flex-end;
    min-height: 3.4rem;
    padding: 0 2.5rem;
}

.quick-search-chips {
    max-width: 1540px;
    margin: 0.9rem auto 0;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.quick-search-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(111, 35, 60, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--home-muted-strong);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-search-chip:hover,
.quick-search-chip:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(111, 35, 60, 0.22);
    box-shadow: 0 14px 30px rgba(58, 40, 42, 0.08);
}

/* Feature Rail Refinement */
.feature-rail {
    padding: 8rem 0;
}

.feature-rail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    background: var(--home-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--home-border-soft);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(111, 35, 60, 0.05);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--home-rose);
    margin-bottom: 2rem;
    display: block;
}

.feature-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--home-purple);
}

.feature-card p {
    color: var(--home-muted-strong);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Luxury Story Section */
.luxury-story {
    padding: 10rem 0;
    position: relative;
}

.luxury-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

@media (max-width: 992px) {
    .luxury-story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.luxury-story-panel {
    padding: 4.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #4a1d2c, #2d121b);
    color: #fff;
    box-shadow: 0 50px 100px rgba(45, 18, 27, 0.2);
}

.luxury-story-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.luxury-story-panel h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.luxury-story-panel p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
}

.luxury-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 5rem auto 0;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .luxury-process {
        grid-template-columns: 1fr;
    }
}

.luxury-process-step {
    position: relative;
    padding: 3rem;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--home-border-soft);
}

.luxury-process-step span {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    color: rgba(141, 47, 77, 0.05);
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-weight: 900;
}

.luxury-process-step strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--home-purple);
    margin-bottom: 1rem;
}

.luxury-process-step p {
    color: var(--home-muted-strong);
    line-height: 1.7;
}

.luxury-story-copy:hover,
.luxury-story-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(58, 40, 42, 0.12);
}

.luxury-story-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.luxury-story-line span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(141, 47, 77, 0.07);
    color: var(--home-text);
    font-size: 0.82rem;
}

.luxury-story-copy p,
.luxury-story-panel p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.8;
}

.luxury-story-panel h3 {
    margin: 0.35rem 0 0.55rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.05;
}

.luxury-story-tag {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--home-purple);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.luxury-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0 1rem;
    border: 1px solid rgba(111, 35, 60, 0.1);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(58, 40, 42, 0.08);
}

.luxury-process-step {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.82);
    transition: transform 220ms ease, background 220ms ease;
}

.luxury-process-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.94);
}

.luxury-process-step span {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--home-purple);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.luxury-process-step strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
}

.luxury-process-step p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.75;
}

.glass-card {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: var(--home-radius-lg);
    border: 1px solid rgba(111, 35, 60, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 248, 0.78)),
        var(--home-panel);
    box-shadow: 0 12px 30px rgba(58, 40, 42, 0.08);
    backdrop-filter: blur(26px);
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
    pointer-events: none;
}

.snapshot-card i,
.feature-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    color: #141628;
    background: linear-gradient(135deg, #fff5d9, var(--home-gold));
    box-shadow: 0 12px 30px rgba(243, 197, 107, 0.26);
    margin-bottom: 1rem;
}

.snapshot-card strong {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.snapshot-card h3,
.feature-card h3,
.journey-card h3,
.plan-card h3,
.phone-card strong {
    margin: 0.7rem 0 0.45rem;
    font-size: 1.1rem;
    color: var(--home-text);
}

.feature-card,
.journey-card,
.plan-card {
    min-height: 100%;
}

.feature-card {
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover,
.journey-card:hover,
.plan-card:hover,
.snapshot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 35, 60, 0.18);
    box-shadow: 0 28px 70px rgba(58, 40, 42, 0.16);
}

.journey-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--home-border-soft);
    color: var(--home-gold);
    font-weight: 800;
}

.plan-card {
    position: relative;
}

.plan-card-featured {
    border-color: rgba(243, 197, 107, 0.34);
    background:
        linear-gradient(180deg, rgba(243, 197, 107, 0.16), rgba(255, 255, 255, 0.86)),
        var(--home-panel-strong);
    transform: translateY(-6px);
}

.plan-label {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--home-border-soft);
    color: var(--home-muted-strong);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.plan-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--home-muted);
}

.plan-card li + li {
    margin-top: 0.45rem;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 0 auto 1rem;
    padding: 2rem clamp(1rem, 3vw, 2.5rem) 1rem;
    border-top: 1px solid rgba(111, 35, 60, 0.1);
}

.final-cta-copy {
    max-width: 40rem;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.home-preloading .reveal-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
}

html:not(.home-preloading) .reveal-on-scroll {
    opacity: 1;
}

@keyframes float-soft {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes title-rise {
    from {
        opacity: 0;
        transform: translateY(0.8rem);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes underline-grow {
    from {
        opacity: 0;
        transform: scaleX(0.35);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes caption-pop {
    0% {
        opacity: 0.72;
        transform: translateY(0.35rem) scale(0.985);
    }
    55% {
        opacity: 1;
        transform: translateY(-0.12rem) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes preloader-sweep {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(280%);
    }
}

@media (max-width: 1199.98px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        min-height: 38rem;
    }

    .section-head {
        padding-left: 0.85rem;
    }

    .luxury-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .luxury-story-grid {
        grid-template-columns: 1fr;
    }

    .luxury-process {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }

    .quick-search-bar,
    .feature-rail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-search-submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .premium-home {
        padding: 0.7rem;
    }

    .premium-hero {
        min-height: auto;
        padding-top: 0.8rem;
    }

    .hero-shell {
        gap: 1.35rem;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin-top: 0;
    }

    .hero-copy {
        order: 2;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 11vw, 3.65rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .hero-title {
        gap: 0.02em;
    }

    .hero-emotion-line {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .hero-proof-line span,
    .hero-meta span,
    .device-points span {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-frame {
        width: 100%;
        min-height: 24rem;
        max-width: 30rem;
        margin-inline: auto;
        aspect-ratio: 4 / 5;
    }

    .hero-frame-copy {
        padding-inline: 0.15rem;
    }

    .hero-caption-panel {
        left: 0.75rem;
        bottom: 0.75rem;
        max-width: 13rem;
    }

    .hero-frame-strip {
        gap: 0.4rem;
    }

    .hero-frame-strip span {
        padding: 0.45rem 0.7rem;
        font-size: 0.72rem;
    }

    .hero-image-primary,
    .hero-image-slide {
        inset: 0;
    }

    .hero-rotate-button {
        right: 0.85rem;
        bottom: 0.85rem;
    }

    .hero-frame-strip {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 0.85rem;
    }

    .luxury-metrics {
        grid-template-columns: 1fr;
    }

    .luxury-metric {
        border-right: none;
        border-bottom: 1px solid rgba(111, 35, 60, 0.08);
    }

    .luxury-metric:last-child {
        border-bottom: none;
    }

    .luxury-story-grid {
        padding-inline: 1rem;
    }

    .quick-search-bar,
    .feature-rail-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orb,
    .hero-image,
    .hero-frame,
    .home-preloader-bar span {
        animation: none;
    }

    .hero-frame,
    .hero-btn,
    .reveal-on-scroll,
    .hero-image-slide,
    .hero-caption-panel,
    .hero-rotate-button,
    .luxury-metric,
    .luxury-story-copy,
    .luxury-story-panel,
    .luxury-process-step {
        transition: none;
    }
}
