/* ==========================================================================
   gabs.feedback v2 - Goblincore Feedback Garden
   Colors: #3D2B1F, #7A9E7E, #E8DCC8, #C4AD8F, #C7637E, #9E3A3A, #D4BE5E
   Fonts: Albert Sans, Atkinson Hyperlegible, Kode Mono
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.75;
    color: #E8DCC8;
    background-color: #3D2B1F;
    overflow-x: hidden;
}

/* --- Soil Texture Background (CSS noise) --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(61, 43, 31, 0.04) 2px,
            rgba(61, 43, 31, 0.04) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(196, 173, 143, 0.025) 3px,
            rgba(196, 173, 143, 0.025) 6px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 5px,
            rgba(122, 158, 126, 0.018) 5px,
            rgba(122, 158, 126, 0.018) 10px
        ),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 7px,
            rgba(199, 99, 126, 0.008) 7px,
            rgba(199, 99, 126, 0.008) 14px
        );
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3D2B1F;
    overflow: hidden;
    z-index: 1;
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 15% 25%, rgba(196, 173, 143, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(122, 158, 126, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(232, 220, 200, 0.035) 0%, transparent 65%),
        radial-gradient(ellipse at 70% 20%, rgba(199, 99, 126, 0.025) 0%, transparent 40%),
        linear-gradient(145deg, rgba(61, 43, 31, 0.85) 0%, rgba(61, 43, 31, 0.55) 50%, rgba(61, 43, 31, 0.9) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 10vw, 120px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #E8DCC8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0;
}

.title-gabs {
    opacity: 0;
    animation: fadeInGabs 600ms ease-out 400ms forwards;
}

.title-dot {
    color: #7A9E7E;
    opacity: 0;
    animation: fadeInGabs 400ms ease-out 900ms forwards;
    font-size: 1.1em;
}

.title-feedback {
    display: inline-flex;
}

.title-feedback .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: growUpLetter 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.title-feedback .letter:nth-child(1) { animation-delay: 1000ms; }
.title-feedback .letter:nth-child(2) { animation-delay: 1080ms; }
.title-feedback .letter:nth-child(3) { animation-delay: 1160ms; }
.title-feedback .letter:nth-child(4) { animation-delay: 1240ms; }
.title-feedback .letter:nth-child(5) { animation-delay: 1320ms; }
.title-feedback .letter:nth-child(6) { animation-delay: 1400ms; }
.title-feedback .letter:nth-child(7) { animation-delay: 1480ms; }
.title-feedback .letter:nth-child(8) { animation-delay: 1560ms; }

/* Leaf decoration on specific letters (F, E, K) */
.title-feedback .letter[data-leaf] {
    position: relative;
}

.title-feedback .letter[data-leaf]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 8px;
    height: 14px;
    background: #7A9E7E;
    border-radius: 0 80% 0 80%;
    transform: translateX(-50%) rotate(-15deg) scale(0);
    animation: leafSprout 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1800ms;
}

.title-feedback .letter[data-leaf]:nth-child(3)::after {
    border-radius: 80% 0 80% 0;
    transform: translateX(-50%) rotate(15deg) scale(0);
    animation: leafSproutAlt 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1900ms;
}

.hero-tagline {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 22px);
    color: #C4AD8F;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInGabs 800ms ease-out 1800ms forwards;
    letter-spacing: 0.03em;
}

/* --- Keyframes --- */
@keyframes fadeInGabs {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes growUpLetter {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes leafSprout {
    from { transform: translateX(-50%) rotate(-15deg) scale(0); }
    to { transform: translateX(-50%) rotate(-15deg) scale(1); }
}

@keyframes leafSproutAlt {
    from { transform: translateX(-50%) rotate(15deg) scale(0); }
    to { transform: translateX(-50%) rotate(15deg) scale(1); }
}

@keyframes springIn {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(24px) rotate(var(--rotation, 0deg));
    }
    60% {
        opacity: 1;
        transform: scale(1.03) translateY(-3px) rotate(var(--rotation, 0deg));
    }
    80% {
        transform: scale(0.99) translateY(1px) rotate(var(--rotation, 0deg));
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(var(--rotation, 0deg));
    }
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.3); opacity: 0.9; }
    80% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes mushroomGrow {
    from { transform: scaleY(0); transform-origin: bottom center; }
    to { transform: scaleY(1); transform-origin: bottom center; }
}

@keyframes floatDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(2deg); }
    50% { transform: translateY(-2px) rotate(-1deg); }
    75% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes vineLeafReveal {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 0.7; transform: scale(1); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(122, 158, 126, 0); }
    50% { box-shadow: 0 0 12px 3px rgba(122, 158, 126, 0.15); }
}

/* --- Geometric Shapes --- */
.geo-shape {
    position: absolute;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    will-change: transform;
}

.geo-hero {
    animation: popIn 600ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 2400ms;
}

.geo-circle {
    width: var(--geo-size, 20px);
    height: var(--geo-size, 20px);
    border-radius: 50%;
    background: #C7637E;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: calc(var(--geo-size, 24px) / 2) solid transparent;
    border-right: calc(var(--geo-size, 24px) / 2) solid transparent;
    border-bottom: var(--geo-size, 24px) solid #7A9E7E;
    background: transparent;
}

.geo-square {
    width: var(--geo-size, 16px);
    height: var(--geo-size, 16px);
    background: #D4BE5E;
    transform: rotate(15deg);
}

/* Floating animation for visible shapes */
.geo-shape.float {
    animation: floatDrift 8s ease-in-out infinite;
}

.geo-shape.float:nth-child(odd) {
    animation-duration: 10s;
    animation-delay: -2s;
}

/* --- Vine SVG --- */
.vine-svg {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 300vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.vine-main {
    stroke-dasharray: 3200;
    stroke-dashoffset: 3200;
    transition: stroke-dashoffset 0ms linear;
}

.vine-leaf {
    transition: opacity 600ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

.vine-berry {
    transition: opacity 500ms ease, r 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Section Shared Styles --- */
.section-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 60px);
    color: #E8DCC8;
    text-align: center;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-intro {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.8vw, 20px);
    color: #C4AD8F;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 700ms ease 100ms, transform 700ms ease 100ms;
}

.section-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Feedback Garden Section --- */
.feedback-garden {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Feedback Cards --- */
.feedback-card {
    position: relative;
    background: #E8DCC8;
    color: #3D2B1F;
    padding: 2rem 1.8rem 1.5rem;
    transform: rotate(var(--rotation, 0deg));
    transition: transform 250ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 250ms ease;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.feedback-card.visible {
    animation: springIn 600ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--card-index, 0) * 120ms);
}

.feedback-card:hover {
    transform: rotate(var(--rotation, 0deg)) translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Torn-paper clip-paths - unique irregular edges per card */
.feedback-card:nth-child(1) {
    clip-path: polygon(1% 0%, 48% 1%, 97% 0%, 100% 2%, 99% 48%, 100% 96%, 98% 100%, 52% 99%, 2% 100%, 0% 97%, 1% 52%, 0% 3%);
}
.feedback-card:nth-child(2) {
    clip-path: polygon(0% 1%, 3% 0%, 50% 2%, 98% 0%, 100% 3%, 99% 50%, 100% 98%, 97% 100%, 50% 98%, 2% 100%, 0% 96%, 1% 48%);
}
.feedback-card:nth-child(3) {
    clip-path: polygon(2% 0%, 51% 1%, 100% 0%, 99% 3%, 100% 51%, 98% 100%, 100% 97%, 48% 100%, 0% 99%, 1% 97%, 0% 49%, 1% 2%);
}
.feedback-card:nth-child(4) {
    clip-path: polygon(0% 2%, 2% 0%, 49% 1%, 97% 0%, 100% 1%, 99% 49%, 100% 97%, 98% 100%, 51% 99%, 3% 100%, 0% 98%, 1% 50%);
}
.feedback-card:nth-child(5) {
    clip-path: polygon(1% 0%, 50% 2%, 98% 0%, 100% 2%, 99% 51%, 100% 99%, 97% 100%, 49% 98%, 2% 100%, 0% 97%, 1% 50%, 0% 1%);
}
.feedback-card:nth-child(6) {
    clip-path: polygon(2% 1%, 51% 0%, 99% 1%, 100% 3%, 98% 50%, 100% 98%, 99% 100%, 48% 99%, 1% 100%, 0% 96%, 2% 49%, 0% 2%);
}
.feedback-card:nth-child(7) {
    clip-path: polygon(0% 0%, 3% 1%, 50% 0%, 97% 2%, 100% 0%, 99% 50%, 97% 100%, 100% 98%, 49% 100%, 1% 99%, 0% 100%, 1% 51%);
}
.feedback-card:nth-child(8) {
    clip-path: polygon(1% 1%, 49% 0%, 98% 1%, 100% 0%, 100% 49%, 99% 97%, 100% 100%, 51% 99%, 2% 100%, 0% 99%, 1% 51%, 0% 2%);
}
.feedback-card:nth-child(9) {
    clip-path: polygon(0% 0%, 2% 1%, 52% 0%, 100% 1%, 99% 2%, 100% 50%, 98% 100%, 50% 99%, 1% 100%, 0% 98%, 2% 51%, 0% 3%);
}

/* --- Mushroom Indicators --- */
.card-mushroom {
    position: absolute;
    top: 10px;
    right: 14px;
    opacity: 0.45;
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
}

.card-mushroom::before {
    content: '';
    display: block;
    background: #C4AD8F;
    border-radius: 50% 50% 4px 4px;
}

.card-mushroom::after {
    content: '';
    display: block;
    background: #C4AD8F;
    margin: 0 auto;
    border-radius: 0 0 2px 2px;
}

.mushroom-small::before {
    width: 10px;
    height: 6px;
}
.mushroom-small::after {
    width: 4px;
    height: 6px;
}

.mushroom-medium::before {
    width: 14px;
    height: 8px;
}
.mushroom-medium::after {
    width: 5px;
    height: 9px;
}

.mushroom-large::before {
    width: 20px;
    height: 10px;
}
.mushroom-large::after {
    width: 6px;
    height: 12px;
}

/* Mushroom spots for large */
.mushroom-large::before {
    background:
        radial-gradient(circle at 30% 40%, rgba(232, 220, 200, 0.5) 0%, rgba(232, 220, 200, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(232, 220, 200, 0.4) 0%, rgba(232, 220, 200, 0.4) 1.5px, transparent 1.5px),
        #C4AD8F;
}

/* --- Card Tags --- */
.card-tag {
    font-family: 'Kode Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.tag-praise {
    background: rgba(199, 99, 126, 0.15);
    color: #C7637E;
    border-left: 2px solid #C7637E;
}

.tag-criticism {
    background: rgba(158, 58, 58, 0.15);
    color: #9E3A3A;
    border-left: 2px solid #9E3A3A;
}

.tag-suggestion {
    background: rgba(212, 190, 94, 0.15);
    color: #9E8A2E;
    border-left: 2px solid #D4BE5E;
}

/* --- Card Content --- */
.card-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 22px);
    color: #3D2B1F;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.card-body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 17px);
    color: #3D2B1F;
    line-height: 1.65;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.card-meta {
    font-family: 'Kode Mono', monospace;
    font-size: 11px;
    color: #C4AD8F;
    display: block;
}

/* --- Growth Timeline Section --- */
.growth-timeline {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

/* Central vertical vine track */
.timeline-vine-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        rgba(122, 158, 126, 0) 0%,
        rgba(122, 158, 126, 0.5) 10%,
        rgba(122, 158, 126, 0.5) 90%,
        rgba(122, 158, 126, 0) 100%
    );
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.34, 1.2, 0.64, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-left {
    flex-direction: row;
    padding-right: calc(50% + 2.5rem);
}

.timeline-right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 2.5rem);
}

.timeline-left .timeline-content {
    text-align: right;
}

.timeline-right .timeline-content {
    text-align: left;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3D2B1F;
    border: 2px solid #7A9E7E;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 400ms ease, box-shadow 400ms ease;
}

.timeline-item.visible .timeline-node {
    animation: pulseGlow 3s ease-in-out infinite;
    animation-delay: 700ms;
}

.node-icon {
    width: 24px;
    height: 24px;
}

.node-seed { border-color: #C4AD8F; }
.node-sprout { border-color: #7A9E7E; }
.node-growth { border-color: #D4BE5E; }
.node-bloom { border-color: #C7637E; }

.timeline-label {
    font-family: 'Kode Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7A9E7E;
    display: block;
    margin-bottom: 0.4rem;
}

.timeline-item[data-stage="seed"] .timeline-label { color: #C4AD8F; }
.timeline-item[data-stage="sprout"] .timeline-label { color: #7A9E7E; }
.timeline-item[data-stage="growth"] .timeline-label { color: #D4BE5E; }
.timeline-item[data-stage="bloom"] .timeline-label { color: #C7637E; }

.timeline-content h3 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 26px);
    color: #E8DCC8;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.timeline-content p {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 17px);
    color: #C4AD8F;
    line-height: 1.7;
}

/* --- Values Section --- */
.values-section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(232, 220, 200, 0.04);
    border: 1px solid rgba(196, 173, 143, 0.12);
    border-radius: 3px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.34, 1.2, 0.64, 1), background 300ms ease, border-color 300ms ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 400ms ease;
}

.value-card[data-accent="#7A9E7E"]:hover::before { background: #7A9E7E; }
.value-card[data-accent="#C7637E"]:hover::before { background: #C7637E; }
.value-card[data-accent="#D4BE5E"]:hover::before { background: #D4BE5E; }

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    background: rgba(232, 220, 200, 0.08);
    border-color: rgba(196, 173, 143, 0.25);
}

.value-icon {
    margin-bottom: 1.2rem;
    display: inline-block;
}

.value-card h3 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 24px);
    color: #E8DCC8;
    margin-bottom: 0.5rem;
}

.value-korean {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #7A9E7E;
    margin-bottom: 1rem;
    opacity: 0.65;
    transition: opacity 300ms ease;
}

.value-card:hover .value-korean {
    opacity: 0.9;
}

.value-card p:not(.value-korean) {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 17px);
    color: #C4AD8F;
    line-height: 1.7;
}

/* --- Closing Section --- */
.closing-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
}

.closing-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms ease, transform 800ms ease;
}

.closing-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.closing-text {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 48px);
    color: #E8DCC8;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.closing-sub {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 22px);
    color: #C4AD8F;
    margin-bottom: 3rem;
}

.closing-mark {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #C4AD8F;
    letter-spacing: 0.15em;
    opacity: 0.5;
    transition: opacity 400ms ease;
}

.closing-mark:hover {
    opacity: 0.8;
}

.closing-dot {
    color: #7A9E7E;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline-left,
    .timeline-right {
        padding-right: 0;
        padding-left: 4rem;
        flex-direction: row;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        text-align: left;
    }

    .timeline-vine-track {
        left: 20px;
    }

    .timeline-node {
        left: 20px;
    }
}

@media (max-width: 600px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-title {
        flex-direction: column;
        align-items: center;
    }

    .feedback-garden,
    .growth-timeline,
    .values-section {
        padding: 4rem 1.2rem;
    }

    .closing-section {
        padding: 5rem 1.2rem 4rem;
    }

    .vine-svg {
        opacity: 0.15;
    }
}
