﻿/* ═══════════════════════════════════════════════════════════════════════
   VOWLIO — Master Stylesheet
   Consolidates: vowlio.css + stories.css + site.css + view inline styles
   Aesthetic: Refined luxury bridal — blush, rose, ivory, plum
   Fonts: Cormorant Garamond (display) + Great Vibes (script) + Lato (body)

   Sections:
     1. CSS Variables
     2. Reset & Base
     3. Accessibility Utilities  ← WCAG 2.1 AA focus, skip link, sr-only
     4. Typography, Scrollbar
     5. Navbar
     6. Buttons
     7. Flash Messages
     8. Section Typography
     9. Hero
    10. Vendor Categories
    11. Feature Cards
    12. Vendor How It Works
    13. Stats Bar
    14. Testimonials
    15. Final CTA
    16. Links
    17. Forms
    18. Auth Pages
    19. Dashboard Shared
    20. Stat Cards
    21. Widgets
    22. Progress Bars
    23. Checklist Widget
    24. RSVP Grid
    25. Budget Grid
    26. Leads List
    27. Status Badges
    28. Leads Table
    29. Subscription Widget
    30. Portfolio Grid
    31. Review Cards
    32. Empty & Locked States
    33. Footer
    34. Responsive
    35. Pricing Page
    36. Vendor Search Page
    37. Pagination
    38. Tool Cards
    39. View-Specific Styles (Dashboard, VendorSearch)
    40. Real Weddings / Stories
═══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   VOWLIO — Design System
   Aesthetic: Refined luxury bridal — blush, rose, ivory, plum
   Fonts: Cormorant Garamond (display) + Great Vibes (script) + Lato (body)
═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────────────── */
:root {
    /* Palette */
    --rose: #b76e79;
    --rose-dark: #9a5a64;
    --rose-light: #d4a0a8;
    --blush: #f2dede;
    --blush-soft: #fdf6f6;
    --blush-mid: #f7eaea;
    --ivory: #fdfaf7;
    --plum: #6b3a4a;
    --plum-light: #8c5060;
    --mauve: #c9a0a8;
    --sage: #8aad9a;
    --gold: #c9a84c;
    --charcoal: #2c2c2c;
    --charcoal-light: #555555;
    --muted: #999999;
    --border: #e8d5d5;
    --border-light: #f0e0e0;
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Lato', -apple-system, sans-serif;
    /* Spacing */
    --section-padding: 5rem;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(183, 110, 121, 0.08);
    --shadow-md: 0 4px 20px rgba(183, 110, 121, 0.12);
    --shadow-lg: 0 8px 40px rgba(183, 110, 121, 0.18);
    --shadow-xl: 0 16px 60px rgba(183, 110, 121, 0.22);
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    /* Transitions */
    --transition: 0.25s ease;
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════════════════
   ACCESSIBILITY UTILITIES
   WCAG 2.1 AA — Focus, visually-hidden, reduced-motion
═══════════════════════════════════════════════════════════════════════ */
/* Visually hidden but accessible to screen readers */
.visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip-to-main-content link — hidden until focused */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.6rem 1.25rem;
    background: var(--plum);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-decoration: none;
    transition: top 0.15s;
}

    .skip-link:focus {
        top: 0;
    }

/* ── Global focus-visible ─────────────────────────────────────────────
   Replaces outline:none on inputs.
   Uses :focus-visible so mouse users don't see rings,
   only keyboard and assistive-tech users do.
─────────────────────────────────────────────────────────────────────── */
:focus {
    outline: none; /* Removed by default; restored below for keyboard */
}

:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Inputs already have a visible border change — keep that + add ring */
.vowlio-input:focus-visible,
.vowlio-select:focus-visible,
.vowlio-textarea:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 0;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.18);
}

/* Buttons */
.vowlio-btn-primary:focus-visible,
.vowlio-btn-outline:focus-visible,
.vowlio-btn-ghost:focus-visible,
.vowlio-btn-outline-light:focus-visible,
.vowlio-role-btn:focus-visible,
.vowlio-check-btn:focus-visible,
.vowlio-input-toggle:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(183, 110, 121, 0.18);
}

/* Links */
.vowlio-link:focus-visible,
.vowlio-link-small:focus-visible,
.vowlio-navbar .nav-link:focus-visible,
.vowlio-footer-links a:focus-visible,
.vowlio-footer-social a:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Cards used as links */
.vowlio-vendor-card:focus-visible,
.vowlio-stat-card-link:focus-visible,
.vowlio-tool-card:focus-visible,
.vowlio-category-card:focus-visible,
.vowlio-board-preview-card:focus-visible,
.vowlio-category-quick-link:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
}

/* Pagination */
.vowlio-page-btn:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
}

/* Dropdown items */
.vowlio-dropdown .dropdown-item:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: -2px;
    background: var(--blush);
    color: var(--rose-dark);
}

/* Checkboxes */
.vowlio-check-input:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 2px;
}

/* ── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.bg-blush-soft {
    background-color: var(--blush-soft) !important;
}

.py-6 {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

/* ── Typography ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.25;
    color: var(--plum);
}

/* ── Scrollbar ────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--blush-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-light);
    border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════════ */
.vowlio-navbar {
    background-color: rgba(253, 250, 247, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

    .vowlio-navbar.scrolled {
        box-shadow: var(--shadow-md);
    }

.vowlio-brand {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--rose) !important;
    text-decoration: none;
    line-height: 1;
    transition: color var(--transition);
}

    .vowlio-brand:hover {
        color: var(--rose-dark) !important;
    }

.vowlio-navbar .nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--charcoal-light) !important;
    padding: 0.5rem 0.85rem !important;
    transition: color var(--transition);
}

    .vowlio-navbar .nav-link:hover,
    .vowlio-navbar .nav-link.active {
        color: var(--rose) !important;
    }

.vowlio-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: var(--ivory);
}

    .vowlio-dropdown .dropdown-item {
        border-radius: var(--radius-sm);
        font-size: 0.875rem;
        padding: 0.5rem 0.85rem;
        color: var(--charcoal-light);
        transition: background var(--transition), color var(--transition);
    }

        .vowlio-dropdown .dropdown-item:hover {
            background: var(--blush);
            color: var(--rose-dark);
        }

.vowlio-account-toggle {
    font-weight: 400 !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-btn-primary {
    background: var(--rose);
    border: 2px solid var(--rose);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .vowlio-btn-primary:hover {
        background: var(--rose-dark);
        border-color: var(--rose-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.vowlio-btn-outline {
    background: transparent;
    border: 2px solid var(--rose);
    color: var(--rose) !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .vowlio-btn-outline:hover {
        background: var(--rose);
        color: #fff !important;
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.vowlio-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .vowlio-btn-outline-light:hover {
        background: rgba(255,255,255,0.15);
        border-color: #fff;
    }

.vowlio-btn-ghost {
    background: transparent;
    border: 2px solid transparent;
    color: var(--charcoal-light) !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .vowlio-btn-ghost:hover {
        background: var(--blush);
        color: var(--rose-dark) !important;
    }

/* ═══════════════════════════════════════════════════════════════════════
   FLASH MESSAGES
═══════════════════════════════════════════════════════════════════════ */
.vowlio-flash {
    padding: 0.875rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.vowlio-flash-success {
    background: var(--sage);
    color: #fff;
}

.vowlio-flash-error {
    background: #c0392b;
    color: #fff;
}

.vowlio-flash-info {
    background: var(--rose);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION TYPOGRAPHY
═══════════════════════════════════════════════════════════════════════ */
.vowlio-section-script {
    font-family: var(--font-script);
    font-size: 1.75rem;
    color: #f1dcf0; /*#fbcafa;*/ /*var(--rose);*/
    display: block;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.vowlio-section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 1rem;
}

.vowlio-section-sub {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    max-width: 580px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.vowlio-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient( 135deg, var(--plum) 0%, #8c4a5a 35%, var(--rose) 70%, var(--rose-light) 100% );
    overflow: hidden;
}

    /* Subtle lace texture overlay */
    .vowlio-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
        pointer-events: none;
    }

.vowlio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(44, 44, 44, 0.15) 0%, rgba(44, 44, 44, 0.05) 100% );
}

.vowlio-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}

.vowlio-hero-script {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
    display: block;
    animation: fadeInUp 0.8s ease both;
}

.vowlio-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.vowlio-hero-subheading {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.vowlio-hero-actions {
    animation: fadeInUp 0.8s 0.3s ease both;
    margin-bottom: 1.25rem;
}

.vowlio-hero-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    animation: fadeInUp 0.8s 0.4s ease both;
    letter-spacing: 0.04em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   VENDOR CATEGORIES
═══════════════════════════════════════════════════════════════════════ */
.vowlio-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.75rem 1rem;
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

    .vowlio-category-card:hover {
        border-color: var(--rose-light);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        background: var(--blush-soft);
    }

.vowlio-category-icon {
    font-size: 2rem;
    color: var(--rose);
    transition: transform var(--transition);
}

.vowlio-category-card:hover .vowlio-category-icon {
    transform: scale(1.15);
}

.vowlio-category-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURE CARDS (How It Works — Couples)
═══════════════════════════════════════════════════════════════════════ */
.vowlio-feature-card {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

    .vowlio-feature-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: var(--border);
    }

.vowlio-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--rose);
}

.vowlio-feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--plum);
    margin-bottom: 0.75rem;
}

.vowlio-feature-text {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   VENDOR HOW IT WORKS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-vendor-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.vowlio-vendor-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.vowlio-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.vowlio-step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--plum);
    margin-bottom: 0.25rem;
}

.vowlio-step-text {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin: 0;
}

.vowlio-vendor-cta-card {
    background: var(--blush-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
}

.vowlio-vendor-cta-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════════════ */
.vowlio-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.vowlio-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-testimonial-card {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

    .vowlio-testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.vowlio-testimonial-featured {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

.vowlio-testimonial-stars {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.vowlio-testimonial-featured .vowlio-testimonial-stars {
    color: rgba(255,255,255,0.9);
}

.vowlio-testimonial-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

.vowlio-testimonial-featured .vowlio-testimonial-text {
    color: rgba(255,255,255,0.92);
}

.vowlio-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.875rem;
}

    .vowlio-testimonial-author strong {
        color: var(--plum);
    }

    .vowlio-testimonial-author span {
        color: var(--muted);
    }

.vowlio-testimonial-featured .vowlio-testimonial-author strong,
.vowlio-testimonial-featured .vowlio-testimonial-author span {
    color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════════════ */
.vowlio-final-cta {
    background: linear-gradient(135deg, var(--plum) 0%, var(--rose) 100%);
    color: #fff;
}

.vowlio-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: #fff;
    margin-bottom: 1rem;
}

.vowlio-cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}

.vowlio-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   LINKS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-link {
    color: var(--rose);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

    .vowlio-link:hover {
        color: var(--rose-dark);
        text-decoration: underline;
    }

.vowlio-link-small {
    color: var(--rose);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
}

    .vowlio-link-small:hover {
        color: var(--rose-dark);
    }

/* ═══════════════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-form-group {
    margin-bottom: 1.25rem;
}

.vowlio-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 0.45rem;
}

.vowlio-input,
.vowlio-select,
.vowlio-textarea {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--ivory);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    /* outline managed by :focus-visible rules in Accessibility section */
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

    .vowlio-input:focus,
    .vowlio-select:focus,
    .vowlio-textarea:focus {
        border-color: var(--rose);
        box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.12);
    }

.vowlio-textarea {
    resize: vertical;
    min-height: 120px;
}

.vowlio-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='%23b76e79' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Input with icon prefix/suffix */
.vowlio-input-group,
.vowlio-input-prefix,
.vowlio-input-suffix {
    position: relative;
    display: flex;
    align-items: stretch;
}

    .vowlio-input-group .vowlio-input,
    .vowlio-input-prefix .vowlio-input,
    .vowlio-input-suffix .vowlio-input {
        flex: 1;
    }

.vowlio-input-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: color var(--transition);
    z-index: 2;
}

    .vowlio-input-toggle:hover {
        color: var(--rose);
    }

.vowlio-input-group .vowlio-input {
    padding-right: 2.75rem;
}

.vowlio-input-prefix-label,
.vowlio-input-suffix-label {
    display: flex;
    align-items: center;
    padding: 0.7rem 0.85rem;
    background: var(--blush-soft);
    border: 1.5px solid var(--border);
    color: var(--charcoal-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.vowlio-input-prefix-label {
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.vowlio-input-prefix .vowlio-input {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.vowlio-input-suffix-label {
    border-left: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.vowlio-input-suffix .vowlio-input {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Checkbox */
.vowlio-form-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.vowlio-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--rose);
    cursor: pointer;
    flex-shrink: 0;
}

.vowlio-check-label {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    cursor: pointer;
}

/* Strength bar */
.vowlio-strength-bar {
    height: 4px;
    background: var(--blush);
    border-radius: 2px;
    overflow: hidden;
}

.vowlio-strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.vowlio-strength-label {
    font-size: 0.75rem;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════════════════ */
.auth-page {
    background: linear-gradient(135deg, var(--blush-soft) 0%, var(--ivory) 50%, var(--blush-mid) 100%);
    min-height: 100vh;
}

.vowlio-auth-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.vowlio-auth-card {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 440px;
}

.vowlio-auth-card-wide {
    max-width: 540px;
}

.vowlio-auth-brand {
    text-align: center;
    margin-bottom: 0.25rem;
}

    .vowlio-auth-brand a {
        font-family: var(--font-script);
        font-size: 2.5rem;
        color: var(--rose);
        text-decoration: none;
    }

.vowlio-auth-script {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--rose-light);
    text-align: center;
    display: block;
    margin-bottom: 0.25rem;
}

.vowlio-auth-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--plum);
    text-align: center;
    margin-bottom: 0.5rem;
}

.vowlio-auth-form {
    margin-top: 1.5rem;
}

.vowlio-auth-divider {
    text-align: center;
    margin: 1.75rem 0;
    position: relative;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

    .vowlio-auth-divider::before,
    .vowlio-auth-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 38%;
        height: 1px;
        background: var(--border);
    }

    .vowlio-auth-divider::before {
        left: 0;
    }

    .vowlio-auth-divider::after {
        right: 0;
    }

/* Role toggle */
.vowlio-role-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--blush-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.35rem;
}

.vowlio-role-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    border-radius: calc(var(--radius-sm) - 2px);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--charcoal-light);
    cursor: pointer;
    transition: all var(--transition);
}

    .vowlio-role-btn.active {
        background: var(--ivory);
        color: var(--rose);
        font-weight: 700;
        box-shadow: var(--shadow-sm);
    }

/* Plan badge */
.vowlio-plan-badge {
    background: var(--blush);
    border: 1px solid var(--rose-light);
    color: var(--rose-dark);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-align: center;
}

/* Alert */
.vowlio-alert-error {
    background: #fdf0ef;
    border: 1px solid #f5c6c6;
    border-radius: var(--radius-sm);
    color: #c0392b;
    font-size: 0.875rem;
    padding: 0.85rem 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   DASHBOARD SHARED
═══════════════════════════════════════════════════════════════════════ */
.vowlio-dashboard-header {
    background: linear-gradient(135deg, var(--plum) 0%, var(--rose) 100%);
    color: #fff;
    padding: 2.5rem 0;
    margin-bottom: 0;
}

.vowlio-dashboard-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    color: #fff;
    margin: 0 0 0.25rem;
}

.vowlio-dashboard-sub {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    margin: 0;
}

/* Upgrade banner */
.vowlio-upgrade-banner {
    background: linear-gradient(135deg, var(--plum), var(--rose));
    color: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
}

/* Alert banner */
.vowlio-alert-banner {
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
}

.vowlio-alert-warning {
    background: #fff8e1;
    border: 1px solid #f9c740;
    color: #856404;
}

/* ═══════════════════════════════════════════════════════════════════════
   STAT CARDS (Dashboard)
═══════════════════════════════════════════════════════════════════════ */
.vowlio-stat-card {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.vowlio-stat-card-link {
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

    .vowlio-stat-card-link:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
        border-color: var(--border);
    }

.vowlio-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.vowlio-stat-icon-rose {
    background: var(--blush);
    color: var(--rose);
}

.vowlio-stat-icon-blush {
    background: #fce8ec;
    color: #c0566a;
}

.vowlio-stat-icon-mauve {
    background: #f3e8f0;
    color: var(--plum);
}

.vowlio-stat-icon-sage {
    background: #e8f3ed;
    color: var(--sage);
}

.vowlio-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}

.vowlio-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════
   WIDGETS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-widget {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    /*height: 100%;*/
}

.vowlio-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.vowlio-widget-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--plum);
    margin: 0;
}

.vowlio-widget-section-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--plum);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════════════════════════════════════
   PROGRESS BARS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-progress-wrap {
}

.vowlio-progress {
    height: 8px;
    background: var(--blush);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.vowlio-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rose-light), var(--rose));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.vowlio-progress-success {
    background: linear-gradient(90deg, #81c784, var(--sage)) !important;
}

.vowlio-progress-danger {
    background: linear-gradient(90deg, #e57373, #c0392b) !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   CHECKLIST WIDGET
═══════════════════════════════════════════════════════════════════════ */
.vowlio-checklist-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vowlio-checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    .vowlio-checklist-item:last-child {
        border-bottom: none;
    }

.vowlio-task-done {
    opacity: 0.4;
    transform: translateX(8px);
}

.vowlio-check-btn {
    background: none;
    border: none;
    color: var(--rose-light);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition), transform var(--transition);
    flex-shrink: 0;
}

    .vowlio-check-btn:hover {
        color: var(--rose);
        transform: scale(1.15);
    }

.vowlio-checklist-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.vowlio-checklist-due {
    font-size: 0.75rem;
    color: var(--muted);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   RSVP GRID
═══════════════════════════════════════════════════════════════════════ */
.vowlio-rsvp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.vowlio-rsvp-item {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-sm);
}

.vowlio-rsvp-accepted {
    background: #e8f5e9;
}

.vowlio-rsvp-pending {
    background: #fff8e1;
}

.vowlio-rsvp-declined {
    background: #fdf0ef;
}

.vowlio-rsvp-total {
    background: var(--blush);
}

.vowlio-rsvp-count {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}

.vowlio-rsvp-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUDGET GRID
═══════════════════════════════════════════════════════════════════════ */
.vowlio-budget-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.vowlio-budget-item {
    padding: 1rem;
    background: var(--blush-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.vowlio-budget-remaining {
    grid-column: span 2;
}

.vowlio-budget-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.vowlio-budget-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   LEADS LIST
═══════════════════════════════════════════════════════════════════════ */
.vowlio-leads-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vowlio-lead-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 0.75rem;
}

    .vowlio-lead-item:last-child {
        border-bottom: none;
    }

.vowlio-lead-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.vowlio-lead-category {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--plum);
}

.vowlio-lead-location {
    font-size: 0.8rem;
    color: var(--muted);
}

.vowlio-lead-responses {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    text-align: center;
    min-width: 48px;
}

    .vowlio-lead-responses small {
        display: block;
        color: var(--muted);
    }

/* ═══════════════════════════════════════════════════════════════════════
   STATUS BADGES
═══════════════════════════════════════════════════════════════════════ */
.vowlio-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vowlio-status-open {
    background: #e3f2fd;
    color: #1565c0;
}

.vowlio-status-responded {
    background: #fff8e1;
    color: #e65100;
}

.vowlio-status-booked {
    background: #e8f5e9;
    color: #2e7d32;
}

.vowlio-status-closed {
    background: #f3e5f5;
    color: #6a1b9a;
}

.vowlio-status-expired {
    background: #fafafa;
    color: #9e9e9e;
}

.vowlio-status-active {
    background: #e8f5e9;
    color: #2e7d32;
}

.vowlio-status-canceled {
    background: #fdf0ef;
    color: #c0392b;
}

.vowlio-status-pastdue {
    background: #fff3e0;
    color: #e65100;
}

/* ═══════════════════════════════════════════════════════════════════════
   LEADS TABLE (Vendor Dashboard)
═══════════════════════════════════════════════════════════════════════ */
.vowlio-leads-table-wrap {
    overflow-x: auto;
}

.vowlio-leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

    .vowlio-leads-table th {
        padding: 0.6rem 0.85rem;
        text-align: left;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--muted);
        border-bottom: 2px solid var(--border-light);
        white-space: nowrap;
    }

    .vowlio-leads-table td {
        padding: 0.75rem 0.85rem;
        border-bottom: 1px solid var(--border-light);
        color: var(--charcoal-light);
        vertical-align: middle;
    }

    .vowlio-leads-table tr:last-child td {
        border-bottom: none;
    }

    .vowlio-leads-table tr:hover td {
        background: var(--blush-soft);
    }

.vowlio-lead-category-badge {
    display: inline-flex;
    padding: 0.2rem 0.6rem;
    background: var(--blush);
    color: var(--rose-dark);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   SUBSCRIPTION WIDGET
═══════════════════════════════════════════════════════════════════════ */
.vowlio-sub-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.vowlio-sub-plan {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--plum);
}

.vowlio-sub-status {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vowlio-sub-status-active {
    color: var(--sage);
}

.vowlio-sub-status-canceled,
.vowlio-sub-status-pastdue {
    color: #c0392b;
}

/* ═══════════════════════════════════════════════════════════════════════
   PORTFOLIO GRID (Vendor Dashboard)
═══════════════════════════════════════════════════════════════════════ */
.vowlio-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.vowlio-portfolio-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--blush-soft);
}

    .vowlio-portfolio-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .vowlio-portfolio-thumb:hover img {
        transform: scale(1.08);
    }

/* Profile photo preview */
.vowlio-profile-photo-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════════════
   REVIEW CARDS
═══════════════════════════════════════════════════════════════════════ */
.vowlio-review-card {
    background: var(--blush-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    height: 100%;
}

.vowlio-review-stars {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.vowlio-review-text {
    font-family: var(--font-display);
    font-size: 0.975rem;
    font-style: italic;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.vowlio-review-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.8rem;
}

    .vowlio-review-author strong {
        color: var(--plum);
    }

    .vowlio-review-author small {
        color: var(--muted);
    }

/* ═══════════════════════════════════════════════════════════════════════
   EMPTY + LOCKED STATES
═══════════════════════════════════════════════════════════════════════ */
.vowlio-empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--muted);
}

    .vowlio-empty-state i {
        font-size: 2.5rem;
        color: var(--rose-light);
        display: block;
        margin-bottom: 0.75rem;
    }

    .vowlio-empty-state p {
        font-size: 0.9rem;
        margin: 0;
    }

.vowlio-locked-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted);
}

    .vowlio-locked-state i {
        font-size: 3rem;
        color: var(--border);
        display: block;
        margin-bottom: 0.75rem;
    }

    .vowlio-locked-state p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.vowlio-footer {
    background: var(--plum);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.vowlio-footer-brand {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.vowlio-footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.vowlio-footer-social {
    display: flex;
    gap: 1rem;
}

    .vowlio-footer-social a {
        color: rgba(255,255,255,0.6);
        font-size: 1.15rem;
        text-decoration: none;
        transition: color var(--transition);
    }

        .vowlio-footer-social a:hover {
            color: var(--rose-light);
        }

.vowlio-footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}

.vowlio-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .vowlio-footer-links a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color var(--transition);
    }

        .vowlio-footer-links a:hover {
            color: #fff;
        }

.vowlio-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.vowlio-footer-heart {
    color: var(--rose-light);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .vowlio-hero-actions {
        flex-direction: column;
        align-items: center;
    }

        .vowlio-hero-actions .btn {
            width: 100%;
            max-width: 300px;
        }

    .vowlio-cta-actions {
        flex-direction: column;
        align-items: center;
    }

        .vowlio-cta-actions .btn {
            width: 100%;
            max-width: 300px;
        }

    .vowlio-auth-card {
        padding: 2rem 1.5rem;
    }

    .vowlio-rsvp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vowlio-budget-grid {
        grid-template-columns: 1fr;
    }

    .vowlio-budget-remaining {
        grid-column: span 1;
    }

    .vowlio-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vowlio-widget {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .vowlio-dashboard-header {
        padding: 1.75rem 0;
    }

    .vowlio-stat-card {
        padding: 1rem;
    }

    .vowlio-stat-value {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════════════════════════════════ */
.vowlio-pricing-card {
    background: var(--ivory);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

    .vowlio-pricing-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.vowlio-pricing-card-featured {
    border-color: var(--rose);
    box-shadow: var(--shadow-md);
}

.vowlio-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.vowlio-pricing-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--plum);
    margin-bottom: 0.25rem;
}

.vowlio-pricing-description {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.vowlio-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.vowlio-pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}

.vowlio-pricing-period {
    font-size: 0.875rem;
    color: var(--muted);
}

.vowlio-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

    .vowlio-pricing-features li {
        display: flex;
        gap: 0.6rem;
        font-size: 0.875rem;
        color: var(--charcoal-light);
        align-items: flex-start;
    }

        .vowlio-pricing-features li i {
            color: var(--sage);
            margin-top: 0.1rem;
            flex-shrink: 0;
        }

/* ═══════════════════════════════════════════════════════════════════════
   VENDOR SEARCH PAGE
═══════════════════════════════════════════════════════════════════════ */
.vowlio-vendor-card {
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: block;
    color: inherit;
}

    .vowlio-vendor-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
        border-color: var(--border);
    }

.vowlio-vendor-card-photo {
    height: 200px;
    background: var(--blush-mid);
    overflow: hidden;
}

    .vowlio-vendor-card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.vowlio-vendor-card:hover .vowlio-vendor-card-photo img {
    transform: scale(1.06);
}

.vowlio-vendor-card-body {
    padding: 1.25rem;
}

.vowlio-vendor-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.4rem;
}

.vowlio-vendor-card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--plum);
    margin-bottom: 0.25rem;
}

.vowlio-vendor-card-tagline {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vowlio-vendor-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: var(--muted);
}

.vowlio-vendor-rating {
    color: var(--gold);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════════════ */
.vowlio-pagination {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.vowlio-page-btn {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--ivory);
    color: var(--charcoal-light);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .vowlio-page-btn:hover,
    .vowlio-page-btn.active {
        background: var(--rose);
        border-color: var(--rose);
        color: #fff;
    }

.vowlio-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--ivory);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.15s;
    height: 100%;
}

    .vowlio-tool-card:hover {
        border-color: var(--rose);
        background: var(--blush-soft);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

.vowlio-tool-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.vowlio-tool-card__label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--charcoal);
}

.vowlio-tool-card__sub {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.2rem;
}
/* ═══════════════════════════════════════════════════════════════════════
   VIEW-SPECIFIC STYLES
   Previously scattered as @section Styles inline blocks in views.
   Centralised here for caching and minification.
═══════════════════════════════════════════════════════════════════════ */

/* ── Couple Dashboard — Registry grid ────────────────────────────────── */
.reg-dash-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.reg-dash-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--border-light);
    position: relative;
    background: var(--blush-soft);
}

    .reg-dash-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.reg-dash-item-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--rose-light);
}

.reg-dash-item-done {
    opacity: 0.55;
}

.reg-dash-item-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.6);
    font-size: 1.25rem;
    color: var(--sage);
}

@media (max-width: 576px) {
    .reg-dash-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Couple Dashboard — Inspiration board preview ────────────────────── */
.vowlio-board-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.vowlio-board-preview-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--ivory);
    text-decoration: none;
    transition: all var(--transition);
    display: block;
}

    .vowlio-board-preview-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
        border-color: var(--rose-light);
    }

.vowlio-board-preview-cover {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--blush-soft);
}

    .vowlio-board-preview-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vowlio-board-preview-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rose-light);
}

.vowlio-board-preview-info {
    padding: 0.65rem 0.75rem;
}

.vowlio-board-preview-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--plum);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vowlio-board-preview-count {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.vowlio-board-add-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--rose);
    font-weight: 700;
    border: 2px dashed var(--rose-light);
    min-height: 120px;
    background: transparent;
}

    .vowlio-board-add-new:hover {
        background: var(--blush-soft);
        border-color: var(--rose);
    }

/* ── VendorSearch — Results heading ──────────────────────────────────── */
.vowlio-results-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--plum);
    margin: 0;
}

/* ── VendorSearch — Category sidebar quick links ─────────────────────── */
.vowlio-category-quick-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--charcoal-light);
    text-decoration: none;
    transition: all var(--transition);
}

    .vowlio-category-quick-link:hover,
    .vowlio-category-quick-link.active {
        background: var(--blush);
        color: var(--rose-dark);
        font-weight: 700;
    }

/* ── Flash — Limit / upgrade banner (injected by _Layout) ────────────── */
.vowlio-flash-limit {
    background: linear-gradient(135deg, #7b4fa4, #9b6fc4);
    color: #fff;
    padding: .75rem 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   REAL WEDDINGS / STORIES
═══════════════════════════════════════════════════════════════════════ */
/* ── Hero ─────────────────────────────────────────────────────────────── */
.stories-hero {
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
    color: white;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

    .stories-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .stories-hero .lead {
        font-size: 1.2rem;
        opacity: 0.9;
    }

/* ── Filters ──────────────────────────────────────────────────────────── */
.stories-filters {
    padding: 1.5rem 1.5rem 0;
}

.filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 160px;
}

    .filter-group label {
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--muted);
        letter-spacing: 0.05em;
    }

/* ── Gallery Grid ─────────────────────────────────────────────────────── */
.stories-grid-section {
    padding: 2rem 1.5rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

/* ── Story Card ───────────────────────────────────────────────────────── */
.story-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .story-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

.story-card__image-link {
    display: block;
}

.story-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.story-card__image--placeholder {
    height: 220px;
    background: linear-gradient(135deg, #f8e8f0, #fdf0f8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.story-card__body {
    padding: 1.25rem;
}

.story-card__tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.story-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

    .story-card__title a {
        color: var(--charcoal);
        text-decoration: none;
    }

        .story-card__title a:hover {
            color: var(--rose);
        }

.story-card__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.story-card__excerpt {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.story-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.story-stat {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── Tag Styles ───────────────────────────────────────────────────────── */
.tag--style {
    background: #fdf0f8;
    color: var(--rose);
    border: 1px solid #f0d0e8;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
}

a.tag--style:hover {
    background: #f8ddf0;
}

/* ── Story Detail ─────────────────────────────────────────────────────── */
.story-detail {
    padding: 2rem 1.5rem;
    max-width: 900px;
}

.story-detail__hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.story-detail__cover {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.story-detail__hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: white;
}

    .story-detail__hero-overlay h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.story-detail__hero-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.9;
}

.story-detail__header {
    margin-bottom: 1.5rem;
}

.story-detail__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.story-detail__layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-detail__narrative h2,
.story-detail__gallery h2,
.story-detail__vendors h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.story-detail__narrative p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ── Gallery Grid ─────────────────────────────────────────────────────── */
.story-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.gallery-item figure {
    margin: 0;
}

.gallery-item__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .gallery-item__img:hover {
        opacity: 0.9;
    }

.gallery-item figcaption {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.gallery-item--video iframe {
    width: 100%;
    height: 180px;
    border-radius: 8px;
}

/* ── Vendor Credits ───────────────────────────────────────────────────── */
.vendor-credits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vendor-credit-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.vendor-credit-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.vendor-credit-card__name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--rose);
    text-decoration: none;
}

.vendor-credit-card__category {
    font-size: 0.8rem;
    color: var(--muted);
}

.vendor-credit-card__review {
    line-height: 1.6;
    color: var(--charcoal-light);
}

.vendor-credit-card__review--locked {
    font-style: italic;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ── Engagement Bar ───────────────────────────────────────────────────── */
.engagement-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.btn-like {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, border-color 0.2s;
}

    .btn-like:hover {
        background: #fdf0f8;
        border-color: var(--rose);
    }

.btn-like--active {
    background: #fdf0f8;
    border-color: var(--rose);
}

.like-count {
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-social {
    font-size: 0.82rem;
}

.btn-facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.btn-pinterest {
    background: #e60023;
    color: white;
    border-color: #e60023;
}

.btn-facebook:hover {
    background: #166dd8;
}

.btn-pinterest:hover {
    background: #cc001f;
}

.story-stats-line {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── Lightbox ─────────────────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox__inner {
    text-align: center;
    max-width: 90vw;
}

    .lightbox__inner img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 8px;
        display: block;
        margin: 0 auto;
    }

    .lightbox__inner p {
        color: rgba(255,255,255,0.8);
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }

/* ── My Story Page ────────────────────────────────────────────────────── */
.my-story-page {
    padding: 2rem 1.5rem;
    max-width: 900px;
}

.story-prompt {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--ivory);
    border: 2px dashed var(--border);
    border-radius: 16px;
}

.story-prompt--featured {
    border-color: var(--rose);
    background: linear-gradient(135deg, #fff8fd, #fdf0f8);
}

.story-prompt__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-prompt h2 {
    margin-bottom: 0.75rem;
}

.story-prompt p {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.my-story-summary {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.my-story-summary__cover img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.cover-placeholder {
    background: #f8f0fd;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.my-story-summary__info {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.story-stats-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.75rem 0 1.25rem;
}

.stat-chip {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

.my-story-summary__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.publish-checklist {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

    .publish-checklist li {
        padding: 0.3rem 0;
        font-size: 0.9rem;
        color: var(--charcoal-light);
    }

        .publish-checklist li.done {
            color: var(--sage);
        }

.checklist-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── CTA Bar ──────────────────────────────────────────────────────────── */
.stories-cta-bar {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, #fdf0f8, #f8e8f5);
    border: 1px solid #f0d0e8;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    flex-wrap: wrap;
}

/* ── Edit Page Layout ─────────────────────────────────────────────────── */
.edit-story-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    align-items: start;
}

.edit-story-sidebar {
    position: sticky;
    top: 1rem;
}

.publish-panel, .checklist-panel {
    margin-bottom: 1rem;
}

.publish-status {
    margin-bottom: 1rem;
}

.publish-hint {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.btn-block {
    width: 100%;
}

.media-section, .reviews-section {
    margin-top: 2rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.media-item {
    text-align: center;
}

.media-item__thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

    .media-item__thumb img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        display: block;
    }

.media-item__thumb--video {
    height: 100px;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.video-icon {
    font-size: 1.5rem;
}

.video-label {
    font-size: 0.75rem;
    color: var(--muted);
}

.media-item__overlay {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0,0,0,0.4);
    border-radius: 4px;
    padding: 2px 4px;
    cursor: move;
}

.drag-handle {
    color: white;
    font-size: 1rem;
}

.media-item__caption {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0.3rem 0 0.4rem;
}

.empty-hint {
    color: var(--muted);
    font-style: italic;
    font-size: 0.9rem;
}

.media-upload-block {
    background: var(--blush-soft);
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

    .media-upload-block h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

.inline-form {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.review-item {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.875rem 1rem;
}

.review-item__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.add-review-block {
    background: var(--blush-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
}

    .add-review-block h3 {
        margin-bottom: 1rem;
    }

/* ── Stars ────────────────────────────────────────────────────────────── */
.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star--filled {
    color: #f59e0b;
}

.star-rating-input .star--input {
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.1s;
}

    .star-rating-input .star--input:hover {
        color: #f59e0b;
    }

.star-rating--sm .star {
    font-size: 0.95rem;
}

.star-rating--display .star {
    font-size: 1rem;
}

/* ── Owner Controls ───────────────────────────────────────────────────── */
.owner-controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fffbf0;
    border: 1px solid #f0e6c0;
    border-radius: 8px;
}

/* ── Badges ───────────────────────────────────────────────────────────── */
.badge--verified {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .my-story-summary {
        grid-template-columns: 1fr;
    }

    .my-story-summary__info {
        padding: 1.25rem;
    }

    .edit-story-layout {
        grid-template-columns: 1fr;
    }

    .edit-story-sidebar {
        position: static;
    }

    .story-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-hero h1 {
        font-size: 1.8rem;
    }
}

/* ══════════════════════════════════════════════════
   HOMEPAGE — home.css
   ADA/WCAG 2.1 AA compliant stylesheet
   Contrast fixes, focus-visible styles, reduced-motion
══════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────── */
.hp-hero {
    position: relative;
    background: var(--plum);
    padding: 6rem 0 5rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

.hp-hero-noise {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(183,110,121,0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 0% 100%, rgba(107,144,128,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hp-hero-glow,
.hp-hero-glow-1,
.hp-hero-glow-2 {
    display: none;
}

.hp-hero-inner {
    position: relative;
    z-index: 1;
}

.hp-hero-copy {
    animation: hp-fadein .8s ease both;
}

.hp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    /* FIX: raised from .55 → .82 to pass WCAG AA */
    color: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.25);
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hp-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 6px var(--rose);
    animation: hp-pulse 2s ease-in-out infinite;
}

@keyframes hp-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.8);
    }
}

.hp-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

    .hp-hero-heading em {
        font-style: italic;
        color: #ffc8d5;
    }

.hp-hero-sub {
    font-size: 1.05rem;
    /* FIX: raised from .65 → .82 to pass WCAG AA */
    color: rgba(255,255,255,.82);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.25rem;
}

.hp-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--rose);
    color: #fff;
    padding: .8rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
    border: none;
}

    .hp-btn-primary:hover {
        background: #c4728a;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(212,131,143,.35);
    }

    /* ADA: clear focus ring for keyboard users */
    .hp-btn-primary:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 3px;
    }

.hp-btn-ghost {
    /* FIX: raised from .6 → .82 */
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
    font-weight: 500;
}

    .hp-btn-ghost:hover {
        color: #fff;
    }

    .hp-btn-ghost:focus-visible {
        outline: 2px solid rgba(255,255,255,.8);
        outline-offset: 3px;
        border-radius: 4px;
    }

/* FIX: trust list — raised from .4 → .75 (small text, needs higher ratio) */
.hp-hero-trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ── Floating UI stack ──────────────────────────── */
.hp-hero-visual {
    animation: hp-fadein .8s .2s ease both;
}

.hp-ui-stack {
    position: relative;
    min-height: 500px;
}

.hp-ui-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 1.25rem;
}

.hp-ui-card-main {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.hp-ui-card-header {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1rem;
}

.hp-ui-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hp-dot-red {
    background: #ff5f57;
}

.hp-dot-yellow {
    background: #febc2e;
}

.hp-dot-green {
    background: #28c840;
}

.hp-ui-card-title {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    margin-left: .5rem;
}

.hp-chat-msg {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    align-items: flex-start;
}

.hp-chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(212,131,143,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.hp-chat-bubble {
    background: rgba(255,255,255,.08);
    border-radius: 0 10px 10px 10px;
    padding: .6rem .85rem;
    font-size: .82rem;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
}

.hp-chat-user {
    flex-direction: row-reverse;
}

.hp-bubble-user {
    border-radius: 10px 0 10px 10px;
    background: rgba(212,131,143,.25);
}

.hp-chat-typing {
    display: flex;
    gap: .25rem;
    padding: .5rem .75rem;
    width: fit-content;
}

    .hp-chat-typing span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255,255,255,.4);
        animation: hp-bounce .9s ease-in-out infinite;
    }

        .hp-chat-typing span:nth-child(2) {
            animation-delay: .15s;
        }

        .hp-chat-typing span:nth-child(3) {
            animation-delay: .3s;
        }

@keyframes hp-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

.hp-ui-card-float {
    position: absolute;
    z-index: 3;
}

.hp-float-top {
    top: -2.5rem;
    right: -2.5rem;
    width: 210px;
}

.hp-float-bottom {
    bottom: -2rem;
    left: -2.5rem;
    width: 210px;
}

.hp-float-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .6rem;
}

.hp-timeline-mini {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.hp-tl-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
}

.hp-tl-time {
    color: rgba(255,255,255,.5);
    width: 30px;
    flex-shrink: 0;
}

.hp-tl-bar {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}

.hp-tl-text {
    color: rgba(255,255,255,.72);
}

.hp-tl-done .hp-tl-bar {
    background: #28c840;
}

.hp-tl-done .hp-tl-text {
    color: rgba(255,255,255,.45);
    text-decoration: line-through;
}

.hp-tl-active .hp-tl-bar {
    background: var(--rose);
    box-shadow: 0 0 6px var(--rose);
}

.hp-tl-active .hp-tl-text {
    color: #fff;
    font-weight: 600;
}

.hp-signed-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: .4rem;
}

.hp-signed-detail {
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    margin-bottom: .5rem;
}

.hp-signed-sigs {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.hp-sig {
    font-family: 'Great Vibes', cursive;
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
}

.hp-sig-sep {
    color: rgba(255,255,255,.3);
    font-size: .7rem;
}

.hp-anim-1 {
    animation: hp-fadein .7s .1s both;
}

.hp-anim-2 {
    animation: hp-fadein .7s .3s both;
}

.hp-anim-3 {
    animation: hp-fadein .7s .5s both;
}

@keyframes hp-fadein {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ADA: scroll hint is purely decorative */
.hp-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: none;
}

.hp-scroll-line {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent);
    animation: hp-scroll-pulse 2s ease-in-out infinite;
}

@keyframes hp-scroll-pulse {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

/* ── Feature overview ───────────────────────────── */
.hp-features-overview {
    padding: 5rem 0 4rem;
    background: var(--ivory);
}

/* FIX: raised font-size from .7rem to .75rem */
.hp-section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .75rem;
}

.hp-section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    color: var(--plum);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.hp-section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.hp-feature-card {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    transition: all .2s;
}

    .hp-feature-card:hover {
        box-shadow: 0 8px 32px rgba(107,58,90,.08);
        transform: translateY(-2px);
        border-color: var(--border);
    }

.hp-feature-ai {
    border-color: rgba(212,131,143,.3);
    background: #fffafc;
}

.hp-feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--plum), var(--rose));
    color: white;
    padding: .2rem .6rem;
    border-radius: 999px;
}

.hp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hp-feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--plum);
    margin-bottom: .4rem;
}

.hp-feature-body {
    font-size: .875rem;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin: 0;
}

/* ── AI spotlight ───────────────────────────────── */
.hp-ai-spotlight {
    position: relative;
    background: var(--plum);
    padding: 6rem 0;
    overflow: hidden;
}

.hp-ai-noise {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(183,110,121,0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 100% 0%, rgba(107,144,128,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hp-ai-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.hp-ai-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212,131,143,.15);
    border: 1px solid rgba(212,131,143,.35);
    color: #ffc8d5;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hp-ai-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 8px var(--rose);
    animation: hp-pulse 2s ease-in-out infinite;
}

.hp-ai-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* FIX: raised from .55 → .78 */
.hp-ai-sub {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.hp-ai-cards {
    position: relative;
    z-index: 1;
}

.hp-ai-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all .25s;
}

    .hp-ai-card:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(212,131,143,.4);
        transform: translateY(-3px);
    }

.hp-ai-card-featured {
    background: rgba(212,131,143,.1);
    border-color: rgba(212,131,143,.35);
}

.hp-ai-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hp-ai-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .75rem;
}

/* FIX: raised from .6 → .78 */
.hp-ai-card-body {
    font-size: .875rem;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.hp-ai-example {
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    padding: .75rem 1rem;
    border-left: 3px solid rgba(212,131,143,.5);
}

/* FIX: raised from .3 → .65 — this is a content label, must be readable */
.hp-ai-ex-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: .3rem;
}

/* FIX: raised from .6 → .78 */
.hp-ai-ex-text {
    font-size: .82rem;
    color: rgba(255,255,255,.78);
    font-style: italic;
    line-height: 1.5;
}

/* ── Couples + Vendors sections ─────────────────── */
.hp-couples-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.hp-vendors-section {
    padding: 6rem 0;
    background: var(--blush-soft, #fdf7f9);
}

.hp-label-rose {
    color: var(--rose);
}

.hp-label-sage {
    color: #6d8e5f;
}
/* FIX: darkened for contrast on white */

.hp-split-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hp-split-body {
    color: var(--charcoal-light);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hp-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

    .hp-check-list li {
        display: flex;
        align-items: center;
        gap: .6rem;
        font-size: .9rem;
        color: var(--charcoal);
    }

        .hp-check-list li::before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-color: var(--rose);
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
            mask-repeat: no-repeat;
            mask-size: contain;
            flex-shrink: 0;
        }

.hp-check-sage li::before {
    background-color: #6d8e5f;
}

.hp-split-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hp-split-note {
    font-size: .78rem;
    color: var(--muted);
}

.hp-link-muted {
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

    .hp-link-muted:hover {
        color: var(--plum);
    }

    .hp-link-muted:focus-visible {
        outline: 2px solid var(--rose);
        outline-offset: 3px;
        border-radius: 3px;
    }

/* Dashboard mockup */
.hp-couples-dashboard {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107,58,90,.1);
}

.hp-dash-header {
    background: linear-gradient(135deg, var(--plum), #9c5680);
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-dash-script {
    font-family: 'Great Vibes', cursive;
    font-size: 1.2rem;
    color: rgba(255,255,255,.78);
}

.hp-dash-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
}

.hp-dash-countdown {
    text-align: center;
}

.hp-countdown-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: #ffc8d5;
    line-height: 1;
}

.hp-countdown-label {
    font-size: .72rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hp-dash-stats {
    display: flex;
    padding: 1.25rem 1.75rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.hp-dash-stat {
    flex: 1;
    text-align: center;
}

.hp-dash-stat-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--plum);
}

.hp-dash-stat-label {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hp-dash-tools-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 1rem 1.75rem .5rem;
}

.hp-dash-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    padding: .5rem 1.75rem 1.75rem;
}

.hp-dash-tool {
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: default; /* decorative mockup — not interactive */
}

.hp-dash-tool-icon {
    font-size: 1.4rem;
    margin-bottom: .35rem;
}

.hp-dash-tool-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--charcoal-light);
}

/* Vendor comparison table */
.hp-vendor-compare {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.hp-compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .875rem;
}

.hp-compare-label {
    font-weight: 600;
    color: var(--charcoal);
}

.hp-compare-price {
    color: var(--muted);
}

.hp-price-vowlio {
    color: var(--plum);
    font-weight: 700;
    font-size: 1rem;
}

.hp-compare-dim {
    opacity: .55;
}

.hp-btn-sage {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #6d8e5f; /* FIX: darkened from #8ca87c for better contrast on white */
    color: white;
    padding: .8rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}

    .hp-btn-sage:hover {
        background: #5c7a50;
        color: white;
        transform: translateY(-1px);
    }

    .hp-btn-sage:focus-visible {
        outline: 3px solid #5c7a50;
        outline-offset: 3px;
    }

/* Vendor profile mockup */
.hp-vendor-card-preview {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(107,58,90,.1);
}

.hp-vendor-preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6d8e5f;
    color: white;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: .3rem;
    z-index: 2;
}

.hp-vp-cover {
    height: 180px;
    background: linear-gradient(135deg, var(--plum), #9c5680);
}

.hp-vp-body {
    padding: 1.25rem 1.5rem;
}

.hp-vp-category {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .25rem;
}

.hp-vp-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--plum);
    margin-bottom: .25rem;
}

.hp-vp-location {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .35rem;
}

.hp-vp-stars {
    color: #d97706; /* FIX: darkened amber for contrast */
    font-size: .85rem;
    margin-bottom: .35rem;
}

    .hp-vp-stars span {
        color: var(--muted);
        font-size: .75rem;
        margin-left: .25rem;
    }

.hp-vp-price {
    font-size: .875rem;
    color: var(--charcoal-light);
    margin-bottom: .75rem;
}

    .hp-vp-price strong {
        color: var(--plum);
        font-family: var(--font-display);
    }

.hp-vp-portfolio {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
}

.hp-vp-thumb {
    flex: 1;
    height: 60px;
    border-radius: 8px;
}

.hp-vp-t1 {
    background: linear-gradient(135deg, #fdf0f3, var(--rose));
    opacity: .7;
}

.hp-vp-t2 {
    background: linear-gradient(135deg, #e8f5e9, #8ca87c);
    opacity: .8;
}

.hp-vp-t3 {
    background: linear-gradient(135deg, var(--plum), #9c5680);
    opacity: .5;
}

.hp-vp-actions {
    display: flex;
    gap: .5rem;
}

.hp-vp-btn {
    flex: 1;
    padding: .6rem;
    border-radius: 7px;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    cursor: default; /* decorative mockup */
}

.hp-vp-btn-primary {
    background: var(--rose);
    color: white;
}

.hp-vp-btn-outline {
    border: 1.5px solid var(--border);
    color: var(--charcoal-light);
}

.hp-lead-notif {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    animation: hp-float 3s ease-in-out infinite;
    min-width: 200px;
}

.hp-lead-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hp-lead-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--plum);
}

.hp-lead-sub {
    font-size: .72rem;
    color: var(--muted);
}

.hp-lead-time {
    font-size: .68rem;
    color: var(--muted);
    margin-left: auto;
}

@keyframes hp-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── Proof section ──────────────────────────────── */
.hp-proof-section {
    padding: 5rem 0;
    background: white;
}

.hp-proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

.hp-proof-stat {
    flex: 1;
    min-width: 140px;
    padding: 2rem;
    text-align: center;
}

.hp-proof-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: .35rem;
}

.hp-proof-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    font-weight: 600;
}

.hp-proof-divider {
    width: 1px;
    background: var(--border-light);
    align-self: stretch;
}

.hp-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hp-testimonial {
    background: var(--ivory);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all .2s;
}

    .hp-testimonial:hover {
        box-shadow: 0 8px 32px rgba(107,58,90,.07);
        transform: translateY(-2px);
    }

/* FIX: darkened amber star color for WCAG contrast on ivory/white */
.hp-t-stars {
    color: #b45309;
    font-size: .9rem;
    margin-bottom: .75rem;
}

.hp-t-quote {
    font-size: .875rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-style: italic;
}

.hp-t-author strong {
    display: block;
    color: var(--plum);
    font-size: .875rem;
}

.hp-t-author span {
    font-size: .78rem;
    color: var(--muted);
}

/* ── Final CTA ──────────────────────────────────── */
.hp-final-cta {
    position: relative;
    background: var(--plum);
    padding: 7rem 0;
    overflow: hidden;
    text-align: center;
}

.hp-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(183,110,121,0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 100% 100%, rgba(107,144,128,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hp-cta-inner {
    position: relative;
    z-index: 1;
}

.hp-cta-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: rgba(255,200,213,.78);
    margin-bottom: .5rem;
}

.hp-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hp-cta-sub {
    /* FIX: raised from .6 → .82 */
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hp-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.hp-btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.hp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,.5);
    color: rgba(255,255,255,.92);
    background: transparent;
    padding: .8rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}

    .hp-btn-outline-light:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
        border-color: #fff;
    }

    .hp-btn-outline-light:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 3px;
    }

.hp-cta-links {
    display: flex;
    gap: .75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    /* FIX: raised from .35 → .75 — CRITICAL contrast failure */
    .hp-cta-links a {
        font-size: .82rem;
        color: rgba(255,255,255,.75);
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color .2s;
    }

        .hp-cta-links a:hover {
            color: #fff;
        }

        .hp-cta-links a:focus-visible {
            outline: 2px solid rgba(255,255,255,.8);
            outline-offset: 3px;
            border-radius: 3px;
        }

    .hp-cta-links span {
        color: rgba(255,255,255,.25);
        font-size: .7rem;
        /* separator is purely decorative */
    }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
    .hp-hero {
        min-height: auto;
        padding: 5rem 0 4rem;
    }

    .hp-float-top {
        top: -1rem;
        right: 0.5rem;
    }

    .hp-float-bottom {
        bottom: 0;
        left: 0.5rem;
    }

    .hp-proof-divider {
        display: none;
    }

    .hp-proof-stat {
        min-width: 50%;
    }

    .hp-lead-notif {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 576px) {
    .hp-features-grid {
        grid-template-columns: 1fr;
    }

    .hp-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hp-dash-tools {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── ADA: Reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hp-hero-copy,
    .hp-hero-visual,
    .hp-anim-1,
    .hp-anim-2,
    .hp-anim-3 {
        animation: none !important;
    }

    .hp-eyebrow-dot,
    .hp-ai-pulse {
        animation: none !important;
        opacity: 1;
    }

    .hp-chat-typing span {
        animation: none !important;
    }

    .hp-scroll-line {
        animation: none !important;
    }

    .hp-lead-notif {
        animation: none !important;
    }

    .hp-feature-card:hover,
    .hp-ai-card:hover,
    .hp-testimonial:hover,
    .hp-btn-primary:hover,
    .hp-btn-sage:hover {
        transform: none !important;
    }
}

/* ══════════════════════════════════════════════════
   FEATURES PAGE — features.css
   ADA/WCAG 2.1 AA compliant stylesheet
   Contrast fixes, focus-visible styles, reduced-motion
══════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────── */
.ft-hero {
    position: relative;
    background: var(--plum);
    padding: 5rem 0 4rem;
    overflow: hidden;
    text-align: center;
}

.ft-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(183,110,121,0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 0% 100%, rgba(107,144,128,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.ft-hero-inner {
    position: relative;
    z-index: 1;
}

/* FIX: font-size .7rem → .75rem; opacity .45 → .78 */
.ft-hero-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.25);
    padding: .3rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.ft-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ft-hero-accent {
    color: #ffc8d5;
}

/* FIX: raised from .6 → .82 */
.ft-hero-sub {
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* ADA: tablist role applied in HTML — these styles support it */
.ft-hero-tabs {
    display: inline-flex;
    gap: .5rem;
    background: rgba(255,255,255,.06);
    padding: .4rem;
    border-radius: 12px;
}

.ft-tab {
    padding: .65rem 1.5rem;
    border-radius: 9px;
    border: none;
    background: none;
    /* FIX: raised from .5 → .75 */
    color: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
}

    .ft-tab-active,
    .ft-tab[aria-selected="true"] {
        background: rgba(255,255,255,.15);
        color: #fff;
    }

    .ft-tab:hover:not([aria-selected="true"]) {
        color: rgba(255,255,255,.92);
        background: rgba(255,255,255,.06);
    }

    /* ADA: visible keyboard focus ring */
    .ft-tab:focus-visible {
        outline: 3px solid rgba(255,255,255,.8);
        outline-offset: 2px;
    }

/* ── Sections ───────────────────────────────────── */
.ft-section {
    padding: 5rem 0;
    background: var(--ivory);
}

.ft-section-dark {
    background: var(--plum);
    padding: 5rem 0;
    position: relative;
}

    .ft-section-dark::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(183,110,121,0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 0% 100%, rgba(107,144,128,0.15) 0%, transparent 60%);
        pointer-events: none;
    }

.ft-section-blush {
    background: var(--blush-soft, #fdf7f9);
    padding: 5rem 0;
}

/* FIX: font-size .7rem → .75rem */
.ft-section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .75rem;
}

/* FIX: opacity raised */
.ft-eyebrow-glow {
    color: #ffc8d5;
}

.ft-eyebrow-sage {
    color: #6d8e5f;
}

.ft-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: .75rem;
}

.ft-title-light {
    color: #fff;
}

.ft-section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* FIX: raised from .55 → .80 */
.ft-sub-light {
    color: rgba(255,255,255,.80);
}

/* ── AI cards ───────────────────────────────────── */
.ft-ai-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .ft-ai-card:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.22);
    }

.ft-ai-card-featured {
    background: rgba(212,131,143,.1);
    border-color: rgba(212,131,143,.35);
}

.ft-ai-icon {
    font-size: 2rem;
    line-height: 1;
}

.ft-ai-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #fff;
    margin: 0;
}

/* FIX: raised from .6 → .80 */
.ft-ai-body {
    font-size: .875rem;
    color: rgba(255,255,255,.80);
    line-height: 1.75;
    margin: 0;
}

.ft-ai-features {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

/* FIX: raised from .5 → .75 */
.ft-ai-feat {
    font-size: .78rem;
    color: rgba(255,255,255,.75);
    padding: .3rem 0 .3rem .9rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: relative;
}

    .ft-ai-feat::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: rgba(212,131,143,.85);
        font-size: .72rem;
    }

/* Chat / Vow / Match demos — decorative mockups, aria-hidden in HTML */
.ft-chat-demo,
.ft-vow-demo,
.ft-match-demo {
    background: rgba(0,0,0,.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: auto;
}

.ft-match-demo {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.ft-chat-row {
    display: flex;
    gap: .5rem;
    margin-bottom: .6rem;
    align-items: flex-start;
}

    .ft-chat-row:last-child {
        margin-bottom: 0;
    }

.ft-chat-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212,131,143,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    flex-shrink: 0;
}

.ft-chat-bub {
    background: rgba(255,255,255,.09);
    border-radius: 0 8px 8px 8px;
    padding: .5rem .7rem;
    font-size: .75rem;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
}

.ft-chat-user {
    flex-direction: row-reverse;
}

.ft-bub-user {
    border-radius: 8px 0 8px 8px;
    background: rgba(212,131,143,.2);
}

.ft-vow-style-row {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

/* Vow style chips — decorative */
.ft-vow-style {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.12);
    padding: .2rem .6rem;
    border-radius: 999px;
}

.ft-vs-active {
    color: #ffc8d5;
    border-color: rgba(212,131,143,.5);
    background: rgba(212,131,143,.1);
}

/* FIX: raised from .6 → .80 */
.ft-vow-preview {
    font-size: .78rem;
    color: rgba(255,255,255,.80);
    font-style: italic;
    line-height: 1.6;
}

.ft-match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FIX: raised from .65 → .82 */
.ft-match-name {
    font-size: .78rem;
    color: rgba(255,255,255,.82);
}

.ft-match-score {
    font-size: .72rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74,222,128,.12);
    padding: .15rem .5rem;
    border-radius: 999px;
}

/* ── Tool cards ─────────────────────────────────── */
.ft-tool-card {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all .2s;
}

    .ft-tool-card:hover {
        box-shadow: 0 8px 32px rgba(107,58,90,.08);
        transform: translateY(-2px);
    }

.ft-tool-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ft-tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ft-tool-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--plum);
    margin-bottom: .15rem;
}

.ft-tool-sub {
    font-size: .75rem;
    color: var(--muted);
}

.ft-tool-body {
    font-size: .875rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ft-tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

    .ft-tool-list li {
        font-size: .82rem;
        color: var(--charcoal-light);
        padding-left: 1.1rem;
        position: relative;
    }

        .ft-tool-list li::before {
            content: "";
            display: inline-block;
            position: absolute;
            left: 0;
            top: .2em;
            width: .7rem;
            height: .7rem;
            background-color: var(--rose);
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath fill='currentColor' d='M1 5l3 3 5-5'/%3E%3C/svg%3E");
            mask-repeat: no-repeat;
            mask-size: contain;
        }

/* ── Simple cards ───────────────────────────────── */
.ft-simple-card {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all .2s;
}

    .ft-simple-card:hover {
        box-shadow: 0 8px 24px rgba(107,58,90,.07);
        transform: translateY(-2px);
    }

.ft-simple-featured {
    border-color: rgba(212,131,143,.4);
    background: #fffafc;
}

.ft-sc-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1;
}

.ft-sc-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--plum);
    margin-bottom: .5rem;
}

.ft-sc-body {
    font-size: .875rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin: 0;
}

/* Contract highlight */
.ft-contract-highlight {
    margin-top: 3rem;
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
}

.ft-ch-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--plum);
    margin-bottom: .75rem;
}

.ft-ch-body {
    font-size: .9rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ft-ch-steps {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.ft-ch-step {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.ft-ch-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--rose);
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ft-ch-text {
    font-size: .875rem;
    color: var(--charcoal);
    line-height: 1.5;
    padding-top: .2rem;
}

/* Contract preview mockup */
.ft-contract-preview {
    background: var(--ivory);
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    padding: 1.75rem;
    position: relative;
}

.ft-cp-header {
    margin-bottom: 1.5rem;
}

/* FIX: font-size .68rem → .72rem */
.ft-cp-type {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .3rem;
}

.ft-cp-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--plum);
    margin-bottom: .4rem;
}

.ft-cp-meta {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.ft-cp-sigs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}

.ft-cp-sig-block {
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    padding: 1rem;
}

.ft-sig-signed {
    border-style: solid;
    border-color: #10b981;
}

/* FIX: .65rem → .72rem */
.ft-cp-sig-role {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .25rem;
}

.ft-cp-sig-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    color: var(--plum);
}

/* FIX: .7rem → .75rem */
.ft-cp-sig-check {
    font-size: .75rem;
    font-weight: 700;
    color: #10b981;
    margin-top: .2rem;
}

.ft-cp-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #d1fae5;
    color: #065f46;
    font-size: .75rem;
    font-weight: 700;
    padding: .35rem .85rem;
    border-radius: 999px;
}

/* ── Vendor cards ───────────────────────────────── */
.ft-v-card {
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all .2s;
}

    .ft-v-card:hover {
        box-shadow: 0 8px 24px rgba(107,58,90,.07);
        transform: translateY(-2px);
    }

.ft-v-featured {
    border-color: rgba(212,131,143,.4);
    background: #fffafc;
}

.ft-v-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.ft-v-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--plum);
    margin-bottom: .5rem;
}

.ft-v-body {
    font-size: .875rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: .75rem;
}

.ft-v-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

    .ft-v-list li {
        font-size: .8rem;
        color: var(--charcoal-light);
        padding-left: .9rem;
        position: relative;
    }

        .ft-v-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #6d8e5f; /* FIX: darkened from #8ca87c for contrast */
            font-weight: 700;
        }

/* SEO card */
.ft-light-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

    /* FIX: raised from .55 → .80 */
    .ft-light-list li {
        font-size: .875rem;
        color: rgba(255,255,255,.80);
        padding-left: 1.1rem;
        position: relative;
        line-height: 1.5;
    }

        .ft-light-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: rgba(212,131,143,.8);
        }

.ft-seo-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    overflow: hidden;
}

.ft-seo-header {
    background: rgba(0,0,0,.3);
    padding: 1rem 1.25rem;
    display: flex;
    gap: .75rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.ft-seo-favicon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #4285f4;
    color: white;
    font-size: .75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIX: raised from .7 → .85 */
.ft-seo-search {
    font-size: .82rem;
    color: rgba(255,255,255,.85);
}

.ft-seo-result {
    padding: 1.25rem;
}

.ft-seo-result-url {
    font-size: .72rem;
    color: #8ab4f8;
    margin-bottom: .25rem;
}

.ft-seo-result-title {
    font-size: 1rem;
    color: #8ab4f8;
    margin-bottom: .3rem;
    text-decoration: underline;
}

/* FIX: raised from .5 → .78 */
.ft-seo-result-desc {
    font-size: .8rem;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
}

/* ── CTAs ───────────────────────────────────────── */
.ft-audience-cta {
    padding: 5rem 0;
}

.ft-cta-couple {
    background: linear-gradient(135deg, var(--plum), #9c5680);
    color: white;
}

.ft-cta-vendor {
    background: linear-gradient(135deg, #2a4a35, #4a7a5e);
    color: white;
}

.ft-cta-script {
    font-family: 'Great Vibes', cursive;
    font-size: 1.75rem;
    color: rgba(255,255,255,.78);
    margin-bottom: .5rem;
}

.ft-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: .75rem;
}

/* FIX: raised from .7 → .85 */
.ft-cta-sub {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.ft-cta-btn {
    display: inline-block;
    background: white;
    color: var(--plum);
    padding: .9rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
}

    .ft-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
        color: var(--plum);
    }

    /* ADA: visible focus ring */
    .ft-cta-btn:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 3px;
    }

.ft-cta-btn-sage {
    color: #2a4a35;
}

/* FIX: raised from .5 → .72 */
.ft-cta-note {
    margin-top: 1.25rem;
    font-size: .82rem;
    color: rgba(255,255,255,.72);
}

    /* FIX: raised from .75 → .90 */
    .ft-cta-note a {
        color: rgba(255,255,255,.90);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .ft-cta-note a:focus-visible {
            outline: 2px solid rgba(255,255,255,.8);
            outline-offset: 2px;
            border-radius: 2px;
        }

.ft-note-light span {
    margin: 0 .4rem;
    color: rgba(255,255,255,.35);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767px) {
    .ft-cp-sigs {
        grid-template-columns: 1fr;
    }

    .ft-hero-tabs {
        flex-direction: column;
    }
}

/* ── ADA: Reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ft-tool-card:hover,
    .ft-simple-card:hover,
    .ft-v-card:hover,
    .ft-ai-card:hover {
        transform: none !important;
    }

    .ft-cta-btn:hover {
        transform: none !important;
    }
}
