/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: 'Pangram Sans Rounded';
    src: url('fonts/PPPangramSansRounded-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Pangram Sans Rounded';
    src: url('fonts/PPPangramSansRounded-Medium.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Pangram Sans Rounded';
    src: url('fonts/PPPangramSansRounded-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Pangram Sans Rounded';
    src: url('fonts/PPPangramSansRounded-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Pangram Sans Rounded', -apple-system, BlinkMacSystemFont, sans-serif;

    --green: #1B8366;
    --green-light: #5D8F6A;
    --green-bright: #68D391;
    --mint: #E9FCED;
    --mint-soft: #f0faf3;
    --yellow-soft: #FAF0C8;
    --text: #2b2b2b;
    --text-light: #5A6B5E;
    --text-muted: #8a9b8e;
    --white: #ffffff;
    --bg: #f7fcf8;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --side-padding: clamp(24px, 5vw, 80px);
}

*, *::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);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ============================================
   GLOBAL REVEAL ANIMATION SYSTEM
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

.reveal-clip {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s var(--ease-out);
}
.reveal-clip.visible {
    clip-path: inset(0 0% 0 0);
}

/* ============================================
   FLOATING NAV
   ============================================ */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(27, 131, 102, 0.08);
}
.nav-logo img {
    height: 28px;
}
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.nav-links a:hover {
    color: var(--green);
}

@media (max-width: 768px) {
    .nav {
        padding: 10px 20px;
        gap: 16px;
    }
    .nav-links { display: none; }
}

/* ============================================
   SECTION: HERO — "The Entrance"
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px var(--side-padding) 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    pointer-events: none;
    animation: pulse-soft 6s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.35; }
}

.hero-paw {
    font-size: 2rem;
    margin-bottom: 24px;
    opacity: 0;
    animation: paw-appear 1s var(--ease-out) 0.3s forwards;
}

@keyframes paw-appear {
    from { opacity: 0; transform: scale(0.5) rotate(-20deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 0.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 0.7s forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--green);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 0.9s forwards;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 1.5s forwards;
}
.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--green-bright);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--green);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ============================================
   SECTION: REVEAL — "The Discovery"
   ============================================ */
.discovery {
    padding: 120px var(--side-padding);
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    max-width: 1200px;
    margin: 0 auto;
}

.discovery-visual {
    flex: 1;
    position: relative;
}

.discovery-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.discovery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discovery-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 131, 102, 0.1), transparent);
    border-radius: 24px;
}

.discovery-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(27, 131, 102, 0.3);
}

.discovery-content {
    flex: 1;
}

.discovery-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.discovery-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.discovery-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .discovery {
        flex-direction: column;
        padding: 80px var(--side-padding);
    }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   SECTION: JOURNEY — Horizontal Scroll Timeline
   Inspired by marjoballabani.me book-flip +
   nittobutsuryu.co.jp SVG illustrations
   ============================================ */
.journey {
    padding: 100px 0 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
}

.journey-header {
    text-align: center;
    padding: 0 var(--side-padding);
    margin-bottom: 60px;
}

/* Horizontal scroll track */
.journey-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SVG connecting path behind the cards */
.journey-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.journey-path-line {
    stroke: var(--green-bright);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2s var(--ease-out);
}

.journey-path-line.animated {
    stroke-dashoffset: 0;
}

.journey-track {
    display: flex;
    gap: 0;
    padding: 60px var(--side-padding) 80px;
    position: relative;
    z-index: 2;
}

.journey-card {
    flex: 0 0 33.333%;
    padding: 0 24px;
    position: relative;
}

.journey-card-inner {
    position: relative;
    padding: 48px 36px;
    border-radius: 24px;
    background: var(--bg);
    border: 1.5px solid rgba(27, 131, 102, 0.08);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s;
    overflow: hidden;
}

.journey-card-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 64px rgba(27, 131, 102, 0.12);
    border-color: var(--green-bright);
}

/* Animated SVG icon in each card */
.journey-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    position: relative;
}

.journey-icon svg {
    width: 100%;
    height: 100%;
}

.journey-icon .icon-path {
    stroke: var(--green);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.2s var(--ease-out);
}

.journey-card.visible .icon-path {
    stroke-dashoffset: 0;
}

.journey-icon .icon-fill {
    fill: var(--mint);
    opacity: 0;
    transition: opacity 0.8s var(--ease-out) 0.5s;
}

.journey-card.visible .icon-fill {
    opacity: 1;
}

.journey-step-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 8px;
}

.journey-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.journey-card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
}

/* Dot connector on the line */
.journey-dot {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px var(--green-bright);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.journey-card.visible .journey-dot {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

@media (max-width: 900px) {
    .journey-track {
        flex-direction: column;
        gap: 24px;
    }
    .journey-card {
        flex: none;
        width: 100%;
    }
    .journey-dot { display: none; }
    .journey-path { display: none; }
}

/* ============================================
   SECTION: PLATFORM — Illustrated Parallax World
   Floating SVG elements + mouse parallax
   ============================================ */
.platform {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.platform-world {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg,
        #f0faf3 0%,
        #e8f5f0 20%,
        #fdf8e8 50%,
        #fce4ec20 70%,
        #e8f0fe30 100%);
}

/* Floating illustrated elements — mouse-reactive */
.float-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-obj {
    position: absolute;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Individual floating objects with unique animations */
.float-obj svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
}

.float-obj--paw1 { top: 8%; left: 12%; }
.float-obj--paw2 { top: 65%; left: 5%; }
.float-obj--heart1 { top: 15%; right: 8%; }
.float-obj--heart2 { bottom: 25%; right: 15%; }
.float-obj--leaf1 { top: 40%; left: 3%; }
.float-obj--leaf2 { bottom: 10%; left: 35%; }
.float-obj--star1 { top: 5%; left: 55%; }
.float-obj--star2 { bottom: 15%; right: 5%; }
.float-obj--circle1 { top: 70%; left: 20%; }
.float-obj--circle2 { top: 25%; right: 30%; }
.float-obj--wave { bottom: 5%; left: 50%; }
.float-obj--dots { top: 50%; right: 3%; }

/* Idle floating animations */
.float-obj { animation: float-idle 6s ease-in-out infinite; }
.float-obj:nth-child(2) { animation-delay: -1s; animation-duration: 7s; }
.float-obj:nth-child(3) { animation-delay: -2s; animation-duration: 5s; }
.float-obj:nth-child(4) { animation-delay: -3s; animation-duration: 8s; }
.float-obj:nth-child(5) { animation-delay: -0.5s; animation-duration: 6.5s; }
.float-obj:nth-child(6) { animation-delay: -4s; animation-duration: 7.5s; }
.float-obj:nth-child(7) { animation-delay: -1.5s; animation-duration: 5.5s; }
.float-obj:nth-child(8) { animation-delay: -2.5s; animation-duration: 9s; }
.float-obj:nth-child(9) { animation-delay: -3.5s; animation-duration: 6s; }
.float-obj:nth-child(10) { animation-delay: -0.8s; animation-duration: 7s; }
.float-obj:nth-child(11) { animation-delay: -2s; animation-duration: 8.5s; }
.float-obj:nth-child(12) { animation-delay: -4.5s; animation-duration: 6s; }

@keyframes float-idle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(3deg); }
    75% { transform: translateY(8px) rotate(-2deg); }
}

/* Content over the floating world */
.platform-content {
    position: relative;
    z-index: 2;
    padding: 100px var(--side-padding);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-statement {
    position: relative;
}

.platform-statement-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}

.platform-statement h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.platform-statement h2 em {
    font-style: italic;
    color: var(--green);
}

.platform-statement > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Right side: feature pills */
.platform-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(27, 131, 102, 0.1);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.platform-pill:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
    border-color: var(--green-bright);
    box-shadow: 0 8px 32px rgba(27, 131, 102, 0.1);
}

.pill-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pill-icon--pink { background: #fce4ec; }
.pill-icon--blue { background: #e3f2fd; }
.pill-icon--yellow { background: #fff8e1; }
.pill-icon--green { background: var(--mint); }

.pill-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.pill-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px var(--side-padding);
    }
    .platform-world { min-height: auto; }
    .float-obj { opacity: 0.4; }
}

/* ============================================
   SECTION: IMPACT — Living Garden
   ============================================ */
.garden {
    position: relative;
    padding: 90px 40px 70px;
    background: linear-gradient(180deg, #f7fcf8 0%, #eef8f1 40%, #fdf8e8 100%);
    overflow: hidden;
}
.garden-header { text-align: center; margin-bottom: 70px; position: relative; z-index: 2; }
.garden-header h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 700; color: var(--text); margin-bottom: 10px; }
.garden-header h2 em { color: var(--green); font-style: italic; }
.garden-header p { font-size: 1rem; color: var(--text-light); }

.garden-scene {
    position: relative; max-width: 700px; margin: 0 auto;
    display: flex; justify-content: center; gap: clamp(60px, 10vw, 120px);
    align-items: flex-end; padding-bottom: 50px; z-index: 2;
}
.garden-scene::after {
    content: ''; position: absolute; bottom: 24px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, rgba(27,131,102,0.12) 30%, rgba(27,131,102,0.18) 50%, rgba(27,131,102,0.12) 70%, transparent 95%);
}

.plant { display: flex; flex-direction: column; align-items: center; }

/* Bloom circle */
.bloom-circle {
    position: relative; width: 180px; height: 180px;
    opacity: 0; transform: scale(0.4);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.plant.grown .bloom-circle { opacity: 1; transform: scale(1); }
.plant:nth-child(2) .bloom-circle { width: 210px; height: 210px; }

/* Conic gradient spinning ring */
@property --ring-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.bloom-ring {
    position: absolute; inset: 0; border-radius: 50%; padding: 3px;
    background: conic-gradient(from var(--ring-angle), var(--green-bright), rgba(104,211,145,0.1), rgba(255,213,79,0.2), rgba(244,143,177,0.15), rgba(129,212,250,0.1), var(--green-bright));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: ring-rotate 8s linear infinite;
}
@keyframes ring-rotate { to { --ring-angle: 360deg; } }

/* Dashed orbit */
.bloom-orbit { position: absolute; inset: -12px; border-radius: 50%; border: 1.5px dashed rgba(27,131,102,0.1); animation: orbit-spin 30s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.orbit-dot { position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 8px rgba(104,211,145,0.5); }

/* Inner circle */
.bloom-inner-circle {
    position: absolute; inset: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; box-shadow: 0 8px 32px rgba(27,131,102,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.plant:hover .bloom-inner-circle { box-shadow: 0 12px 48px rgba(27,131,102,0.12); transform: scale(1.04); }

/* Petals */
.petal-deco { position: absolute; border-radius: 50%; opacity: 0; transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1); filter: blur(1px); }
.plant.grown .petal-deco { opacity: 1; }
.plant:nth-child(1) .petal-deco:nth-child(1) { width: 30px; height: 30px; background: rgba(104,211,145,0.2); top: -8px; left: 20%; transition-delay: 0.6s; }
.plant:nth-child(1) .petal-deco:nth-child(2) { width: 22px; height: 22px; background: rgba(255,213,79,0.2); top: 15%; right: -5px; transition-delay: 0.8s; }
.plant:nth-child(1) .petal-deco:nth-child(3) { width: 18px; height: 18px; background: rgba(244,143,177,0.15); bottom: 20%; left: -8px; transition-delay: 1s; }
.plant:nth-child(2) .petal-deco:nth-child(1) { width: 35px; height: 35px; background: rgba(255,213,79,0.18); top: -12px; right: 15%; transition-delay: 0.7s; }
.plant:nth-child(2) .petal-deco:nth-child(2) { width: 25px; height: 25px; background: rgba(244,143,177,0.15); bottom: 10%; right: -10px; transition-delay: 0.9s; }
.plant:nth-child(2) .petal-deco:nth-child(3) { width: 20px; height: 20px; background: rgba(129,212,250,0.15); top: 30%; left: -10px; transition-delay: 1.1s; }

.bloom-emoji { font-size: 1.6rem; margin-bottom: 4px; }
.plant:hover .bloom-emoji { animation: emoji-dance 0.6s ease-in-out; }
@keyframes emoji-dance { 0%,100%{transform:rotate(0) scale(1)} 25%{transform:rotate(-12deg) scale(1.15)} 75%{transform:rotate(12deg) scale(1.15)} }

.bloom-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--green); line-height: 1; }
.plant:nth-child(2) .bloom-number { font-size: 3.2rem; }
.bloom-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-top: 2px; }

/* Stem */
.stem-wrap { position: relative; width: 3px; }
.stem { width: 2.5px; height: var(--stem-h, 80px); background: linear-gradient(to top, var(--green-bright), rgba(104,211,145,0.25)); border-radius: 2px; transform-origin: bottom; transform: scaleY(0); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.plant.grown .stem { transform: scaleY(1); }

.leaf { position: absolute; width: 20px; height: 12px; background: rgba(104,211,145,0.25); border-radius: 50% 0; opacity: 0; transform: scale(0) rotate(-20deg); transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.leaf.right { right: -18px; border-radius: 0 50%; transform: scale(0) rotate(20deg); }
.plant.grown .leaf { opacity: 1; transform: scale(1) rotate(0deg); }
.leaf:nth-child(2) { top: 25%; transition-delay: 0.6s; }
.leaf:nth-child(3) { top: 55%; transition-delay: 0.8s; }
.leaf:nth-child(4) { top: 40%; transition-delay: 0.7s; }

.roots { display: flex; gap: 6px; margin-top: 8px; padding-bottom: 4px; }
.root-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(27,131,102,0.18); animation: root-glow 2.5s ease-in-out infinite; }
.root-dot:nth-child(2) { animation-delay: 0.4s; width: 5px; height: 5px; }
.root-dot:nth-child(3) { animation-delay: 0.8s; }
@keyframes root-glow { 0%,100%{opacity:0.3;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }

/* Pollen particles */
.pollen-field { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.pollen { position: absolute; border-radius: 50%; animation: pollen-drift linear infinite; }
@keyframes pollen-drift { 0%{transform:translate(0,0);opacity:0} 15%{opacity:0.7} 85%{opacity:0.7} 100%{transform:translate(var(--px),var(--py));opacity:0} }

/* Marquee */
.garden-marquee-wrap { overflow: hidden; padding: 28px 0 0; margin-top: 30px; position: relative; z-index: 2; }
.garden-marquee { display: flex; gap: 32px; animation: gm-scroll 20s linear infinite; width: max-content; }
.garden-marquee span { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; white-space: nowrap; color: var(--green); opacity: 0.25; letter-spacing: 0.05em; text-transform: uppercase; }
.garden-marquee .sep { color: var(--green-bright); opacity: 0.3; }
@keyframes gm-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

@media (max-width: 768px) {
    .garden-scene { flex-direction: column; align-items: center; gap: 50px; }
    .garden-scene::after { display: none; }
    .stem-wrap { display: none; }
    .bloom-circle { width: 160px !important; height: 160px !important; }
}

/* ============================================
   QR BREAK — "Take Part" interlude
   ============================================ */
.qr-break {
    padding: 60px var(--side-padding);
    max-width: 1200px;
    margin: 0 auto;
}

.qr-break-card {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 56px 64px;
    background: var(--white);
    border-radius: 28px;
    border: 1.5px solid rgba(27, 131, 102, 0.08);
    box-shadow: 0 4px 24px rgba(27, 131, 102, 0.04);
    transition: all 0.4s var(--ease-out);
}

.qr-break-card:hover {
    border-color: var(--green-bright);
    box-shadow: 0 8px 40px rgba(27, 131, 102, 0.08);
    transform: translateY(-2px);
}

.qr-frame {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out);
}

.qr-break-card:hover .qr-frame {
    transform: rotate(3deg) scale(1.05);
}

.qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-break-text {
    flex: 1;
}

.qr-break-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px;
}
.qr-break-text h3 em { color: var(--green); font-style: italic; }

.qr-break-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.qr-break-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    padding: 8px 18px;
    background: var(--mint);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}
.qr-break-link:hover {
    background: var(--green);
    color: white;
}

@media (max-width: 768px) {
    .qr-break-card { flex-direction: column; text-align: center; padding: 28px 24px; }
    .qr-frame { width: 90px; height: 90px; }
}

/* ============================================
   SECTION: EDITORIAL — BEAMS-style Collage
   ============================================ */
.editorial {
    padding: 80px 0 0;
    overflow: hidden;
}

/* Feature block — full width editorial row */
.editorial-feature {
    position: relative;
    padding: 60px 0;
    margin-bottom: 20px;
}

.editorial-feature:nth-child(odd) {
    background: #f5f0eb;
}
.editorial-feature:nth-child(even) {
    background: var(--mint-soft);
}

/* Big editorial title */
.editorial-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 var(--side-padding);
    margin-bottom: 32px;
}

.editorial-stamp {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: stamp-rotate 20s linear infinite;
}

@keyframes stamp-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.editorial-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.02em;
}
.editorial-title .accent {
    color: var(--green);
}

/* Photo collage strip */
.collage-strip {
    display: flex;
    gap: 6px;
    overflow: hidden;
    position: relative;
}

.collage-img {
    flex: 0 0 30%;
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.collage-img:first-child { flex: 0 0 25%; }
.collage-img:nth-child(2) { flex: 0 0 35%; }
.collage-img:nth-child(3) { flex: 0 0 25%; }
.collage-img:last-child { flex: 0 0 15%; }

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.collage-img:hover img {
    transform: scale(1.06);
}

/* Speech bubble overlay */
.speech-bubble {
    position: absolute;
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: 20px;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    max-width: 280px;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Triangle pointer */
.speech-bubble::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid var(--white);
}
.speech-bubble::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 29px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 13px solid var(--text);
}

.speech-bubble.bottom::after {
    top: auto;
    bottom: -12px;
    border-bottom: none;
    border-top: 12px solid var(--white);
}
.speech-bubble.bottom::before {
    top: auto;
    bottom: -15px;
    border-bottom: none;
    border-top: 13px solid var(--text);
}

/* Feature label (like BEAMS: Feature 1 · POST: date) */
.feature-label {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 1.5px solid var(--text);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.feature-tag .num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

@media (max-width: 768px) {
    .collage-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px;
        gap: 8px;
    }
    .collage-img {
        flex: 0 0 75vw !important;
        height: 300px;
        scroll-snap-align: start;
        border-radius: 16px;
    }
    .editorial-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .speech-bubble { display: none; }
    .feature-label { bottom: 12px; right: 12px; }
}

/* ============================================
   SECTION: CTA — "Be Part of It"
   ============================================ */
.cta-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px var(--side-padding);
}

.cta-card {
    position: relative;
    padding: 80px 60px;
    border-radius: 32px;
    background: var(--green);
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Decorative animated shapes inside the card */
.cta-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}
.cta-deco:nth-child(1) { width: 300px; height: 300px; border: 2px solid white; top: -80px; left: -60px; animation: cta-spin 25s linear infinite; }
.cta-deco:nth-child(2) { width: 200px; height: 200px; border: 1.5px dashed white; bottom: -50px; right: -40px; animation: cta-spin 35s linear infinite reverse; }
.cta-deco:nth-child(3) { width: 100px; height: 100px; background: white; top: 20%; right: 10%; opacity: 0.04; animation: cta-float 8s ease-in-out infinite; }
.cta-deco:nth-child(4) { width: 60px; height: 60px; background: white; bottom: 25%; left: 12%; opacity: 0.05; animation: cta-float 6s ease-in-out infinite reverse; }

@keyframes cta-spin { to { transform: rotate(360deg); } }
@keyframes cta-float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-20px); } }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.cta-title em {
    font-style: italic;
    opacity: 0.85;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: white;
    color: var(--green);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
}

/* ============================================
   SECTION: CONTACT — "We're Listening"
   ============================================ */
.contact {
    padding: 100px var(--side-padding);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap;
    color: var(--green);
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-quote {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    border-left: 2px solid var(--green-bright);
    padding-left: 16px;
    margin-bottom: 32px;
}

.contact-details {
    font-size: 0.9rem;
    color: var(--text-light);
}
.contact-details a {
    color: var(--green);
    text-decoration: none;
}
.contact-details a:hover {
    text-decoration: underline;
}

/* Selection color */
::selection {
    background: var(--mint);
    color: var(--green);
}
::-moz-selection {
    background: var(--mint);
    color: var(--green);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(27, 131, 102, 0.15);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 131, 102, 0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Custom validation — soft, modern, auto-dismiss */
.form-group .field-error {
    font-size: 0.75rem;
    color: var(--green);
    margin-top: 8px;
    padding: 8px 14px;
    background: var(--mint);
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 6px;
    animation: error-in 0.4s var(--ease-out);
}

.form-group.has-error .field-error { display: flex; }
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #ffc475;
    box-shadow: 0 0 0 3px rgba(255, 196, 117, 0.15);
}

@keyframes error-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group.error-out .field-error {
    animation: error-out 0.3s var(--ease-out) forwards;
}
@keyframes error-out {
    to { opacity: 0; transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px var(--side-padding);
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 44px var(--side-padding) 44px;
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
}

.footer-logo img {
    height: 44px;
    margin-bottom: 16px;
}

/* Interactive heart button */
.footer-heart-wrap {
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.footer-heart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(27, 131, 102, 0.08);
    background: var(--bg);
    transition: all 0.3s var(--ease-out);
    user-select: none;
    -webkit-user-select: none;
    position: relative;
}

.footer-heart:hover {
    border-color: var(--green-bright);
    color: var(--green);
}

.footer-heart:active {
    transform: scale(0.95);
}

.footer-heart-icon {
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s;
}

.footer-heart:active .footer-heart-icon {
    transform: scale(1.3);
}

/* Flying hearts */
.flying-heart {
    position: absolute;
    pointer-events: none;
    font-size: 1.2rem;
    animation: heart-fly 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 10;
}

@keyframes heart-fly {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translate(var(--hx), var(--hy1)) scale(1.2) rotate(var(--hr));
    }
    100% {
        opacity: 0;
        transform: translate(var(--hx2), var(--hy2)) scale(0.3) rotate(var(--hr2));
    }
}

/* Heart counter */
.heart-counter {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--green-bright);
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--green);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-counter.show { opacity: 1; }

.footer-made {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}
.footer-text a {
    color: var(--green);
    text-decoration: none;
}

/* ============================================
   SVG DECORATIONS
   ============================================ */
.paw-divider {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 40px 0;
    opacity: 0.15;
}
.paw-divider svg {
    width: 20px;
    height: 20px;
    fill: var(--green);
}

/* ============================================
   PROGRESS INDICATOR (side)
   ============================================ */
.progress-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}
.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    opacity: 0.3;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
}
.progress-dot.active {
    opacity: 1;
    transform: scale(1.4);
    background: var(--green);
}

@media (max-width: 768px) {
    .progress-dots { display: none; }
}

/* ============================================
   GRAIN TEXTURE OVERLAY
   ============================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ============================================
   CURSOR SPARKLES — magic trail
   ============================================ */
.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    animation: sparkle-fade 0.8s ease-out forwards;
}

@keyframes sparkle-fade {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(var(--sx), var(--sy));
    }
}

/* Star-shaped sparkles */
.sparkle-star {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    animation: star-twinkle 1s ease-out forwards;
}

.sparkle-star::before {
    content: '✦';
    font-size: var(--star-size, 10px);
    color: var(--star-color);
    display: block;
}

@keyframes star-twinkle {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg) translate(0, 0);
    }
    30% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg) translate(var(--sx), var(--sy));
    }
    100% {
        opacity: 0;
        transform: scale(0.3) rotate(180deg) translate(calc(var(--sx) * 2), calc(var(--sy) * 2));
    }
}

@media (max-width: 768px) {
    .sparkle, .sparkle-star { display: none; }
}

