:root {
    --parchment-cream: #FFF8F0;
    --cottage-midnight: #1A1425;
    --warm-ink: #2D2A26;
    --faded-sage: #6B7F6B;
    --electric-fuchsia: #FF2ECC;
    --ultraviolet-pulse: #7B2FFF;
    --neon-chartreuse: #BFFF00;
    --hedgerow-green: #3A5A3A;
    --hearthfire-amber: #FF9A3C;
    --linen: #E8E2D8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--parchment-cream);
    color: var(--warm-ink);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* Garden Path */
.garden-path {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 100;
}

.path-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--faded-sage);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--parchment-cream);
}

.path-dot.active {
    background: var(--electric-fuchsia);
    border-color: var(--electric-fuchsia);
    box-shadow: 0 0 8px rgba(255, 46, 204, 0.4);
}

/* Panels */
.panel {
    min-height: 100vh;
    padding: clamp(3rem, 6vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Quilt Grids */
.quilt-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
    max-width: 1100px;
    width: 100%;
}

.patch {
    background: var(--linen);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 3rem);
    position: relative;
    overflow: hidden;
}

/* Neon gap lines */
.quilt-grid {
    background: linear-gradient(135deg, rgba(255, 46, 204, 0.15), rgba(123, 47, 255, 0.1));
    border-radius: 16px;
}

.patch-hero { grid-column: span 8; }
.patch-side { grid-column: span 4; display: flex; align-items: center; justify-content: center; }
.patch-top-left { grid-column: span 6; }
.patch-center { grid-column: span 12; }
.patch-bottom-right { grid-column: 9 / span 4; }
.patch-wide { grid-column: span 12; }
.patch-closing { grid-column: span 12; }

.grid-types {
    grid-template-columns: 1fr 1fr;
}

.patch-type { grid-column: span 1; }

/* Typography */
.hero-title {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -0.02em;
    color: var(--warm-ink);
    line-height: 1.1;
}

.hero-annotation {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--electric-fuchsia);
    margin-top: 1rem;
}

.section-title {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--warm-ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.type-heading {
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--warm-ink);
    margin-bottom: 1rem;
}

.body-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: var(--warm-ink);
    margin-bottom: 1rem;
    max-width: 55ch;
}

.annotation {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--hearthfire-amber);
}

/* Neon Path */
.neon-path { width: 100%; max-width: 200px; }

.draw-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1.5s ease-out;
}

.draw-path.drawn { stroke-dashoffset: 0; }

/* Stats */
.stat-glow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--ultraviolet-pulse);
    text-shadow: 0 0 15px rgba(123, 47, 255, 0.3);
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--faded-sage);
}

/* Data Cards */
.data-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.data-card {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background: var(--parchment-cream);
    border-radius: 12px;
    border: 1px solid rgba(255, 46, 204, 0.15);
}

.data-num {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--electric-fuchsia);
    display: block;
}

.data-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--faded-sage);
}

/* Hedgerow */
.hedgerow {
    height: 80px;
    overflow: hidden;
}

.hedgerow svg {
    width: 100%;
    height: 100%;
}

.closing-brand {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--electric-fuchsia);
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .quilt-grid { grid-template-columns: 1fr; }
    .grid-types { grid-template-columns: 1fr; }
    .patch-hero, .patch-side, .patch-top-left, .patch-center,
    .patch-bottom-right, .patch-wide, .patch-closing { grid-column: span 1; }
    .garden-path { right: 1rem; }
    .data-row { flex-direction: column; }
}
