/* ============================================
   RYLIE WEDDINGS — Design System & Styles
   ============================================ */

/* --- Tokens --- */
:root {
    /* Palette — warm neutrals with sage accents */
    --ivory: #FAF7F2;
    --cream: #F5F0E8;
    --linen: #EDE7DB;
    --sand: #D4C9B8;
    --taupe: #A89B8C;
    --stone: #7A6F63;
    --earth: #5A504A;
    --charcoal: #2D2926;
    --ink: #1A1715;

    --sage: #8B9A6B;
    --sage-light: #C5D1A8;
    --sage-dark: #6B7A4B;
    --sage-muted: #A8B48C;

    --gold: #C4A265;
    --gold-light: #E2D0A8;
    --rose: #C4929A;
    --rose-light: #E8CDD1;

    --white: #FFFFFF;
    --success: #6B9A6B;
    --error: #C46B6B;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 23, 21, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 23, 21, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 23, 21, 0.1);
    --shadow-xl: 0 16px 50px rgba(26, 23, 21, 0.12);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input { font-family: inherit; border: none; outline: none; background: none; }

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--sage-dark);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    color: var(--earth);
    background: transparent;
}
.btn-ghost:hover {
    background: var(--cream);
}

.btn-outline-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: 1.5px solid var(--sand);
    color: var(--earth);
    border-radius: var(--radius-full);
}
.btn-outline-lg:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
    background: rgba(139, 154, 107, 0.05);
}

.btn-full { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 201, 184, 0.3);
    padding: var(--space-sm) 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--sage-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 450;
    color: var(--stone);
    transition: color var(--duration-fast);
}
.nav-links a:hover { color: var(--ink); }

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5xl) var(--space-xl) var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 154, 107, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(196, 146, 154, 0.05) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--ivory), transparent);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: var(--white);
    border: 1px solid var(--linen);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--stone);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-accent {
    font-style: italic;
    color: var(--sage-dark);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--stone);
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
}

/* Search Bar */
.hero-search {
    margin-bottom: var(--space-3xl);
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 640px;
    margin: 0 auto;
    transition: border-color var(--duration-normal);
}
.search-bar:focus-within {
    border-color: var(--sage-muted);
    box-shadow: var(--shadow-xl), 0 0 0 3px rgba(139, 154, 107, 0.08);
}

.search-field {
    flex: 1;
    min-width: 0;
}
.search-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone);
    margin-bottom: 2px;
}
.search-field input {
    width: 100%;
    font-size: 0.9rem;
    color: var(--ink);
}
.search-field input::placeholder { color: var(--taupe); }

.search-field-guests { max-width: 80px; }

.search-divider {
    width: 1px;
    height: 32px;
    background: var(--linen);
    margin: 0 var(--space-md);
    flex-shrink: 0;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--sage-dark);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--duration-normal) var(--ease-out);
}
.search-btn:hover {
    background: var(--sage);
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.stat { text-align: center; }
.stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--sage-dark);
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--linen);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.5;
}
.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--taupe);
}
.scroll-arrow {
    width: 1px;
    height: 30px;
    background: var(--sand);
    position: relative;
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.proof-bar {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    border-top: 1px solid var(--linen);
    border-bottom: 1px solid var(--linen);
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.proof-item {
    text-align: center;
}
.proof-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}
.proof-item p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--earth);
    margin-bottom: var(--space-sm);
}
.proof-item span {
    font-size: 0.8rem;
    color: var(--taupe);
    font-weight: 500;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage-dark);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--stone);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.step {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}
.step:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--sage-muted);
    margin-bottom: var(--space-md);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    color: var(--sage-dark);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.step p {
    font-size: 0.875rem;
    color: var(--stone);
    line-height: 1.6;
}

/* ============================================
   VENUE CARDS
   ============================================ */
.venue-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone);
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: all var(--duration-fast);
}
.filter-btn:hover { background: var(--cream); }
.filter-btn.active {
    background: var(--charcoal);
    color: var(--white);
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.venue-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
}
.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.venue-image {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-image-placeholder {
    color: rgba(255,255,255,0.3);
}

.venue-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--earth);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.venue-fav {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--stone);
    transition: all var(--duration-fast);
}
.venue-fav:hover {
    color: var(--rose);
    transform: scale(1.1);
}

.venue-info {
    padding: var(--space-lg);
}

.venue-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.venue-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sage-dark);
}

.venue-rating {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.venue-name {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.venue-location {
    font-size: 0.85rem;
    color: var(--taupe);
    margin-bottom: var(--space-md);
}

.venue-details {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--linen);
}
.venue-details span {
    font-size: 0.75rem;
    color: var(--stone);
}

.venue-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-from {
    font-size: 0.75rem;
    color: var(--taupe);
}
.price-amount {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
}
.price-period {
    font-size: 0.8rem;
    color: var(--taupe);
}

.venues-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--cream); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: start;
    padding: var(--space-3xl);
    background: var(--charcoal);
    color: var(--cream);
    border-color: transparent;
}
.feature-card-large h3 { color: var(--white); }
.feature-card-large p { color: var(--sand); }
.feature-card-large .feature-icon-wrap { background: rgba(139, 154, 107, 0.2); color: var(--sage-light); }

.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: var(--radius-md);
    color: var(--sage-dark);
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--stone);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: var(--space-md);
    padding: 0.25rem 0.75rem;
    background: rgba(139, 154, 107, 0.15);
    color: var(--sage-light);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   UNICORN FEATURES
   ============================================ */
.unicorn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.unicorn-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--linen);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}
.unicorn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.unicorn-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-lg);
    color: var(--sage-dark);
}

.unicorn-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(139, 154, 107, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.unicorn-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.unicorn-card p {
    font-size: 0.875rem;
    color: var(--stone);
    line-height: 1.6;
}

/* ============================================
   PRICING COMPARISON
   ============================================ */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--linen);
    background: var(--white);
    position: relative;
}

.pricing-rylie {
    border-color: var(--sage);
    box-shadow: var(--shadow-xl);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: var(--sage-dark);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--linen);
}

.pricing-header h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}
.pricing-currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--stone);
    margin-top: 6px;
}
.pricing-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}
.pricing-note {
    display: block;
    font-size: 0.8rem;
    color: var(--taupe);
    margin-top: var(--space-sm);
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.pricing-list li {
    font-size: 0.875rem;
    color: var(--earth);
    padding-left: var(--space-xl);
    position: relative;
}

.pricing-con::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--error);
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-pro::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================================
   HOST SECTION
   ============================================ */
.hosts { background: var(--charcoal); }
.hosts .section-tag { color: var(--sage-light); }
.hosts .section-title { color: var(--white); }

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

.host-text {
    font-size: 1.05rem;
    color: var(--sand);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.host-stats-row {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.host-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
}
.host-stat-label {
    font-size: 0.75rem;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.host-actions {
    display: flex;
    gap: var(--space-md);
}
.hosts .btn-ghost { color: var(--sand); }
.hosts .btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Host notification cards */
.host-visual {
    position: relative;
    height: 320px;
}

.host-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.host-mini-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    position: absolute;
    width: 85%;
    animation: float-card 6s ease-in-out infinite;
}

.hmc-1 { top: 0; left: 0; animation-delay: 0s; }
.hmc-2 { top: 110px; left: 40px; animation-delay: -2s; }
.hmc-3 { top: 220px; left: 10px; animation-delay: -4s; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hmc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hmc-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 2px;
}
.hmc-text span {
    font-size: 0.8rem;
    color: var(--taupe);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-box {
    text-align: center;
    padding: var(--space-4xl);
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 1px solid var(--linen);
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: var(--space-md);
}

.cta-box p {
    color: var(--stone);
    margin-bottom: var(--space-2xl);
}

.cta-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 440px;
    margin: 0 auto var(--space-md);
}

.cta-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--ink);
    transition: border-color var(--duration-fast);
}
.cta-input:focus { border-color: var(--sage-muted); }
.cta-input::placeholder { color: var(--taupe); }

.cta-note {
    font-size: 0.8rem;
    color: var(--taupe);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    border-top: 1px solid var(--linen);
}

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

.footer-brand p {
    font-size: 0.85rem;
    color: var(--stone);
    margin-top: var(--space-md);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone);
    margin-bottom: var(--space-lg);
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: var(--taupe);
    padding: var(--space-xs) 0;
    transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--linen);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--taupe);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}
.footer-legal a {
    font-size: 0.8rem;
    color: var(--taupe);
    transition: color var(--duration-fast);
}
.footer-legal a:hover { color: var(--ink); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .venue-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-large { grid-column: 1 / -1; }
    .host-split { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ivory);
        padding: var(--space-xl);
        border-bottom: 1px solid var(--linen);
        box-shadow: var(--shadow-lg);
    }

    .hero-title { font-size: 2.4rem; }

    .search-bar {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: var(--space-md);
        gap: var(--space-md);
    }
    .search-divider { width: 100%; height: 1px; margin: 0; }
    .search-field-guests { max-width: 100%; }
    .search-btn { width: 100%; height: 46px; border-radius: var(--radius-md); }

    .hero-stats { gap: var(--space-lg); }
    .stat-value { font-size: 1.4rem; }

    .proof-items { grid-template-columns: 1fr; gap: var(--space-xl); }
    .steps-grid { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card-large { grid-template-columns: 1fr; }
    .unicorn-grid { grid-template-columns: 1fr; }
    .pricing-comparison { grid-template-columns: 1fr; }
    .host-stats-row { flex-direction: column; gap: var(--space-lg); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

    .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero { padding-top: var(--space-4xl); }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section { padding: var(--space-3xl) 0; }
    .section-title { font-size: 1.8rem; }
}
