/* ============================================
   Lemon Dances — landing styles
   Aesthetic: editorial + sensual + restrained
   Colors: тёплый off-white фон, графитовый текст,
           один акцент — горящий коралл (для движения)
   Typography: Fraunces (display, soft italic) + Geist (body)
   ============================================ */

:root {
    /* Palette */
    --bg: #f4efe8;
    --bg-soft: #ebe5db;
    --bg-deep: #1a1714;
    --ink: #1a1714;
    --ink-soft: #4a4540;
    --ink-mute: #8a847b;
    --line: #d8d0c2;
    --accent: #e8553f;
    --accent-deep: #c43a26;
    --accent-soft: #fce8e3;
    --success: #4a7c59;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 7rem;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Geist', -apple-system, sans-serif;

    --radius: 4px;
    --radius-pill: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Background grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(232, 85, 63, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-variation-settings: 'opsz' 100, 'SOFT' 40;
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-variation-settings: 'opsz' 30, 'SOFT' 30;
}

.italic {
    font-style: italic;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

p {
    color: var(--ink-soft);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: var(--space-s);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-m);
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    z-index: 2;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-m);
    z-index: 10;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
    font-variation-settings: 'opsz' 30, 'SOFT' 100;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: color .2s;
}

.nav-cta:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================
   HERO VIDEO (replaces hero-card when video exists)
   ============================================ */
.hero-video {
    position: relative;
}

.hero-video-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    max-height: 600px;
    box-shadow: -20px 30px 50px rgba(26, 23, 20, 0.18);
    transform: rotate(1.5deg);
    background: var(--bg-deep);
}

.hero-video-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    transform: rotate(-3deg);
    z-index: -1;
    pointer-events: none;
}

.hero-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    right: -1.5rem;
    background: var(--bg-deep);
    color: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    transform: rotate(-1deg);
    z-index: 2;
    max-width: 85%;
    box-shadow: 10px 20px 40px rgba(26, 23, 20, 0.25);
}

.hero-video-card .hero-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 4px 10px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-pill);
    margin-bottom: 0.7rem;
}

.hero-video-card h3 {
    color: var(--bg);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.hero-video-card .hero-card-list {
    list-style: none;
    margin: 0;
}

.hero-video-card .hero-card-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(244,239,232,0.7);
}

.hero-video-card .hero-card-list li:last-child {
    border-bottom: none;
}

.hero-video-card .hero-card-list li span:last-child {
    color: var(--bg);
    font-family: var(--font-display);
    font-style: italic;
}

/* ============================================
   HERO META LINE (replaces old hero-meta with columns)
   ============================================ */
.hero-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: var(--space-l);
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.hero-meta-line span {
    white-space: nowrap;
}

.hero-cta-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-link {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px dashed var(--ink-mute);
    padding-bottom: 2px;
    font-size: 0.95rem;
    transition: color .2s, border-color .2s;
}

.btn-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   FEATURES (с фоновым фото)
   ============================================ */
.features-bg {
    position: relative;
    padding: var(--space-xl) 0;
    background-color: var(--bg-deep);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.features-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 23, 20, 0.85) 0%,
        rgba(26, 23, 20, 0.65) 60%,
        rgba(26, 23, 20, 0.45) 100%
    );
    z-index: 1;
}

.features-bg-content {
    position: relative;
    z-index: 2;
}

.eyebrow-light {
    color: rgba(244, 239, 232, 0.6) !important;
}

.eyebrow-light::before {
    background: var(--accent) !important;
}

.feature-light h3 {
    color: var(--bg);
}

.feature-light p {
    color: rgba(244, 239, 232, 0.8);
}

.feature-light em {
    color: var(--accent);
}

/* ============================================
   TESTIMONIALS (с фоновым фото)
   ============================================ */
.testimonials {
    position: relative;
    padding: var(--space-xl) 0;
    background-color: var(--bg-soft);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 23, 20, 0.78) 0%,
        rgba(26, 23, 20, 0.58) 100%
    );
    z-index: 1;
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(244, 239, 232, 0.97);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.4;
}

.testimonial blockquote {
    margin-bottom: 1.5rem;
}

.testimonial blockquote p {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.55;
    font-style: italic;
}

.testimonial figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.testimonial figcaption strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
}

.testimonial figcaption span {
    font-size: 0.8rem;
    color: var(--ink-mute);
}

/* Mini pricing (двойной прайс компактнее) */
.pricing-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 720px;
}

.pricing-mini-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.2fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border-left: 2px solid transparent;
    transition: border-color .25s;
}

.pricing-mini-row.highlight {
    border-left-color: var(--accent);
    background: var(--accent-soft);
}

.pricing-mini-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
}

.pricing-mini-note {
    font-size: 0.85rem;
    color: var(--ink-mute);
}

.pricing-mini-price {
    text-align: right;
    font-size: 0.95rem;
}

.pricing-mini-price strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
}

.pricing-mini-row.highlight .pricing-mini-price strong {
    color: var(--accent-deep);
}

.pricing-mini-per {
    font-size: 0.8rem;
    color: var(--ink-mute);
    text-align: right;
}

@media (max-width: 600px) {
    .pricing-mini-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 1rem;
    }
    .pricing-mini-note {
        order: 2;
        grid-column: 2;
        text-align: right;
    }
    .pricing-mini-price {
        order: 3;
    }
    .pricing-mini-per {
        order: 4;
        font-size: 0.75rem;
    }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--space-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.pricing-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 700px;
}

.price-card {
    background: var(--bg-soft);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid transparent;
    transition: transform .25s, border-color .25s;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card.highlight {
    background: var(--bg-deep);
    color: var(--bg);
    border-color: var(--accent);
}

.price-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.price-card-label {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 400;
}

.price-card-amount {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.price-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
}

.price-card.highlight .price-num {
    color: var(--accent);
}

.price-currency {
    font-size: 1rem;
    color: var(--ink-mute);
}

.price-card.highlight .price-currency {
    color: rgba(244,239,232,0.6);
}

.price-card-note {
    font-size: 0.85rem;
    color: var(--ink-mute);
    margin-bottom: 0.5rem;
}

.price-card.highlight .price-card-note {
    color: rgba(244,239,232,0.7);
}

.price-card-per {
    font-size: 0.8rem;
    color: var(--ink-mute);
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
    margin-top: 0.7rem;
}

.price-card.highlight .price-card-per {
    color: rgba(244,239,232,0.5);
    border-top-color: rgba(255,255,255,0.1);
}

/* ============================================
   REFERRAL
   ============================================ */
.referral-card {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--accent-soft);
    border-radius: var(--radius);
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--accent);
}

.referral-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--accent-deep);
    line-height: 1;
    flex-shrink: 0;
}

.referral-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.referral-content p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .referral-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   TEAM PHOTO
   ============================================ */
.team-photo {
    padding: var(--space-l) 0;
}

.team-photo-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    max-height: 540px;
    box-shadow: 0 20px 50px rgba(26, 23, 20, 0.15);
}

.team-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(26, 23, 20, 0.1) 100%
    );
}

.team-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo-alt .team-photo-frame {
    aspect-ratio: 16 / 9;
    max-height: 480px;
}

@media (max-width: 700px) {
    .team-photo-frame {
        aspect-ratio: 4 / 5;
        max-height: 600px;
    }
    .team-photo-alt .team-photo-frame {
        aspect-ratio: 4 / 5;
    }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--space-xl) 0 var(--space-l);
    overflow: hidden;
}

.gallery-strip {
    display: flex;
    gap: 1rem;
    padding: 1rem var(--space-m);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: clamp(220px, 30vw, 360px);
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--bg-soft);
    transition: transform .3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item:nth-child(odd) {
    transform: translateY(20px);
}

.gallery-item:nth-child(odd):hover {
    transform: translateY(16px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 700px) {
    .gallery-item {
        width: 75vw;
    }
    .gallery-item:nth-child(odd) {
        transform: none;
    }
    .hero-video-card {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: -2rem;
        max-width: 100%;
        transform: none;
    }
    .hero-video-frame {
        transform: none;
        max-height: 500px;
    }
    .hero-video-frame::before {
        display: none;
    }
}

/* ============================================
   HERO (existing styles below)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 var(--space-xl);
    position: relative;
}

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

.hero-content {
    position: relative;
}

.hero h1 {
    margin-bottom: var(--space-m);
    white-space: pre-line;
}

.hero h1 .accent-word {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 36rem;
    margin-bottom: var(--space-l);
    line-height: 1.5;
}

.hero-meta {
    display: flex;
    gap: var(--space-l);
    margin-bottom: var(--space-l);
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
}

.hero-meta-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    font-variation-settings: 'opsz' 50, 'SOFT' 50;
}

.hero-meta-value .price-old {
    color: var(--ink-mute);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: var(--space-xs);
}

/* Hero side panel */
.hero-side {
    position: relative;
}

.hero-card {
    background: var(--bg-deep);
    color: var(--bg);
    padding: var(--space-l);
    border-radius: var(--radius);
    position: relative;
    transform: rotate(1.5deg);
    box-shadow: -20px 30px 50px rgba(26, 23, 20, 0.18);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    transform: rotate(-3deg);
    z-index: -1;
}

.hero-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 6px 12px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-m);
}

.hero-card h3 {
    color: var(--bg);
    margin-bottom: var(--space-m);
    font-style: italic;
}

.hero-card-list {
    list-style: none;
    margin-top: var(--space-m);
}

.hero-card-list li {
    padding: var(--space-s) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(244, 239, 232, 0.85);
}

.hero-card-list li span:last-child {
    color: var(--bg);
    font-family: var(--font-display);
    font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-s);
    padding: 1.1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 85, 63, 0.32);
}

.btn-primary .arrow {
    transition: transform .25s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--line);
}

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

.feature {
    position: relative;
    padding-top: var(--space-m);
}

.feature-num {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent);
}

.feature h3 {
    margin-bottom: var(--space-s);
    font-style: italic;
}

.feature p {
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule {
    padding: var(--space-xl) 0;
    background: var(--bg-soft);
    margin: var(--space-xl) 0 0;
}

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

.schedule-stage {
    background: var(--bg-deep);
    color: var(--bg);
    padding: var(--space-xl) var(--space-l);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.schedule-stage::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.25;
}

.schedule-stage-day {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    margin-bottom: var(--space-s);
    line-height: 1;
}

.schedule-stage-time {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: var(--space-l);
    font-family: var(--font-display);
}

.schedule-stage-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: var(--space-l) 0;
}

.schedule-stage-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    color: rgba(244, 239, 232, 0.7);
    font-size: 0.95rem;
}

.schedule-stage-meta-item {
    display: flex;
    gap: var(--space-s);
}

.schedule-stage-meta-item strong {
    color: var(--bg);
    font-weight: 500;
    min-width: 100px;
    display: inline-block;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
}

.form-pitch h2 {
    margin-bottom: var(--space-m);
}

.form-pitch h2 em {
    color: var(--accent);
    font-style: italic;
}

.form-pitch p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.form-pitch-points {
    list-style: none;
    margin-top: var(--space-l);
}

.form-pitch-points li {
    padding: var(--space-s) 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: var(--space-s);
    color: var(--ink-soft);
}

.form-pitch-points li::before {
    content: '→';
    color: var(--accent);
    font-weight: 500;
}

.form-card {
    background: var(--bg-soft);
    padding: var(--space-l);
    border-radius: var(--radius);
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    pointer-events: none;
    opacity: 0.4;
}

.form-card-header {
    margin-bottom: var(--space-l);
}

.form-card-header h3 {
    font-style: italic;
    margin-bottom: var(--space-xs);
}

.form-card-header p {
    color: var(--ink-mute);
    font-size: 0.9rem;
}

.form-row {
    margin-bottom: var(--space-m);
}

.form-row label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: var(--space-s);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink-mute);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color .2s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-row textarea {
    min-height: 80px;
    resize: vertical;
}

.form-row.error input,
.form-row.error textarea {
    border-bottom-color: var(--accent-deep);
}

.form-error {
    font-size: 0.8rem;
    color: var(--accent-deep);
    margin-top: 4px;
    display: none;
}

.form-row.error .form-error {
    display: block;
}

.form-submit {
    width: 100%;
    margin-top: var(--space-m);
    justify-content: center;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--ink-mute);
    margin-top: var(--space-m);
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--space-xl) 0;
}

.faq-list {
    margin-top: var(--space-l);
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: var(--space-m) 0;
    cursor: pointer;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-m);
}

.faq-q-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-variation-settings: 'opsz' 50, 'SOFT' 30;
    color: var(--ink);
}

.faq-toggle {
    color: var(--accent);
    font-size: 1.5rem;
    transition: transform .3s;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding-top .35s ease;
    color: var(--ink-soft);
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-top: var(--space-m);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-deep);
    color: var(--bg);
    padding: var(--space-l) 0 var(--space-m);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-m);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--bg);
}

.footer-meta {
    color: rgba(244, 239, 232, 0.5);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes reveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    animation: reveal .8s ease-out forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.4s; }
.reveal-4 { animation-delay: 0.55s; }
.reveal-5 { animation-delay: 0.7s; }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-mark {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 60px;
    margin-bottom: var(--space-l);
    font-family: var(--font-display);
    font-style: italic;
}

.thank-you h1 {
    margin-bottom: var(--space-m);
}

.thank-you-meta {
    margin-top: var(--space-l);
    padding-top: var(--space-l);
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

/* ============================================
   404
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-l);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero {
        padding-top: 6rem;
        min-height: auto;
    }
    .hero-grid,
    .schedule-inner,
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-l);
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-m);
    }
    .hero-card {
        transform: none;
    }
    .hero-card::before {
        display: none;
    }
    .hero-meta {
        gap: var(--space-m);
    }
}

@media (max-width: 560px) {
    :root {
        --space-l: 2.5rem;
        --space-xl: 4.5rem;
    }
    .nav {
        padding: var(--space-s) var(--space-m);
    }
    body {
        font-size: 16px;
    }
}
