/* ==========================================================================
   VSL Styling And Design — Editorial Redesign
   Every section is a unique magazine spread.
   Illustrations are original art, not decoration.
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
    --cream: #F8F4EF;
    --ink: #1A1A1A;
    --garnet: #7B0D1E;
    --gold: #C9A84C;
    --white: #FFFFFF;
    --warm: #F3EDE4;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Atkinson Hyperlegible', 'Segoe UI', sans-serif;
    --font-label: 'DM Sans', 'Segoe UI', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --max-w: 1320px;
}

/* ---------- Font Faces ---------- */
@font-face { font-family: 'Cormorant Garamond'; src: url('/assets/fonts/CormorantGaramond-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('/assets/fonts/CormorantGaramond-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Atkinson Hyperlegible'; src: url('/assets/fonts/AtkinsonHyperlegible-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Atkinson Hyperlegible'; src: url('/assets/fonts/AtkinsonHyperlegible-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('/assets/fonts/DMSans-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('/assets/fonts/DMSans-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }

/* ---------- Base ---------- */
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    animation: ed-page-in 0.5s ease-out;
}
@keyframes ed-page-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
img { display: block; max-width: 100%; height: auto; border-radius: 1rem; }
a { color: inherit; }
p { max-width: 52ch; }

/* ---------- Accessibility ---------- */
.vsl-skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--garnet);
    color: var(--cream);
    font-family: var(--font-label);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: top 0.2s;
}
.vsl-skip-link:focus {
    top: 1rem;
}
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1, h2 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }

.ed-kicker {
    display: block;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.ed-price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--garnet);
    margin-top: 1.5rem;
}
.ed-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}

/* ---------- Links & Buttons ---------- */
.ed-link {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--ink);
    margin-top: 1.5rem;
    padding: 0.625rem 0 0.375rem;
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
    width: fit-content;
    min-height: 44px;
}
.ed-link:hover {
    color: var(--garnet);
    border-color: var(--garnet);
}
.ed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-label);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    background: var(--gold);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}
.ed-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-1px);
}
.ed-btn--wa {
    padding: 1rem 1.75rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    gap: 0.5rem;
    width: auto;
    height: auto;
}

/* ══════════════════════════════════════════
   GOLD DOORWAY ARCH — behind all illustrations
   ══════════════════════════════════════════ */
.ed-doorway {
    position: absolute;
    inset: 0 5% -10% 5%;
    width: 90%;
    height: 110%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    /* Entrance: hidden at bottom, clips reveal upward */
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
/* Once revealed — stays open, lit state, no re-clip on scroll back */
.ed-doorway.is-door-open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}

/* Background gives way — gold bloom radiates out as doorway opens */
.ed-spread__image::after,
.ed-feature__image::after,
.ed-trio__img::after {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at 50% 38%,
        rgba(201,168,76,0.55) 0%,
        rgba(201,168,76,0.28) 30%,
        rgba(201,168,76,0.08) 60%,
        transparent 75%);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transform: scale(0.55);
}
@keyframes bg-give-way {
    0%   { opacity: 0;    transform: scale(0.55); }
    35%  { opacity: 1;    transform: scale(1);    }
    100% { opacity: 0;    transform: scale(1.18); }
}
.ed-spread__image.is-bg-open::after,
.ed-feature__image.is-bg-open::after,
.ed-trio__img.is-bg-open::after {
    animation: bg-give-way 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.ed-doorway + img,
.ed-doorway ~ img {
    position: relative;
    z-index: 1;
}

@keyframes ed-door-breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.08));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.15));
    }
}

/* ══════════════════════════════════════════
   HERO — Full viewport, garnet left / cream right
   ══════════════════════════════════════════ */
.ed-hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.ed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B1025 0%, #7B0D1E 40%, #5A0A16 75%, #3D0710 100%);
    z-index: 0;
}
.ed-hero::after {
    display: none;
}
.ed-hero__art {
    position: absolute;
    right: 5%;
    bottom: 0;
    z-index: 2;
    width: 44%;
    max-width: 520px;
    display: flex;
    align-items: flex-end;
    background: radial-gradient(ellipse at center 70%, var(--warm) 0%, var(--cream) 60%, transparent 100%);
    border-radius: 0 0 0 0;
}
.ed-hero__art img {
    width: 100%;
    height: auto;
    max-height: 92svh;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.12));
}
.ed-hero__copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 10% 6rem 54%;
    min-height: 100svh;
    max-width: 100%;
}
.ed-hero__copy h1 {
    color: var(--cream);
}
.ed-hero__copy .ed-rule {
    background: var(--gold);
}
.ed-hero__sub {
    color: rgba(248, 244, 239, 0.8);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}
.ed-hero .ed-link {
    color: var(--cream);
    border-color: var(--gold);
}
.ed-hero .ed-link:hover {
    color: var(--gold);
}

/* Garnet shimmer sweep */
.ed-hero .ed-hero__copy {
    overflow: hidden;
}
.ed-hero .ed-hero__copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.03), transparent);
    animation: ed-shimmer 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes ed-shimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Hero — mobile */
@media (max-width: 767px) {
    .ed-hero {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
    }
    .ed-hero::before {
        width: 100%;
        height: 100%;
    }
    .ed-hero::after {
        display: none;
    }
    .ed-hero__copy {
        max-width: 100%;
        padding: 6rem 1.5rem 2rem;
        min-height: auto;
        flex: 0 0 auto;
    }
    .ed-hero__copy h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .ed-hero__art {
        position: relative;
        right: auto;
        bottom: auto;
        width: 65%;
        max-width: 280px;
        margin: 0 auto;
        flex: 1 1 auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 0;
    }
    .ed-hero__art img {
        max-height: 50svh;
    }
}

/* ══════════════════════════════════════════
   HERO MONOGRAM — scroll-driven flight to nav
   ══════════════════════════════════════════ */
.ed-hero__monogram {
    position: fixed;
    left: 22%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 42vw, 580px);
    pointer-events: none;
    z-index: 500;
    opacity: 0.90;
    will-change: transform, opacity;
    /* Tight drop-shadow = crisp lit edges, not blurry blur */
    filter: drop-shadow(0 0 10px rgba(201,168,76,1)) drop-shadow(0 0 3px rgba(255,245,210,0.8));
}
/* Large ambient halo behind the SVG via ::before */
.ed-hero__monogram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 155%;
    height: 155%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(201,168,76,0.55) 0%,
        rgba(201,168,76,0.30) 25%,
        rgba(201,168,76,0.12) 52%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
/* Flicker-on: cold start → erratic blinks → stable arrival */
.ed-hero__monogram.is-flicker-on {
    animation: mono-flicker-on 2.2s 0.4s both;
}
.ed-hero__monogram.is-flicker-on::before {
    animation: mono-halo-on 2.2s 0.4s both;
}
@keyframes mono-flicker-on {
    0%   { opacity: 0;    filter: drop-shadow(0 0 2px rgba(201,168,76,0.05)); }
    6%   { opacity: 0.75; filter: drop-shadow(0 0 14px rgba(201,168,76,0.9)); }
    8%   { opacity: 0.05; filter: drop-shadow(0 0 2px rgba(201,168,76,0.05)); }
    14%  { opacity: 0.85; filter: drop-shadow(0 0 16px rgba(201,168,76,1)); }
    16%  { opacity: 0.1;  filter: drop-shadow(0 0 2px rgba(201,168,76,0.1)); }
    22%  { opacity: 0.80; filter: drop-shadow(0 0 13px rgba(201,168,76,0.85)); }
    24%  { opacity: 0.55; filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }
    32%  { opacity: 0.2;  filter: drop-shadow(0 0 3px rgba(201,168,76,0.2)); }
    42%  { opacity: 0.88; filter: drop-shadow(0 0 15px rgba(201,168,76,0.95)); }
    44%  { opacity: 0.70; filter: drop-shadow(0 0 10px rgba(201,168,76,0.7)); }
    55%  { opacity: 0.40; filter: drop-shadow(0 0 5px rgba(201,168,76,0.35)); }
    70%  { opacity: 0.82; filter: drop-shadow(0 0 12px rgba(201,168,76,0.85)); }
    85%  { opacity: 0.88; filter: drop-shadow(0 0 10px rgba(201,168,76,0.95)) drop-shadow(0 0 3px rgba(255,245,210,0.6)); }
    100% { opacity: 0.90; filter: drop-shadow(0 0 10px rgba(201,168,76,1)) drop-shadow(0 0 3px rgba(255,245,210,0.8)); }
}
@keyframes mono-halo-on {
    0%, 50% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
    70%     { opacity: 0.4; transform: translate(-50%, -50%) scale(0.85); }
    100%    { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Steady breathing after flicker settles */
.ed-hero__monogram.is-resting {
    animation: mono-edge-glow 3.5s ease-in-out infinite;
}
.ed-hero__monogram.is-resting::before {
    animation: mono-halo-pulse 3.5s ease-in-out infinite;
}
@keyframes mono-edge-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(201,168,76,1)) drop-shadow(0 0 3px rgba(255,245,210,0.8));
        opacity: 0.90;
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(201,168,76,1)) drop-shadow(0 0 6px rgba(255,245,210,1));
        opacity: 1;
    }
}
@keyframes mono-halo-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.45);
        opacity: 0.55;
    }
}
.ed-hero__monogram svg {
    width: 100%;
    height: auto;
    display: block;
}
.ed-hero__monogram svg .cls-1 { fill: var(--cream); }
.ed-hero__monogram svg .cls-2 { fill: var(--gold); }

/* Nav logo hidden while monogram does its flight */
.vsl-nav-float__logo.logo-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.vsl-nav-float__logo {
    transition: opacity 0.25s ease;
}

/* Reduced motion: skip the flight, hide the monogram, show nav logo */
@media (prefers-reduced-motion: reduce) {
    .ed-hero__monogram { display: none !important; }
}

/* Mobile: monogram has no dedicated space in stacked hero — hide it */
@media (max-width: 767px) {
    .ed-hero__monogram { display: none !important; }
}

/* ══════════════════════════════════════════
   PAUSE — Full-viewport breathing moment
   ══════════════════════════════════════════ */
.ed-pause {
    min-height: 80svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem;
    background: var(--white);
    position: relative;
}
.ed-pause::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--pause-scale, 1));
    width: 300px;
    height: 300px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    transition: transform 0.1s linear;
}
.ed-pause::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--pause-scale, 1));
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    transition: transform 0.1s linear;
}
.ed-pause--warm {
    background: var(--warm);
}
.ed-pause blockquote {
    max-width: 20ch;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    color: var(--ink);
}
.ed-pause blockquote p + p {
    margin-top: 1em;
}

/* ══════════════════════════════════════════
   SPREAD — Asymmetric image + text (About Lexi)
   ══════════════════════════════════════════ */
.ed-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
}
/* ── Service rail: single continuous garnet line at 50% ── */
.ed-service-rail {
    position: relative;
}
@media (min-width: 768px) {
    .ed-service-rail::before {
        content: '';
        position: absolute;
        left: calc(50% - 1px);
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--garnet);
        pointer-events: none;
        z-index: 2;
    }
}

.ed-spread__image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
    background: var(--warm);
    min-height: 80svh;
}
.ed-spread__image img {
    height: 92svh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.08));
}
.ed-spread__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
    border-top: 3px solid var(--garnet);
}
.ed-spread__text h2 {
    margin-bottom: 1.5rem;
}
.ed-spread__text p {
    line-height: 1.75;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .ed-spread__text {
        border-top: none;
    }
}
@media (max-width: 767px) {
    .ed-spread {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ed-spread__image {
        padding: 3rem 2rem 0;
        min-height: auto;
    }
    .ed-spread__image img {
        max-height: 50svh;
    }
    .ed-spread__text {
        padding: 3rem 1.5rem 4rem;
        justify-content: flex-start;
    }
}

/* ══════════════════════════════════════════
   FEATURE — Hero service (Capsule Wardrobe)
   Full-width, image left, text right, edge-to-edge
   ══════════════════════════════════════════ */
.ed-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    direction: rtl;
}
.ed-feature > * { direction: ltr; }
.ed-feature__image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 2rem;
    background: var(--warm);
    overflow: hidden;
    min-height: 80svh;
}
/* Illustration blend — white bg disappears into site palette */
.ed-illus {
    mix-blend-mode: multiply;
    filter: saturate(0.82) contrast(1.05);
}
.ed-feature__image img {
    max-height: 95svh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.1));
}
.ed-feature__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
    border-top: 3px solid var(--garnet);
}
.ed-feature__body h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 5vw, 5rem);
}
.ed-feature__body p {
    line-height: 1.75;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .ed-feature__body {
        border-top: none;
    }
}
@media (max-width: 767px) {
    .ed-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ed-feature__image {
        padding: 3rem 2rem;
        min-height: auto;
    }
    .ed-feature__image img {
        max-height: 55svh;
    }
    .ed-feature__body {
        padding: 3rem 1.5rem 4rem;
        justify-content: flex-start;
    }
}

/* ══════════════════════════════════════════
   SECTION HEADER — Trio intro
   ══════════════════════════════════════════ */
.ed-section-header {
    background: var(--cream);
    padding: 6rem 8% 3rem;
    border-top: 1px solid rgba(201,168,76,0.25);
}
.ed-section-header .ed-kicker {
    display: block;
    margin-bottom: 0.75rem;
}
.ed-section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

/* ══════════════════════════════════════════
   TRIO — Three services in editorial grid
   ══════════════════════════════════════════ */
.ed-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--cream);
}
.ed-trio__item {
    padding: 3rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(26, 26, 26, 0.06);
    transition: background 0.4s var(--ease);
}
.ed-trio__item:last-child {
    border-right: none;
}
.ed-trio__item:nth-child(2) {
    background: var(--warm);
}
.ed-trio__item:hover {
    background: var(--warm);
    filter: brightness(0.98);
}
.ed-trio__item:nth-child(2):hover {
    background: var(--cream);
}
.ed-trio__img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: radial-gradient(ellipse at center 70%, var(--warm) 0%, var(--cream) 100%);
}
.ed-trio__img img {
    height: 95%;
    width: auto;
    max-width: 95%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.6s var(--ease-out);
}
.ed-trio__item:hover .ed-trio__img img {
    transform: scale(1.03);
}
.ed-trio__item .ed-kicker {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}
.ed-trio__item p {
    font-size: 0.9375rem;
    opacity: 0.75;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .ed-trio {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ed-trio__item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 26, 26, 0.06);
        padding: 2.5rem 1.5rem 3rem;
    }
    .ed-trio__item:last-child {
        border-bottom: none;
    }
    .ed-trio__img {
        aspect-ratio: 3 / 4;
        max-height: 55svh;
    }
}

/* ══════════════════════════════════════════
   CTA — Garnet block, centred
   ══════════════════════════════════════════ */
.ed-cta {
    background: var(--garnet);
    color: var(--cream);
    padding: 6rem 2rem;
    border-radius: 2rem 2rem 0 0;
}
.ed-cta__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.ed-cta h2 {
    margin-bottom: 1rem;
    color: var(--cream);
}
.ed-cta p {
    max-width: 100%;
    opacity: 0.8;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}
.ed-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   CTA BLOOM REVEAL
   ══════════════════════════════════════════ */
.ed-bloom {
    clip-path: inset(8% 8% round 4px);
    transition: clip-path 1.2s var(--ease-out);
}
.ed-bloom.is-visible {
    clip-path: inset(0% 0%);
}

/* ══════════════════════════════════════════
   SCROLL REVEALS — opacity + gentle rise
   ══════════════════════════════════════════ */
.ed-reveal {
    opacity: 1;
    transform: none;
}
.ed-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Scroll-triggered slide animations ── */
.anim-slide-left {
    transform: translateX(-50px);
    transition: transform 1.1s var(--ease-out);
}
.anim-slide-right {
    transform: translateX(50px);
    transition: transform 1.1s var(--ease-out);
}
.anim-fade-up {
    opacity: 0.3;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.anim-slide-left.is-animated,
.anim-slide-right.is-animated {
    transform: translateX(0);
}
.anim-fade-up.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card reveals — scale + fade */
.ed-cards > *,
.ed-tiers > .ed-tier,
.ed-packages > .ed-package,
.ed-trio > .ed-trio__item {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.ed-cards > .is-stagger-visible,
.ed-tiers > .is-stagger-visible,
.ed-packages > .is-stagger-visible,
.ed-trio > .is-stagger-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger children in hero */
.ed-hero .ed-reveal:nth-child(1) { transition-delay: 0.1s; }
.ed-hero .ed-reveal:nth-child(2) { transition-delay: 0.35s; }
.ed-hero .ed-reveal:nth-child(3) { transition-delay: 0.55s; }
.ed-hero .ed-reveal:nth-child(4) { transition-delay: 0.75s; }

/* ══════════════════════════════════════════
   FLOATING NAV
   ══════════════════════════════════════════ */
.vsl-nav-float {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    pointer-events: none;
}
.vsl-nav-float__logo,
.vsl-nav-float__trigger {
    pointer-events: auto;
}
.vsl-nav-float__logo {
    display: flex;
    align-items: center;
}
.vsl-logo-monogram {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    transition: transform 0.3s var(--ease);
}
.vsl-logo-monogram:hover { transform: scale(1.05); }
.vsl-logo-monogram .cls-1 { fill: var(--cream); transition: fill 0.4s var(--ease); }
.vsl-logo-monogram .cls-2 { fill: var(--gold); transition: fill 0.4s var(--ease); }
/* On light sections: collapse to single garnet wordmark — gold-on-cream fails contrast (~2.1:1).
   Stronger shadow gives edge separation against cream/warm backgrounds. */
.vsl-nav-float--on-light .vsl-logo-monogram { filter: drop-shadow(0 2px 8px rgba(123,13,30,0.18)); }
.vsl-nav-float--on-light .vsl-logo-monogram .cls-1 { fill: var(--garnet) !important; }
.vsl-nav-float--on-light .vsl-logo-monogram .cls-2 { fill: var(--garnet) !important; }
.vsl-nav-float--on-dark .vsl-logo-monogram .cls-1 { fill: var(--cream) !important; }
.vsl-nav-float--on-dark .vsl-logo-monogram .cls-2 { fill: var(--gold) !important; }

@media (min-width: 768px) {
    .vsl-logo-monogram { height: 84px; }
    .vsl-nav-float { padding: 1.5rem 3rem; }
}

/* Menu trigger */
.vsl-nav-float__trigger {
    width: 44px;
    height: 44px;
    background: rgba(248, 244, 239, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(248, 244, 239, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s var(--ease);
}
.vsl-nav-float__trigger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s var(--ease);
}
.vsl-nav-float--on-light .vsl-nav-float__trigger {
    background: rgba(26, 26, 26, 0.05);
    border-color: rgba(26, 26, 26, 0.1);
}
.vsl-nav-float--on-light .vsl-nav-float__trigger span { background: var(--ink); }
.vsl-nav-float__trigger:hover {
    background: var(--garnet);
    border-color: var(--garnet);
}
.vsl-nav-float__trigger:hover span { background: var(--cream); }
.vsl-nav-float__trigger[aria-expanded="true"] {
    background: transparent;
    border-color: transparent;
}
.vsl-nav-float__trigger[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
    background: var(--cream);
}
.vsl-nav-float__trigger[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
    background: var(--cream);
}

/* ══════════════════════════════════════════
   OVERLAY MENU
   ══════════════════════════════════════════ */
.vsl-overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: linear-gradient(135deg, #8B1025 0%, #7B0D1E 40%, #5A0A16 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}
.vsl-overlay-menu.is-open { opacity: 1; pointer-events: auto; }
.vsl-overlay-menu__inner { text-align: center; }
.vsl-overlay-menu__links { list-style: none; }
.vsl-overlay-menu__links li {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.vsl-overlay-menu.is-open .vsl-overlay-menu__links li { opacity: 1; transform: translateY(0); }
.vsl-overlay-menu.is-open .vsl-overlay-menu__links li:nth-child(1) { transition-delay: 0.1s; }
.vsl-overlay-menu.is-open .vsl-overlay-menu__links li:nth-child(2) { transition-delay: 0.2s; }
.vsl-overlay-menu.is-open .vsl-overlay-menu__links li:nth-child(3) { transition-delay: 0.3s; }
.vsl-overlay-menu.is-open .vsl-overlay-menu__links li:nth-child(4) { transition-delay: 0.4s; }
.vsl-overlay-menu.is-open .vsl-overlay-menu__links li:nth-child(5) { transition-delay: 0.5s; }
.vsl-overlay-menu__links a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vsl-overlay-menu__links a:hover { color: var(--gold); }
.vsl-overlay-menu__cta a { color: var(--gold); }
.vsl-overlay-menu__footer {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease) 0.5s;
}
.vsl-overlay-menu.is-open .vsl-overlay-menu__footer { opacity: 1; }
.vsl-overlay-menu__footer a {
    font-family: var(--font-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream);
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.2s;
}
.vsl-overlay-menu__footer a:hover { opacity: 1; }

.vsl-main { padding-top: 0; }

/* ══════════════════════════════════════════
   STICKY MOBILE BAR
   ══════════════════════════════════════════ */
.vsl-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--white);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    padding: 0.5rem 1rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
}
.vsl-sticky-bar.is-visible { transform: translateY(0); }
.vsl-sticky-bar__btn { flex: 1; text-align: center; font-size: 0.8125rem; padding: 0.75rem 1rem; min-width: 0; white-space: nowrap; }
.vsl-sticky-bar__wa {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--garnet); color: var(--cream); border-radius: 50%;
}
@media (min-width: 768px) { .vsl-sticky-bar { display: none; } }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.vsl-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}
.vsl-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
}
.vsl-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.vsl-footer__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}
.vsl-footer__tagline {
    font-size: 0.8125rem;
    opacity: 0.4;
    line-height: 1.5;
    margin-top: 0.25rem;
}
.vsl-footer__copy {
    font-size: 0.75rem;
    opacity: 0.3;
    margin-top: 1rem;
}
.vsl-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.vsl-footer__heading {
    display: block;
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.vsl-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.vsl-footer__links a {
    color: var(--cream);
    opacity: 0.5;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: opacity 0.2s;
    padding: 6px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    word-break: break-word;
}
.vsl-footer__links a:hover { opacity: 1; }
.vsl-footer__bottom {
    max-width: var(--max-w);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248,244,239,0.06);
    display: flex;
    gap: 2rem;
}
.vsl-footer__bottom a {
    color: var(--cream);
    opacity: 0.3;
    font-size: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.vsl-footer__bottom a:hover { opacity: 0.6; }
.vsl-footer__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.3);
    font-size: 0.75rem !important;
    opacity: 0.8 !important;
    margin-top: 0.5rem;
    transition: background 0.2s, opacity 0.2s;
}
.vsl-footer__wa-btn:hover {
    background: rgba(37,211,102,0.25);
    opacity: 1 !important;
}

@media (max-width: 767px) {
    .vsl-footer__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .vsl-footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .vsl-footer__bottom {
        margin-top: 2rem;
    }
}

/* ---------- Section Accent Breaks — Curved ---------- */
.ed-accent {
    height: 40px;
    background: none;
    position: relative;
    overflow: hidden;
}
.ed-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--garnet);
    opacity: 0.15;
    border-radius: 50%;
    transform: translateY(-50%);
}
.ed-accent--gold {
    height: 30px;
}
.ed-accent--gold::before {
    background: var(--gold);
    opacity: 0.25;
    left: 15%;
    right: 15%;
}

/* ══════════════════════════════════════════
   BOOK PAGE — Editorial split
   ══════════════════════════════════════════ */
.ed-book-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
}
.ed-book-split__left {
    background: linear-gradient(135deg, #8B1025 0%, #7B0D1E 40%, #5A0A16 100%);
    color: var(--cream);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 100svh;
}
.ed-book-split__left::before {
    content: 'VSL';
    position: absolute;
    bottom: -0.12em;
    right: -0.04em;
    font-family: var(--font-display);
    font-size: clamp(14rem, 24vw, 22rem);
    font-weight: 600;
    color: rgba(255,255,255,0.035);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.04em;
    user-select: none;
}
.ed-book-split__left-inner {
    position: relative;
    z-index: 2;
    padding: 7rem 50% 3rem 8%;
    width: 100%;
}
.ed-book-split__left h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 0;
}
.ed-book-split__left p {
    opacity: 0.8;
    line-height: 1.75;
    max-width: 38ch;
}
.ed-book-split__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
    padding-left: 0.25rem;
}
.ed-book-split__steps::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 1px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.7), rgba(201,168,76,0.1));
    pointer-events: none;
}
.ed-book-split__step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    font-size: 0.9375rem;
    opacity: 0.85;
    line-height: 1.5;
    padding: 1rem 0;
}
.ed-book-split__step-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    min-width: 2.5rem;
}
.ed-book-split__illus {
    position: absolute;
    bottom: 0;
    right: -2%;
    width: 53%;
    z-index: 1;
    pointer-events: none;
}
.ed-book-split__illus .ed-doorway {
    position: absolute;
    inset: 0 5% -10% 5%;
    width: 90%;
    height: 110%;
    animation: none;
    opacity: 0.5;
    clip-path: none;
}
.ed-book-split__illus img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 -8px 40px rgba(0,0,0,0.3));
}
.ed-book-split__right {
    background: var(--cream);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 6% 4rem;
    border-top: 3px solid var(--gold);
}
.ed-book-split__form-wrap {
    width: 100%;
    max-width: 460px;
}
.ed-form-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ed-form-intro__eyebrow {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark, #a07a28);
    display: block;
    margin-bottom: 0.75rem;
}
.ed-form-intro h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: var(--garnet);
}
.ed-form-intro p {
    font-size: 0.9375rem;
    opacity: 0.65;
    margin: 0;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .ed-book-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ed-book-split__left {
        padding-bottom: 3rem;
        min-height: 60svh;
    }
    .ed-book-split__left-inner {
        padding: 7rem 6% 3rem;
    }
    .ed-book-split__illus {
        width: 45%;
        right: 0;
        bottom: 0;
    }
    .ed-book-split__right {
        padding: 3rem 6%;
    }
}

/* ══════════════════════════════════════════
   INNER PAGE HEADER — Hero for non-home pages
   ══════════════════════════════════════════ */
.ed-page-header {
    padding: 10rem 6% 5rem;
    background: var(--cream);
    position: relative;
}
.ed-page-header--garnet {
    background: linear-gradient(135deg, #8B1025 0%, #7B0D1E 40%, #5A0A16 100%);
    color: var(--cream);
}
.ed-page-header--garnet .ed-kicker { color: var(--gold); }
.ed-page-header--garnet h1 { color: var(--cream); }
.ed-page-header--garnet p { color: rgba(248,244,239,0.8); }
.ed-page-header--garnet .ed-link { color: var(--cream); border-color: var(--gold); }

.ed-page-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.ed-page-header:not(.ed-page-header--garnet)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    opacity: 0.3;
}

@media (max-width: 767px) {
    .ed-page-header {
        padding: 7rem 1.5rem 3rem;
    }
    .ed-page-header:not(.ed-page-header--garnet)::after {
        left: 1.5rem;
        right: 1.5rem;
    }
}

/* ══════════════════════════════════════════
   CONTENT SECTION — Generic inner section
   ══════════════════════════════════════════ */
.ed-section {
    padding: 5rem 6%;
    position: relative;
}
.ed-section--cream { background: var(--cream); }
.ed-section--white { background: var(--white); }
.ed-section--warm { background: var(--warm); }
.ed-section--garnet {
    background: var(--garnet);
    color: var(--cream);
}
.ed-section--garnet h2 { color: var(--cream); }
.ed-section--garnet p { color: rgba(248,244,239,0.8); }
.ed-section--ink {
    background: var(--ink);
    color: var(--cream);
}
.ed-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.ed-section__narrow {
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .ed-section {
        padding: 3.5rem 1.5rem;
    }
}

/* ══════════════════════════════════════════
   SPLIT LAYOUT — two columns, image + text
   ══════════════════════════════════════════ */
.ed-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70svh;
}
.ed-split--reverse { direction: rtl; }
.ed-split--reverse > * { direction: ltr; }
.ed-split__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3rem 3rem 0;
    overflow: visible;
    background: var(--white);
}
.ed-split__media img {
    max-height: 80svh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.08));
}
.ed-split__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
}
.ed-split__body h2 { margin-bottom: 1.5rem; }
.ed-split__body p {
    line-height: 1.75;
    opacity: 0.85;
}
.ed-split__body p + p { margin-top: 1rem; }

@media (min-width: 768px) {
    .ed-split__body {
        border-left: 3px solid var(--garnet);
    }
    .ed-split--reverse .ed-split__body {
        border-left: none;
        border-right: 3px solid var(--garnet);
    }
}
@media (max-width: 767px) {
    .ed-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ed-split--reverse { direction: ltr; }
    .ed-split__media {
        padding: 3rem 1.5rem;
    }
    .ed-split__media img {
        max-height: 50svh;
    }
    .ed-split__body {
        padding: 3rem 1.5rem 4rem;
        border-top: 3px solid var(--garnet);
    }
}

/* ══════════════════════════════════════════
   PULLQUOTE — Large centred text break
   ══════════════════════════════════════════ */
.ed-pullquote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1.4;
    max-width: 28ch;
    margin: 0 auto;
    text-align: center;
    color: var(--ink);
    font-style: italic;
}

/* ══════════════════════════════════════════
   SERVICE CARDS — Grid of clickable cards
   ══════════════════════════════════════════ */
.ed-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}
.ed-card {
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem 3.5rem;
    background: var(--white);
    text-decoration: none;
    color: var(--ink);
    border: 1px solid rgba(26,26,26,0.04);
    border-radius: 1.25rem;
    transition: background 0.4s var(--ease), transform 0.3s var(--ease);
}
.ed-card:hover {
    background: var(--warm);
    transform: translateY(-2px);
}
.ed-card__img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: radial-gradient(ellipse at center 70%, var(--warm) 0%, var(--cream) 100%);
}
.ed-card__img img {
    height: 90%;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.6s var(--ease-out);
}
.ed-card:hover .ed-card__img img {
    transform: scale(1.03);
}
.ed-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.ed-card__desc {
    font-size: 0.9375rem;
    opacity: 0.7;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 0;
}
.ed-card__footer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Hero product badge */
.ed-card--hero {
    border: 2px solid var(--gold);
    border-radius: 1.25rem;
}
.ed-card--hero::before {
    content: 'Signature Service';
    display: block;
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════════
   TIER CARDS — Pricing tiers (Capsule)
   ══════════════════════════════════════════ */
.ed-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.ed-tier {
    padding: 2.5rem 2rem 3rem;
    background: var(--white);
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ed-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.ed-tier--popular {
    border: 2px solid var(--gold);
    position: relative;
}
.ed-tier--popular::before {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 1rem;
    white-space: nowrap;
}
.ed-tier__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
}
.ed-tier__subtitle {
    opacity: 0.5;
    font-size: 0.875rem;
}
.ed-tier__price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--garnet);
    margin-top: 1rem;
}
.ed-tier__hours {
    font-family: var(--font-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-top: 0.25rem;
}
.ed-tier__includes {
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}
.ed-tier__includes li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(26,26,26,0.04);
}
.ed-tier__includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}
.ed-tier__includes li:last-child { border-bottom: none; }
.ed-tier__best-for {
    margin-top: 1rem;
    font-size: 0.8125rem;
    opacity: 0.5;
    font-style: italic;
}
.ed-tier__cta {
    margin-top: auto;
    padding-top: 2rem;
}

/* ══════════════════════════════════════════
   PACKAGE CARDS — Simpler service packages
   ══════════════════════════════════════════ */
.ed-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.ed-package {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 1.25rem;
    transition: transform 0.3s var(--ease);
}
.ed-package:hover {
    transform: translateY(-2px);
}
.ed-package__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
}
.ed-package__price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--garnet);
    margin-top: 0.75rem;
}
.ed-package__hours {
    font-size: 0.8125rem;
    opacity: 0.5;
    margin-top: 0.25rem;
}
.ed-package__desc {
    font-size: 0.9375rem;
    opacity: 0.75;
    line-height: 1.65;
    margin-top: 1rem;
}

/* ══════════════════════════════════════════
   TIMELINE — Process steps
   ══════════════════════════════════════════ */
.ed-timeline {
    margin-top: 2rem;
}
.ed-timeline__step {
    padding: 1.5rem 0 1.5rem 2.5rem;
    border-left: 2px solid var(--gold);
    position: relative;
    font-size: 1rem;
    line-height: 1.65;
}
.ed-timeline__step::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 1.75rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.ed-timeline__step:last-child {
    border-left-color: transparent;
}

/* ══════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════ */
.ed-faq {
    margin-top: 2rem;
}
.ed-faq details {
    border-bottom: 1px solid rgba(26,26,26,0.08);
}
.ed-faq summary {
    padding: 1.25rem 2rem 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.4;
}
.ed-faq summary::-webkit-details-marker { display: none; }
.ed-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
}
.ed-faq details[open] summary::after {
    content: '−';
}
.ed-faq .ed-faq__answer {
    padding: 0 0 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    opacity: 0.75;
    max-width: 60ch;
}

/* ══════════════════════════════════════════
   FORMS — Editorial booking form
   ══════════════════════════════════════════ */
.ed-form {
    margin-top: 2.5rem;
}
.ed-form__group {
    margin-bottom: 1.75rem;
}
.ed-form__group label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.ed-form__group input,
.ed-form__group select,
.ed-form__group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(26,26,26,0.12);
    border-radius: 0.75rem;
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.ed-form__group input:focus,
.ed-form__group select:focus,
.ed-form__group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.ed-form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.ed-form__group textarea {
    resize: vertical;
    min-height: 120px;
}
.ed-form__group input:invalid:not(:placeholder-shown),
.ed-form__group select:invalid:not(:placeholder-shown) {
    border-color: var(--garnet);
}
.ed-form-error {
    padding: 1rem 1.25rem;
    background: rgba(123,13,30,0.06);
    border-left: 3px solid var(--garnet);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}
.ed-form-success {
    text-align: center;
    padding: 3rem 0;
}
.ed-trust__item {
    font-family: var(--font-label);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    position: relative;
    padding-left: 1rem;
}
.ed-trust__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}

/* ══════════════════════════════════════════
   GALLERY — Transformation grid (placeholder-ready)
   ══════════════════════════════════════════ */
.ed-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.ed-gallery__item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--warm);
}
.ed-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.ed-gallery__item:hover img {
    transform: scale(1.03);
}
.ed-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
    color: var(--cream);
}
.ed-gallery__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    opacity: 0.4;
}

/* ══════════════════════════════════════════
   STAT ROW — Metrics/credentials
   ══════════════════════════════════════════ */
.ed-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 0;
}
.ed-stat {
    text-align: center;
}
.ed-stat__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--garnet);
    line-height: 1;
}
.ed-stat__number::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin: 0.75rem auto 0;
}
.ed-stat__label {
    font-family: var(--font-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.5;
    margin-top: 0.75rem;
}

/* ══════════════════════════════════════════
   CEREMONIES LIST — Wedding page
   ══════════════════════════════════════════ */
.ed-ceremonies {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.ed-ceremony {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════
   BUTTON VARIANTS — Secondary, outline
   ══════════════════════════════════════════ */
.ed-btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-label);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.ed-btn--secondary:hover {
    background: var(--ink);
    color: var(--cream);
}
.ed-btn--full { width: 100%; }
.ed-btn--garnet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-label);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    background: var(--garnet);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}
.ed-btn--garnet:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   MICRO-INTERACTIONS — Polish
   ══════════════════════════════════════════ */

/* Service card hover — kicker turns garnet */
.ed-card:hover .ed-kicker { color: var(--garnet); }
.ed-card:hover .ed-price { color: var(--ink); }

/* WhatsApp button hover */
.ed-btn--wa:hover {
    filter: brightness(1.1);
    transform: scale(1.08);
}

/* CTA shimmer — garnet sections get subtle sweep */
.ed-cta {
    overflow: hidden;
}
.ed-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
    animation: ed-shimmer 14s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
.ed-cta .ed-cta__inner { position: relative; z-index: 1; }

/* Doorway continuous breathe — CSS animation for static doorways */
.ed-doorway {
    animation: ed-door-breathe 8s ease-in-out infinite;
}

/* Gold accent line hover grow */
.ed-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--garnet);
    transition: width 0.3s var(--ease);
    margin-top: -1px;
}
.ed-link:hover::after {
    width: 100%;
}

/* Tier card glow on hover */
.ed-tier--popular:hover {
    box-shadow: 0 0 0 1px var(--gold), 0 16px 48px rgba(201,168,76,0.12);
}

/* ══════════════════════════════════════════
   LONG-FORM CONTENT — Terms, Privacy, etc.
   ══════════════════════════════════════════ */
.ed-section__narrow h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.ed-section__narrow h2:first-of-type {
    margin-top: 0;
}
.ed-section__narrow p {
    line-height: 1.75;
    opacity: 0.8;
}
.ed-section__narrow ul,
.ed-section__narrow ol {
    padding-left: 1.25rem;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}
.ed-section__narrow li {
    margin-bottom: 0.375rem;
}
.ed-section__narrow a {
    color: var(--garnet);
    text-decoration-color: var(--gold);
    text-underline-offset: 2px;
}

/* ══════════════════════════════════════════
   COMPREHENSIVE MOBILE — All inner components
   ══════════════════════════════════════════ */
@media (max-width: 767px) {
    /* Cards — single column */
    .ed-cards {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ed-card {
        padding: 2rem 1.5rem 2.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(26,26,26,0.06);
    }
    .ed-card:last-child { border-bottom: none; }
    .ed-card__img {
        aspect-ratio: 1/1;
        max-height: 50svh;
    }

    /* Tiers — single column */
    .ed-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ed-tier {
        padding: 2rem 1.5rem 2.5rem;
    }

    /* Packages — single column */
    .ed-packages {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ed-package {
        padding: 1.5rem;
    }

    /* Stats — tighter gap */
    .ed-stats {
        gap: 2rem;
    }

    /* Ceremonies — smaller */
    .ed-ceremonies {
        gap: 0.5rem;
    }
    .ed-ceremony {
        font-size: 0.6875rem;
        padding: 0.375rem 0.875rem;
    }

    /* Gallery */
    .ed-gallery {
        grid-template-columns: 1fr;
    }
    .ed-gallery__empty {
        padding: 4rem 1.5rem;
    }

    /* Forms — full width inputs */
    .ed-form__group input,
    .ed-form__group select,
    .ed-form__group textarea {
        font-size: 16px; /* prevent iOS zoom */
    }

    /* Pause blockquote — wider on mobile */
    .ed-pause blockquote {
        max-width: 85vw;
    }
    .ed-pause {
        min-height: 50svh;
        padding: 4rem 1.5rem;
    }

    /* Footer — stack vertically */
    .vsl-footer {
        padding: 3rem 1.5rem;
    }
    .vsl-footer__inner {
        gap: 1.5rem;
    }
    .vsl-footer__links,
    .vsl-footer__social {
        gap: 1rem;
    }

    /* CTA section */
    .ed-cta {
        padding: 4rem 1.5rem;
    }
    .ed-cta h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
    .ed-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    .ed-cta__actions .ed-btn {
        width: 100%;
        max-width: 320px;
    }

    /* Sticky bar — account for safe area */
    .vsl-sticky-bar {
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }

    /* Timeline */
    .ed-timeline__step {
        padding: 1rem 0 1rem 2rem;
        font-size: 0.9375rem;
    }

    /* FAQ */
    .ed-faq summary {
        font-size: 1.05rem;
        padding-right: 1.5rem;
    }
}

/* ══════════════════════════════════════════
   TABLET TWEAKS — 768-1024
   ══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
    .ed-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .ed-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
    .ed-trio {
        grid-template-columns: 1fr;
    }
    .ed-trio__item {
        border-right: none;
        border-bottom: 1px solid rgba(26,26,26,0.06);
    }
}

/* ══════════════════════════════════════════
   SCROLL PROGRESS INDICATOR
   ══════════════════════════════════════════ */
.ed-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    z-index: 101;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ══════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════ */
.ed-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--cream);
    border: 1px solid rgba(26,26,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 80;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.ed-back-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.ed-back-top:hover {
    background: var(--gold);
}
.ed-back-top svg {
    width: 16px;
    height: 16px;
    fill: var(--ink);
    transition: fill 0.2s;
}
.ed-back-top:hover svg { fill: var(--ink); }
@media (max-width: 767px) {
    .ed-back-top {
        bottom: calc(5.25rem + env(safe-area-inset-bottom));
        right: 1rem;
    }
}

/* ══════════════════════════════════════════
   PRINT STYLES
   ══════════════════════════════════════════ */
@media print {
    .vsl-nav-float,
    .vsl-overlay-menu,
    .vsl-sticky-bar,
    .vsl-skip-link,
    .ed-bloom,
    .ed-doorway { display: none !important; }
    body { background: white; color: black; }
    .ed-hero::before { background: #7B0D1E !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .ed-hero__copy h1 { color: white !important; }
    .ed-reveal { opacity: 1 !important; transform: none !important; }
    .vsl-footer { background: #1A1A1A !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    a[href]::after { content: ' (' attr(href) ')'; font-size: 0.75rem; opacity: 0.5; }
}

/* ══════════════════════════════════════════
   FORM LOADING STATE
   ══════════════════════════════════════════ */
.ed-btn.is-loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}
.ed-btn.is-loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26,26,26,0.2);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: ed-spin 0.6s linear infinite;
    transform: translateY(-50%);
}
@keyframes ed-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    .ed-reveal { opacity: 1; transform: none; }
}
