:root {
    --cream: #FAF5EA;
    --text-main: #3A3226;
    --text-soft: #6B5F4A;
    --text-light: #8B7E6A;
    --accent-brown: #8B6F47;
    --accent-deep: #6B5436;
    --sprout-deep: #5C6B45;
    --sprout-light: #9BAA7E;
    --line-color: #D4C9B0;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    --font-serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
    --font-latin: Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}

img,
svg {
    max-width: 100%;
}

body {
    background: var(--cream);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -ms-overflow-style: none;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

main,
footer {
    position: relative;
    z-index: 2;
}

@supports (overflow-x: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

/* 2. Ambient background effects */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(232, 223, 201, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(232, 223, 201, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(139, 111, 71, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 111, 71, 0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.32;
    pointer-events: none;
    z-index: -1;
}

.mouse-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(212, 165, 116, 0.16) 0%,
    rgba(168, 133, 96, 0.08) 28%,
    rgba(122, 139, 92, 0.045) 48%,
    transparent 72%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 0.3s ease;
    will-change: transform;
    contain: strict;
}

.mouse-glow.is-visible {
    opacity: 0.9;
}

.spore {
    position: fixed;
    border-radius: 50%;
    background: rgba(168, 133, 96, 0.3);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    animation: spore-float 20s linear infinite;
}

.spore-1 {
    left: 10%;
    width: 4px;
    height: 4px;
    animation-delay: 0s;
}

.spore-2 {
    left: 30%;
    width: 3px;
    height: 3px;
    animation-delay: 3s;
}

.spore-3 {
    left: 60%;
    width: 5px;
    height: 5px;
    animation-delay: 6s;
}

.spore-4 {
    left: 80%;
    width: 3px;
    height: 3px;
    animation-delay: 9s;
}

.spore-5 {
    left: 50%;
    width: 4px;
    height: 4px;
    animation-delay: 12s;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

@keyframes spore-float {
    0% {
        transform: translate(0, 100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translate(20px, 80vh) scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translate(50px, -20vh) scale(0.5);
        opacity: 0;
    }
}

/* 3. Header and navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(250, 245, 234, 0.92) 60%, rgba(250, 245, 234, 0));
    transition: box-shadow 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
    box-shadow: 0 1px 20px rgba(139, 111, 71, 0.06);
    padding: 16px 56px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-main);
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.82rem;
    color: var(--text-soft);
    letter-spacing: 0.08em;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: var(--accent-brown);
}

/* 4. Shared section primitives */
section {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 110px 56px;
    position: relative;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.section-quote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-brown);
    margin-bottom: 42px;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.section-text {
    font-size: 0.98rem;
    color: var(--text-soft);
    line-height: 2.1;
    max-width: 520px;
}

.section-text p + p {
    margin-top: 20px;
}

.latin-em {
    position: relative;
    display: inline-block;
    padding: 0 0.16em;
    color: var(--accent-deep);
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 500;
    isolation: isolate;
}

.latin-em::before {
    content: '';
    position: absolute;
    inset: 0.16em -0.18em 0.08em -0.16em;
    background: rgba(155, 170, 126, 0.26);
    border-radius: 54% 46% 58% 42% / 46% 60% 40% 54%;
    transform: rotate(-2deg);
    pointer-events: none;
    z-index: -1;
}

.hero-em {
    color: var(--accent-deep);
}

.hero-em::before {
    inset: 0.12em -0.22em 0.04em -0.12em;
    background: rgba(232, 223, 201, 0.72);
    border-radius: 37% 63% 43% 57% / 61% 38% 62% 39%;
    transform: rotate(1.8deg);
    transform-origin: center 58%;
    will-change: border-radius, transform;
    animation: hero-em-morph 11s linear infinite;
}

@keyframes hero-em-morph {
    0%, 100% {
        border-radius: 30% 70% 36% 64% / 70% 30% 68% 32%;
        transform: rotate(1.7deg) scale(0.97, 0.95);
    }
    20% {
        border-radius: 58% 42% 68% 32% / 42% 62% 38% 58%;
        transform: rotate(1deg) scale(1.055, 0.99);
    }
    40% {
        border-radius: 72% 28% 61% 39% / 34% 71% 29% 66%;
        transform: rotate(-1.6deg) scale(1.035, 1.06);
    }
    60% {
        border-radius: 42% 58% 27% 73% / 69% 35% 65% 31%;
        transform: rotate(-1deg) scale(0.955, 1.075);
    }
    80% {
        border-radius: 25% 75% 48% 52% / 76% 48% 52% 24%;
        transform: rotate(1.9deg) scale(0.96, 1.025);
    }
}

/* 5. Page sections */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 56px 80px;
    position: relative;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 38px;
    letter-spacing: 0.08em;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 540px;
    line-height: 2.1;
    margin-bottom: 50px;
}

.hero-illustration {
    width: min(340px, 100%);
    aspect-ratio: 17 / 20;
    height: auto;
    position: relative;
}

.floating-seed {
    position: absolute;
    opacity: 0;
    animation: float-down 14s linear infinite;
}

.floating-seed:nth-child(1) {
    left: 12%;
    top: 15%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.floating-seed:nth-child(2) {
    left: 78%;
    top: 22%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.floating-seed:nth-child(3) {
    left: 25%;
    top: 60%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.floating-seed:nth-child(4) {
    left: 88%;
    top: 55%;
    animation-delay: 9s;
    animation-duration: 17s;
}

.floating-seed:nth-child(5) {
    left: 45%;
    top: 80%;
    animation-delay: 4s;
    animation-duration: 19s;
}

@keyframes float-down {
    0% {
        transform: translate(0, -40px) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.55;
    }
    50% {
        transform: translate(25px, 40px) rotate(180deg);
        opacity: 0.55;
    }
    92% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, 100px) rotate(360deg);
        opacity: 0;
    }
}

.intention,
.practice,
.about {
    display: grid;
    gap: 80px;
    align-items: center;
}

.intention {
    grid-template-columns: 1.15fr 1fr;
}

.practice,
.about {
    grid-template-columns: 1fr 1.15fr;
}

.intention-illust,
.practice-illust {
    width: 100%;
    max-width: 460px;
}

.intention-illust {
    margin-left: auto;
}

.practice-illust {
    margin-right: auto;
}

.principle {
    text-align: center;
    position: relative;
    padding: 120px 56px 60px;
    max-width: 1200px;
    overflow: visible;
}

.principle-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.principle .section-text {
    margin: 0 auto;
    max-width: 600px;
    font-size: 1rem;
}

.principle-roots-section {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 0;
    overflow: visible;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
}


.principle-roots-section svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: 100%;
    overflow: visible;
    clip-path: polygon(
            1% 4%,
            14% 0,
            29% 3%,
            43% 1%,
            58% 4%,
            74% 0,
            91% 3%,
            100% 10%,
            98% 34%,
            100% 58%,
            96% 87%,
            84% 98%,
            66% 94%,
            48% 100%,
            31% 95%,
            12% 100%,
            0 90%,
            3% 62%,
            0 31%
    );
}

.principle-soil-fill {
    fill: #E8DFC9;
    opacity: 0.25;
}

.principle-ground-line,
.principle-root,
.principle-stem,
.principle-branch-above {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.principle-ground-line {
    stroke: #8B6F47;
    stroke-width: 1.7;
    opacity: 0.54;
}

.principle-root {
    stroke: #6B5436;
    opacity: 0.54;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.principle-root.root-strong {
    stroke-width: 2.8;
}

.principle-root.root-medium {
    stroke-width: 2.05;
}

.principle-root.root-fine {
    stroke-width: 1.35;
    opacity: 0.46;
}

.principle-root.root-hair {
    stroke-width: 0.9;
    opacity: 0.39;
}

.principle-root.root-thread {
    stroke-width: 0.62;
    opacity: 0.32;
}

.principle-stem,
.principle-branch-above,
.principle-broken-base,
.principle-fallen-stem {
    stroke: #5C6B45;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.principle-stem,
.principle-branch-above {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.principle-broken-base,
.principle-fallen-stem {
    opacity: 0;
}

.principle-grass .principle-stem {
    stroke-width: 1.55;
}

.principle-branch-above {
    stroke-width: 1.45;
}

.principle-leaf {
    fill: #7A8B5C;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.principle-blossom {
    fill: #C9826D;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.principle-blossom circle {
    fill: #D4AD59;
}

.principle-healthy-growth {
    opacity: 0;
}

.principle-new-stem {
    fill: none;
    stroke: #5C6B45;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.principle-new-leaf,
.principle-new-bud {
    fill: #8FA06D;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.principle-break-part,
.principle-plant-body {
    transform-box: fill-box;
}

.principle-break-part {
    transform-box: view-box;
    transform-origin: 549px 45px;
    --break-drop-x: 24px;
    --break-drop-y: 44px;
    --break-rotate: 90deg;
}

.principle-flower .principle-break-part {
    --break-drop-x: 14px;
}

.principle-tree .principle-break-part {
    transform-origin: 850px 43px;
    --break-drop-x: 20px;
    --break-drop-y: 45px;
}

.principle-grass .principle-plant-body {
    transform-box: view-box;
    transform-origin: 250px 88px;
}

.principle.is-growing .principle-stem {
    animation: stroke-line-grow 2.1s cubic-bezier(0.36, 0, 0.2, 1) 0.25s forwards;
}

.principle.is-growing .principle-branch-above {
    animation: stroke-line-grow 1.35s cubic-bezier(0.36, 0, 0.2, 1) 1.15s forwards;
}

.principle.is-growing .principle-leaf {
    animation: principle-form-open 1.25s ease-out 1.35s forwards;
}

.principle.is-growing .principle-break-part .principle-leaf {
    animation-delay: 1.95s;
}

.principle.is-growing .principle-blossom {
    animation: principle-form-open 1.25s ease-out 2.1s forwards;
}

.principle.is-growing .principle-root-main {
    animation: principle-root-start 2.85s cubic-bezier(0.35, 0, 0.2, 1) 0.35s forwards;
}

.principle.is-growing .root-side-early {
    animation: stroke-line-grow 1.85s cubic-bezier(0.35, 0, 0.2, 1) 1.45s forwards;
}

.principle.is-growing .root-side-early:nth-of-type(3) {
    animation-delay: 1.75s;
}

.principle.is-growing .principle-life.is-healthy .principle-root-main {
    animation: principle-root-start 2.85s cubic-bezier(0.35, 0, 0.2, 1) 0.35s forwards,
    principle-root-continue 3.6s cubic-bezier(0.35, 0, 0.2, 1) 3.15s forwards;
}

.principle.is-growing .principle-life.is-healthy .root-side-late {
    animation: stroke-line-grow 2.2s cubic-bezier(0.35, 0, 0.2, 1) 3.55s forwards;
}

.principle.is-growing .principle-life.is-healthy .root-side-late:nth-of-type(5) {
    animation-delay: 3.8s;
}

.principle.is-growing .principle-life.is-healthy .root-side-late:nth-of-type(6) {
    animation-delay: 4.05s;
}

.principle.is-growing .principle-life.is-healthy .root-side-late:nth-of-type(n+7) {
    animation-delay: 4.3s;
}

.principle.is-growing .principle-life.is-healthy .principle-healthy-growth {
    animation: principle-new-growth-show 0.01s linear 3.65s forwards;
}

.principle.is-growing .principle-life.is-healthy .principle-new-stem {
    animation: stroke-line-grow 2.5s cubic-bezier(0.3, 0.65, 0.25, 1) 3.7s forwards;
}

.principle.is-growing .principle-life.is-healthy .principle-new-stem:nth-of-type(2) {
    animation-delay: 4.05s;
}

.principle.is-growing .principle-life.is-healthy .principle-new-stem:nth-of-type(3) {
    animation-delay: 4.35s;
}

.principle.is-growing .principle-life.is-healthy .principle-new-leaf,
.principle.is-growing .principle-life.is-healthy .principle-new-bud {
    animation: principle-form-open 1.15s ease-out 5.9s forwards;
}

.principle.is-growing .principle-flower.is-healthy .principle-new-leaf:nth-of-type(4) {
    animation-delay: 6.15s;
}

.principle.is-growing .principle-flower.is-healthy .principle-new-bud:nth-of-type(5) {
    animation-delay: 6.4s;
}

.principle.is-growing .principle-tree.is-healthy .principle-new-leaf:nth-of-type(4) {
    animation-delay: 6.1s;
}

.principle.is-growing .principle-tree.is-healthy .principle-new-leaf:nth-of-type(5) {
    animation-delay: 6.4s;
}

.principle.is-growing .principle-tree.is-healthy .principle-new-leaf:nth-of-type(6) {
    animation-delay: 6.7s;
}

.principle.is-growing .principle-life.is-wilted .principle-plant-body {
    animation: principle-wilt 2.3s ease-in-out 3.55s forwards;
}

.principle.is-growing .principle-life.is-broken .principle-break-part {
    animation: principle-break-fall 2.1s cubic-bezier(0.35, 0, 0.45, 1) 3.55s forwards;
}

.principle.is-growing .principle-life.is-broken .principle-main-shoot {
    animation: stroke-line-grow 2.1s cubic-bezier(0.36, 0, 0.2, 1) 0.25s forwards,
    principle-hide-whole-shoot 0.01s linear 3.55s forwards;
}

.principle.is-growing .principle-life.is-broken .principle-broken-base,
.principle.is-growing .principle-life.is-broken .principle-fallen-stem {
    animation: principle-show-broken-stem 0.01s linear 3.55s forwards;
}

.principle.is-growing .principle-grass.is-broken .principle-plant-body {
    animation: principle-grass-lodge 2.2s cubic-bezier(0.35, 0, 0.45, 1) 3.55s forwards;
}

.principle.is-finished .principle-stem,
.principle.is-finished .principle-branch-above,
.principle.is-finished .root-side-early,
.principle.is-finished .principle-life.is-healthy .principle-root-main,
.principle.is-finished .principle-life.is-healthy .root-side-late,
.principle.is-finished .principle-life.is-healthy .principle-new-stem {
    stroke-dashoffset: 0;
}

.principle.is-finished .principle-life:not(.is-healthy) .principle-root-main {
    stroke-dashoffset: 0.28;
}

.principle.is-finished .principle-leaf,
.principle.is-finished .principle-blossom,
.principle.is-finished .principle-life.is-healthy .principle-new-leaf,
.principle.is-finished .principle-life.is-healthy .principle-new-bud,
.principle.is-finished .principle-life.is-healthy .principle-healthy-growth {
    opacity: 0.86;
}

.principle.is-finished .principle-life.is-wilted .principle-plant-body {
    opacity: 0.5;
    filter: sepia(0.62) saturate(0.45);
    transform: rotate(7deg) translateY(3px);
}

.principle.is-finished .principle-life.is-broken .principle-break-part {
    opacity: 0.66;
    transform: translate3d(var(--break-drop-x), var(--break-drop-y), 0) rotate(var(--break-rotate));
}

.principle.is-finished .principle-life.is-broken .principle-main-shoot {
    opacity: 0;
}

.principle.is-finished .principle-life.is-broken .principle-broken-base,
.principle.is-finished .principle-life.is-broken .principle-fallen-stem {
    opacity: 1;
}

.principle.is-finished .principle-grass.is-broken .principle-plant-body {
    opacity: 0.38;
    filter: sepia(0.28) saturate(0.38);
    transform: translate3d(2px, 1px, 0) rotate(88deg) scaleY(0.92);
}

@keyframes stroke-line-grow {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes principle-root-start {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0.28;
    }
}

@keyframes principle-root-continue {
    from {
        stroke-dashoffset: 0.28;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes principle-hide-whole-shoot {
    to {
        opacity: 0;
    }
}

@keyframes principle-show-broken-stem {
    to {
        opacity: 1;
    }
}

@keyframes principle-new-growth-show {
    to {
        opacity: 1;
    }
}

@keyframes principle-form-open {
    from {
        opacity: 0;
        transform: scale(0.12) rotate(-4deg);
    }
    to {
        opacity: 0.86;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes principle-wilt {
    0%, 18% {
        opacity: 1;
        filter: none;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0.5;
        filter: sepia(0.62) saturate(0.45);
        transform: rotate(7deg) translateY(3px);
    }
}

@keyframes principle-break-fall {
    0%, 18% {
        opacity: 1;
        transform: none;
    }
    38% {
        opacity: 0.92;
        transform: translate3d(2px, 2px, 0) rotate(8deg);
    }
    100% {
        opacity: 0.66;
        transform: translate3d(var(--break-drop-x), var(--break-drop-y), 0) rotate(var(--break-rotate));
    }
}

@keyframes principle-grass-lodge {
    0%, 18% {
        opacity: 1;
        filter: none;
        transform: translate3d(0, 0, 0) rotate(0deg) scaleY(1);
    }
    52% {
        opacity: 0.72;
        filter: sepia(0.12) saturate(0.72);
        transform: translate3d(1px, 1px, 0) rotate(42deg) scaleY(0.96);
    }
    100% {
        opacity: 0.38;
        filter: sepia(0.28) saturate(0.38);
        transform: translate3d(2px, 1px, 0) rotate(88deg) scaleY(0.92);
    }
}

.planted {
    max-width: 880px;
}

.planted-header {
    text-align: center;
    margin-bottom: 72px;
}

.planted-intro {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 12px;
    font-family: var(--font-latin);
    font-style: italic;
    letter-spacing: 0.05em;
}

.project {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 0;
    position: relative;
    transition: none;
}

.project-content {
    min-width: 0;
}

.project-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: none;
}

.project-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: none;
}

.project-name {
    font-family: var(--font-latin);
    font-size: 1.45rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: none;
}

.project-desc {
    color: var(--text-soft);
    line-height: 1.9;
    font-size: 0.95rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-brown);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-latin);
    font-style: italic;
    letter-spacing: 0.05em;
    transition: none;
    white-space: nowrap;
}

.planted-footer {
    margin-top: 56px;
    padding-top: 36px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    font-family: var(--font-latin);
    text-align: center;
    line-height: 1.9;
    letter-spacing: 0.03em;
    position: relative;
}

.planted-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--line-color);
}

.about-illust {
    width: 100%;
    max-width: 620px;
}

.about-illust .about-land-svg {
    clip-path: none;
    overflow: visible;
}

.about-soil-shadow {
    fill: rgba(139, 111, 71, 0.08);
}

.about-soil {
    fill: #F2EAD5;
    opacity: 0.72;
}

.about-ground-line,
.about-soil-marks path,
.about-growth-line,
.about-sun-ray,
.about-rain-drop,
.about-weather-wind path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-ground-line {
    stroke: #8B6F47;
    stroke-width: 1.55;
    opacity: 0.56;
}

.about-soil-marks path {
    stroke: #8B6F47;
    stroke-width: 0.85;
    opacity: 0.13;
}

.about-growth-line {
    stroke: #5C6B45;
    stroke-width: 2;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.about-branch-line {
    stroke-width: 1.45;
}

.about-tree-trunk {
    stroke-width: 2.5;
}

.about-growth-form {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.about-leaf {
    fill: #7A8B5C;
}

.about-plant-flower .about-leaf:nth-of-type(even),
.about-plant-tree .about-leaf:nth-of-type(even) {
    fill: #8FA06D;
}

.about-blossom path {
    fill: #C9826D;
}

.about-blossom circle {
    fill: #D4AD59;
}

.about-plant {
    transform-box: view-box;
    transform-origin: var(--about-plant-origin);
}

.about-plant-grass {
    --about-grow-delay: 0.25s;
    --about-weather-delay: 0s;
    --about-plant-origin: 102px 273px;
    --about-wind-angle: 7deg;
    --about-counter-angle: -2deg;
    --about-rain-angle: 2deg;
}

.about-plant-flower {
    --about-grow-delay: 0.9s;
    --about-weather-delay: 0.22s;
    --about-plant-origin: 316px 272px;
    --about-wind-angle: 4.6deg;
    --about-counter-angle: -1.2deg;
    --about-rain-angle: -1.4deg;
}

.about-plant-tree {
    --about-grow-delay: 1.55s;
    --about-weather-delay: 0.44s;
    --about-plant-origin: 525px 272px;
    --about-wind-angle: 3.2deg;
    --about-counter-angle: -0.8deg;
    --about-rain-angle: 1deg;
}

.about-illust.is-growing .about-main-line {
    animation: stroke-line-grow 2.35s cubic-bezier(0.35, 0, 0.2, 1) var(--about-grow-delay) forwards;
}

.about-illust.is-growing .about-branch-line {
    animation: stroke-line-grow 1.35s cubic-bezier(0.35, 0, 0.2, 1) calc(var(--about-grow-delay) + 1.05s) forwards;
}

.about-illust.is-growing .about-growth-form {
    animation: about-form-open 1.15s ease-out calc(var(--about-grow-delay) + 1.5s) forwards;
}

.about-illust.is-growing .about-form-late {
    animation-delay: calc(var(--about-grow-delay) + 1.95s);
}

.about-illust.is-finished .about-growth-line {
    stroke-dashoffset: 0;
}

.about-illust.is-finished .about-growth-form {
    opacity: 0.88;
    transform: none;
}

.about-weather-sun,
.about-weather-rain,
.about-weather-wind,
.about-wet-soil {
    pointer-events: none;
}

.about-weather-sun {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.about-sun-disc {
    fill: #D4AD59;
    opacity: 0.34;
}

.about-sun-ray {
    stroke: #D4AD59;
    stroke-width: 1.2;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.about-rain-cloud {
    fill: #DDE1D8;
    stroke: #899482;
    stroke-width: 0.9;
    opacity: 0;
}

.about-rain-drop {
    stroke: #7D9FB1;
    stroke-width: 1.25;
    opacity: 0;
    transform-box: view-box;
}

.about-wet-soil {
    fill: #8B6F47;
    opacity: 0;
}

.about-weather-wind path {
    stroke: #8FA06D;
    stroke-width: 1;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
}

.about-illust.weather-sun .about-weather-sun {
    animation: about-sun-arrive 2.6s ease-out forwards;
}

.about-illust.weather-sun .about-sun-ray {
    animation: stroke-line-grow 1.8s ease-out 0.35s forwards;
}

.about-illust.weather-sun .about-plant {
    animation: about-sun-response 2.8s ease-in-out var(--about-weather-delay) forwards;
}

.about-illust.weather-rain .about-rain-cloud {
    animation: about-cloud-arrive 3.5s ease-in-out forwards;
}

.about-illust.weather-rain .about-rain-drop {
    animation: about-rain-fall 1.05s ease-in 0.25s 3;
}

.about-illust.weather-rain .about-rain-drop:nth-child(3) {
    animation-delay: 0.42s;
}

.about-illust.weather-rain .about-rain-drop:nth-child(4) {
    animation-delay: 0.14s;
}

.about-illust.weather-rain .about-rain-drop:nth-child(5) {
    animation-delay: 0.5s;
}

.about-illust.weather-rain .about-rain-drop:nth-child(6) {
    animation-delay: 0.3s;
}

.about-illust.weather-rain .about-wet-soil {
    animation: about-soil-darken 3.2s ease-out 0.7s forwards;
}

.about-illust.weather-rain .about-plant {
    animation: about-rain-response 3.3s ease-in-out var(--about-weather-delay);
}

.about-illust.weather-wind .about-weather-wind path {
    animation: about-wind-trace 2.8s ease-in-out forwards;
}

.about-illust.weather-wind .about-weather-wind path:nth-child(2) {
    animation-delay: 0.16s;
}

.about-illust.weather-wind .about-weather-wind path:nth-child(3) {
    animation-delay: 0.32s;
}

.about-illust.weather-wind .about-plant {
    animation: about-wind-response 3.2s ease-in-out var(--about-weather-delay);
}

@keyframes about-form-open {
    from {
        opacity: 0;
        transform: scale(0.12) rotate(-3deg);
    }
    to {
        opacity: 0.88;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes about-sun-arrive {
    from {
        opacity: 0;
        transform: scale(0.72);
    }
    to {
        opacity: 0.72;
        transform: scale(1);
    }
}

@keyframes about-sun-response {
    0% {
        filter: none;
        transform: scaleY(1);
    }
    55% {
        filter: saturate(1.16) brightness(1.04);
        transform: scaleY(1.018);
    }
    100% {
        filter: saturate(1.08);
        transform: scaleY(1.01);
    }
}

@keyframes about-cloud-arrive {
    0% {
        opacity: 0;
        transform: translate3d(-10px, 3px, 0);
    }
    24%, 78% {
        opacity: 0.58;
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0.2;
        transform: translate3d(9px, -2px, 0);
    }
}

@keyframes about-rain-fall {
    0% {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
    18% {
        opacity: 0.62;
    }
    82% {
        opacity: 0.45;
    }
    100% {
        opacity: 0;
        transform: translate3d(-12px, 155px, 0);
    }
}

@keyframes about-soil-darken {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.13;
    }
}

@keyframes about-rain-response {
    0%, 100% {
        transform: rotate(0deg) scaleY(1);
        filter: none;
    }
    42% {
        transform: rotate(var(--about-rain-angle)) scaleY(0.985);
        filter: saturate(0.88);
    }
    72% {
        transform: rotate(0deg) scaleY(1);
        filter: saturate(1.04);
    }
}

@keyframes about-wind-trace {
    0% {
        opacity: 0;
        stroke-dashoffset: 1;
    }
    20% {
        opacity: 0.34;
    }
    72% {
        opacity: 0.24;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: 0;
        stroke-dashoffset: 0;
    }
}

@keyframes about-wind-response {
    0%, 100% {
        transform: rotate(0deg);
    }
    26% {
        transform: rotate(var(--about-wind-angle));
    }
    48% {
        transform: rotate(var(--about-counter-angle));
    }
    68% {
        transform: rotate(2deg);
    }
    84% {
        transform: rotate(-0.6deg);
    }
}

.contact {
    text-align: center;
    padding: 120px 56px 100px;
    max-width: 760px;
}

.contact-text {
    color: var(--text-soft);
    line-height: 2;
    max-width: 480px;
    margin: 0 auto 48px;
    font-size: 0.98rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    isolation: isolate;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-email-mobile {
    display: none;
    position: relative;
}

.contact-email-mobile summary {
    list-style: none;
    cursor: pointer;
}

.contact-email-mobile summary::-webkit-details-marker {
    display: none;
}

.contact-email-address {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 2;
    padding: 5px 10px 6px;
    border: 1px solid rgba(139, 111, 71, 0.11);
    border-radius: 52% 48% 55% 45% / 47% 56% 44% 53%;
    background: rgba(255, 249, 238, 0.96);
    box-shadow: 0 7px 18px rgba(112, 74, 52, 0.06);
    color: var(--accent-deep);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    transform: translateX(-50%);
}

.contact-link {
    color: var(--text-soft);
    text-decoration: none;
    font-family: var(--font-latin);
    font-size: 1.1rem;
    transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 15px 9px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    isolation: isolate;
}

.contact-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 234, 213, 0.42);
    border: 1px solid rgba(139, 111, 71, 0.07);
    border-radius: 56% 44% 58% 42% / 48% 57% 43% 52%;
    box-shadow: 0 8px 22px rgba(139, 111, 71, 0.035);
    transform: rotate(-1deg) scale(0.98);
    transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contact-link:hover {
    color: var(--accent-brown);
    transform: translateY(-2px);
}

.contact-link:hover::before {
    background: rgba(232, 223, 201, 0.52);
    border-color: rgba(139, 111, 71, 0.13);
    box-shadow: 0 12px 26px rgba(139, 111, 71, 0.055);
    transform: rotate(1deg) scale(1.02);
}

@media (max-width: 860px), (hover: none), (pointer: coarse) {
    .contact-email-desktop {
        display: none;
    }

    .contact-email-mobile {
        display: block;
    }
}

footer {
    text-align: center;
    padding: 70px 56px 60px;
    border-top: 1px dashed var(--line-color);
    margin: 40px auto 0;
    max-width: 1080px;
}

.footer-life-stage {
    position: relative;
    width: 180px;
    height: 56px;
    margin: 0 auto 24px;
}

.footer-sprout {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 180px;
    height: 130px;
    overflow: visible;
}

.footer-plant {
    --footer-small-scale: 0.29;
    --footer-mid-scale: 0.67;
    --footer-grown-scale: 0.9;
    opacity: 0;
    transform-box: view-box;
    transform-origin: 110px 165px;
    transform: scale(var(--footer-small-scale));
    will-change: transform;
}

.footer-plant.is-selected {
    opacity: 1;
}

.footer-plant-grass {
    --footer-small-scale: 0.3;
    --footer-mid-scale: 0.65;
    --footer-grown-scale: 0.82;
}

.footer-plant-flower {
    --footer-small-scale: 0.28;
    --footer-mid-scale: 0.67;
    --footer-grown-scale: 0.86;
}

.footer-plant-tree {
    --footer-small-scale: 0.27;
    --footer-mid-scale: 0.7;
    --footer-grown-scale: 0.92;
}

.footer-stem,
.footer-branch,
.footer-tree-trunk {
    fill: none;
    stroke: #5C6B45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-stem {
    stroke-width: 2;
}

.footer-branch {
    stroke-width: 1.55;
}

.footer-tree-trunk {
    stroke-width: 2.55;
}

.footer-leaf {
    fill: #7A8B5C;
    opacity: 0.9;
}

.footer-leaf-light {
    fill: #8FA06D;
    opacity: 0.84;
}

.footer-flower-head path {
    fill: #C9826D;
    opacity: 0.88;
}

.footer-flower-head circle {
    fill: #D4AD59;
}

.footer-life.is-growing .footer-plant.is-selected {
    animation: footer-plant-grow 4.2s cubic-bezier(0.33, 0, 0.2, 1) forwards;
}

.footer-life.is-grown .footer-plant.is-selected {
    transform: scale(var(--footer-grown-scale));
}

@keyframes footer-plant-grow {
    0% {
        transform: scale(var(--footer-small-scale));
    }
    58% {
        transform: scale(var(--footer-mid-scale));
    }
    100% {
        transform: scale(var(--footer-grown-scale));
    }
}

.footer-text {
    font-family: var(--font-serif);
    color: var(--text-soft);
    font-size: 0.98rem;
    margin-bottom: 14px;
    letter-spacing: 0.2em;
}

.footer-copy {
    font-family: var(--font-latin);
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    font-style: italic;
}

/* Practice: one quiet act of care, then one continuous growth. */
.practice-spoon {
    transform-box: fill-box;
    transform-origin: 92% 62%;
}

.practice-water-stream,
.practice-trunk,
.practice-branch {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.practice-water-stream {
    stroke: #8BAFCD;
    stroke-width: 1.6;
    stroke-dasharray: 0.09 0.11;
    opacity: 0;
}

.practice-drop {
    fill: #8BAFCD;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.practice-water-touch {
    fill: none;
    stroke: #8BAFCD;
    stroke-width: 1;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.practice-wet-soil {
    fill: #8B6F47;
    opacity: 0;
}

.practice-trunk,
.practice-branch {
    stroke: #5C6B45;
}

.practice-main-trunk {
    stroke-width: 2.55;
    stroke-dasharray: 1;
    stroke-dashoffset: 0.61;
}

.practice-young-branch {
    stroke-width: 1.65;
}

.practice-branch {
    stroke-width: 1.8;
}

.practice-leaf {
    fill: #7A8B5C;
    transform-box: fill-box;
    transform-origin: center;
}

.practice-young-leaf-right,
.practice-leaf-3,
.practice-leaf-7 {
    fill: #8FA06D;
}

.practice-branch {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.practice-tip-leaf {
    transform-box: fill-box;
    transform-origin: center;
}

.practice-grown-leaf {
    opacity: 0;
    transform: scale(0.15) rotate(-5deg);
}

.practice-grown-leaf.is-color-leaf {
    fill: var(--practice-leaf-color);
}

.practice-illust.is-caring .practice-spoon {
    animation: practice-spoon-care 4.1s cubic-bezier(0.42, 0, 0.3, 1) forwards;
}

.practice-illust.is-caring .practice-water-stream {
    animation: practice-stream 1.5s ease-in-out 0.75s both;
}

.practice-illust.is-caring .practice-drop-1 {
    animation: practice-drop-fall 1.05s cubic-bezier(0.35, 0, 0.65, 1) 0.82s both;
}

.practice-illust.is-caring .practice-drop-2 {
    animation: practice-drop-fall 1.05s cubic-bezier(0.35, 0, 0.65, 1) 1.08s both;
}

.practice-illust.is-caring .practice-drop-3 {
    animation: practice-drop-fall 1.05s cubic-bezier(0.35, 0, 0.65, 1) 1.34s both;
}

.practice-illust.is-caring .practice-water-touch {
    animation: practice-water-touch 0.8s ease-out 1.78s both;
}

.practice-illust.is-caring .practice-wet-soil {
    animation: practice-soil-darken 1.8s ease-out 2s forwards;
}

.practice-illust.is-caring .practice-main-trunk {
    animation: practice-trunk-grow 2.8s cubic-bezier(0.35, 0, 0.2, 1) 3.65s forwards;
}

.practice-illust.is-caring .practice-tip-leaf {
    animation: practice-tip-rise 2.8s cubic-bezier(0.35, 0, 0.2, 1) 3.65s forwards;
}

.practice-illust.is-caring .practice-branch-left-low,
.practice-illust.is-caring .practice-branch-right-low {
    animation: stroke-line-grow 1.35s ease-out 4.65s forwards;
}

.practice-illust.is-caring .practice-branch-left-high,
.practice-illust.is-caring .practice-branch-right-high {
    animation: stroke-line-grow 1.35s ease-out 5.35s forwards;
}

.practice-illust.is-caring .practice-grown-leaf {
    animation: practice-leaf-open 1.2s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.practice-illust.is-caring .practice-leaf-1 {
    animation-delay: 5.65s;
}

.practice-illust.is-caring .practice-leaf-3 {
    animation-delay: 5.9s;
}

.practice-illust.is-caring .practice-leaf-5 {
    animation-delay: 6.25s;
}

.practice-illust.is-caring .practice-leaf-7 {
    animation-delay: 6.55s;
}

.practice-illust.care-finished .practice-spoon {
    transform: translate3d(-82px, -14px, 0) rotate(-4deg);
    opacity: 0.68;
}

.practice-illust.care-finished .practice-wet-soil {
    opacity: 0.13;
}

.practice-illust.care-finished .practice-main-trunk,
.practice-illust.care-finished .practice-branch {
    stroke-dashoffset: 0;
}

.practice-illust.care-finished .practice-tip-leaf {
    transform: translate3d(3px, -101px, 0);
}

.practice-illust.care-finished .practice-grown-leaf {
    opacity: 0.9;
    transform: none;
}

@keyframes practice-spoon-care {
    0%, 12% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 1;
    }
    22%, 43% {
        transform: translate3d(2px, 4px, 0) rotate(8deg);
        opacity: 1;
    }
    72%, 100% {
        transform: translate3d(-82px, -14px, 0) rotate(-4deg);
        opacity: 0.68;
    }
}

@keyframes practice-stream {
    0%, 100% {
        opacity: 0;
    }
    18%, 76% {
        opacity: 0.65;
    }
}

@keyframes practice-drop-fall {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.7);
    }
    14% {
        opacity: 0.88;
    }
    82% {
        opacity: 0.62;
    }
    100% {
        opacity: 0;
        transform: translateY(78px) scale(0.45);
    }
}

@keyframes practice-water-touch {
    0% {
        opacity: 0;
        transform: scaleX(0.25);
    }
    35% {
        opacity: 0.55;
    }
    100% {
        opacity: 0;
        transform: scaleX(1.6);
    }
}

@keyframes practice-soil-darken {
    from {
        opacity: 0;
        transform: scaleX(0.45);
    }
    to {
        opacity: 0.13;
        transform: scaleX(1);
    }
}

@keyframes practice-trunk-grow {
    from {
        stroke-dashoffset: 0.61;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes practice-tip-rise {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    34% {
        transform: translate3d(1px, -31px, 0) rotate(-1.2deg);
    }
    68% {
        transform: translate3d(1px, -68px, 0) rotate(0.8deg);
    }
    100% {
        transform: translate3d(3px, -101px, 0) rotate(0deg);
    }
}

@keyframes practice-leaf-open {
    0% {
        opacity: 0;
        transform: scale(0.15) rotate(-5deg);
    }
    100% {
        opacity: 0.9;
        transform: scale(1) rotate(0deg);
    }
}

/* Intention: three undefined ideas finding three different forms. */
.intention-ground-line,
.intention-stem {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.intention-ground-line {
    stroke: var(--accent-brown);
    stroke-width: 1.5;
    opacity: 0.6;
}

.intention-stem {
    stroke: var(--sprout-deep);
    stroke-width: 2.15;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.grass-blade {
    stroke-width: 1.7;
}

.intention-leaf,
.intention-bud,
.flower-petal,
.flower-center {
    opacity: 0;
    transform-box: fill-box;
    transform: scale(0.06);
}

.intention-leaf,
.intention-bud {
    fill: var(--sprout-light);
    stroke: var(--sprout-deep);
    stroke-width: 0.72;
    stroke-linejoin: round;
}

.seedling-leaf-left,
.flower-leaf-left {
    transform-origin: right center;
}

.seedling-leaf-right,
.flower-leaf-right {
    transform-origin: left center;
}

.seedling-bud {
    transform-origin: center bottom;
}

.flower-petal {
    fill: #C9A184;
    stroke: #A77E63;
    stroke-width: 0.65;
    transform-origin: center bottom;
}

.flower-center {
    fill: #B48B58;
    transform-origin: center;
}

.intention-illust.is-growing .grass-blade {
    animation: stroke-line-grow 2s cubic-bezier(0.22, 0.68, 0.3, 1) forwards;
}

.intention-illust.is-growing .blade-1 {
    animation-delay: 0.45s;
}

.intention-illust.is-growing .blade-2 {
    animation-delay: 0.68s;
}

.intention-illust.is-growing .blade-3 {
    animation-delay: 0.88s;
}

.intention-illust.is-growing .blade-4 {
    animation-delay: 1.05s;
}

.intention-illust.is-growing .blade-5 {
    animation-delay: 1.22s;
}

.intention-illust.is-growing .seedling-stem {
    animation: stroke-line-grow 2.35s cubic-bezier(0.22, 0.68, 0.3, 1) 0.72s forwards;
}

.intention-illust.is-growing .seedling-leaf-left {
    animation: intention-leaf-open 1.25s ease-out 2.05s forwards;
}

.intention-illust.is-growing .seedling-leaf-right {
    animation: intention-leaf-open 1.3s ease-out 2.42s forwards;
}

.intention-illust.is-growing .seedling-bud {
    animation: intention-leaf-open 1.1s ease-out 2.82s forwards;
}

.intention-illust.is-growing .flower-stem {
    animation: stroke-line-grow 2.45s cubic-bezier(0.22, 0.68, 0.3, 1) 1.05s forwards;
}

.intention-illust.is-growing .flower-leaf-left {
    animation: intention-leaf-open 1.2s ease-out 2.35s forwards;
}

.intention-illust.is-growing .flower-leaf-right {
    animation: intention-leaf-open 1.25s ease-out 2.72s forwards;
}

.intention-illust.is-growing .flower-petal {
    animation: intention-petal-open 1.45s cubic-bezier(0.2, 0.72, 0.28, 1) forwards;
}

.intention-illust.is-growing .petal-1 {
    animation-delay: 3.2s;
}

.intention-illust.is-growing .petal-2 {
    animation-delay: 3.42s;
}

.intention-illust.is-growing .petal-3 {
    animation-delay: 3.64s;
}

.intention-illust.is-growing .petal-4 {
    animation-delay: 3.86s;
}

.intention-illust.is-growing .flower-center {
    animation: intention-center-open 0.9s ease-out 4.05s forwards;
}

@keyframes intention-leaf-open {
    from {
        opacity: 0;
        transform: scale(0.06) rotate(-4deg);
    }
    to {
        opacity: 0.88;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes intention-petal-open {
    from {
        opacity: 0;
        transform: scale(0.08) rotate(-7deg);
    }
    to {
        opacity: 0.82;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes intention-center-open {
    from {
        opacity: 0;
        transform: scale(0.1);
    }
    to {
        opacity: 0.92;
        transform: scale(1);
    }
}

.intention-illust.growth-finished .intention-stem {
    animation: none;
    stroke-dashoffset: 0;
}

.intention-illust.growth-finished .intention-leaf,
.intention-illust.growth-finished .intention-bud {
    animation: none;
    opacity: 0.88;
    transform: scale(1) rotate(0deg);
}

.intention-illust.growth-finished .flower-petal {
    animation: none;
    opacity: 0.82;
    transform: scale(1) rotate(0deg);
}

.intention-illust.growth-finished .flower-center {
    animation: none;
    opacity: 0.92;
    transform: scale(1);
}

.hero-seed-drop {
    transform: translate3d(0, -126px, 0);
    will-change: transform;
}

.hero-illustration.visible .hero-seed-drop {
    animation: hero-seed-land 3.8s linear forwards;
}

.hero-seed-half {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform, opacity;
}

.hero-illustration.visible .hero-seed-whole {
    animation: hero-seed-whole-hide 0.01s linear 4.3s forwards;
}

.hero-illustration.visible .hero-seed-half-left {
    animation: hero-seed-open-left 2.6s cubic-bezier(0.22, 0.72, 0.3, 1) 4.3s forwards;
}

.hero-illustration.visible .hero-seed-half-right {
    animation: hero-seed-open-right 2.6s cubic-bezier(0.22, 0.72, 0.3, 1) 4.3s forwards;
}

.hero-life-seed {
    opacity: 0;
    transform: translateY(0);
}

.hero-illustration.visible .hero-life-seed {
    animation: hero-life-seed-rise 2.35s cubic-bezier(0.22, 0.64, 0.32, 1) 4.7s forwards;
}

@keyframes hero-seed-land {
    from {
        transform: translate3d(0, -126px, 0);
    }
    to {
        transform: translate3d(0, 135px, 0);
    }
}

@keyframes hero-seed-whole-hide {
    to {
        opacity: 0;
    }
}

@keyframes hero-seed-open-left {
    0% {
        opacity: 1;
        transform: translate3d(0, 135px, 0) rotate(0deg);
    }
    48% {
        opacity: 0.82;
        transform: translate3d(-8px, 140px, 0) rotate(-17deg);
    }
    to {
        opacity: 0;
        transform: translate3d(-9px, 141px, 0) rotate(-18deg);
    }
}

@keyframes hero-seed-open-right {
    0% {
        opacity: 1;
        transform: translate3d(0, 135px, 0) rotate(0deg);
    }
    48% {
        opacity: 0.82;
        transform: translate3d(8px, 140px, 0) rotate(17deg);
    }
    to {
        opacity: 0;
        transform: translate3d(9px, 141px, 0) rotate(18deg);
    }
}

@keyframes hero-life-seed-rise {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    12% {
        opacity: 1;
    }
    32% {
        opacity: 0.88;
    }
    50% {
        opacity: 0.62;
    }
    68% {
        opacity: 0.34;
    }
    82% {
        opacity: 0.18;
    }
    92% {
        opacity: 0.06;
        transform: translateY(-59px);
    }
    97% {
        opacity: 0;
        transform: translateY(-63px);
    }
    100% {
        opacity: 0;
        transform: translateY(-65px);
    }
}

/* Hero growth outcomes: one shared beginning, twelve possible lives. */
.growth-outcome {
    opacity: 0;
    pointer-events: none;
}

.growth-outcome.is-selected {
    opacity: 1;
}

.growth-line,
.tree-trunk,
.tree-branch {
    fill: none;
    stroke: var(--sprout-deep);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.growth-line {
    stroke-width: 2.2;
}

.growth-branch,
.new-branch,
.old-top {
    stroke-width: 1.65;
}

.growth-leaf,
.growth-bud {
    fill: var(--sprout-light);
    stroke: var(--sprout-deep);
    stroke-width: 0.75;
    stroke-linejoin: round;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.growth-leaf-left {
    transform-origin: right center;
}

.growth-leaf-right {
    transform-origin: left center;
}

.growth-outcome.is-selected .growth-main {
    animation: stroke-line-grow 2.4s ease-out 7.15s forwards;
}

.growth-outcome.is-selected .growth-branch,
.growth-outcome.is-selected .new-branch {
    animation: stroke-line-grow 1.6s ease-out 8.65s forwards;
}

.growth-outcome.is-selected .growth-leaf,
.growth-outcome.is-selected .growth-bud {
    animation: growth-leaf-open 1.1s ease-out forwards;
}

.growth-outcome.is-selected .leaf-1 {
    animation-delay: 8.15s;
}

.growth-outcome.is-selected .leaf-2 {
    animation-delay: 8.55s;
}

.growth-outcome.is-selected .leaf-3 {
    animation-delay: 8.95s;
}

.growth-outcome.is-selected .leaf-4 {
    animation-delay: 9.35s;
}

.growth-outcome.is-selected .leaf-5 {
    animation-delay: 9.7s;
}

@keyframes growth-leaf-open {
    from {
        opacity: 0;
        transform: scale(0.08) rotate(-5deg);
    }
    to {
        opacity: 0.9;
        transform: scale(1) rotate(0deg);
    }
}

.growth-wilt.is-selected .wilt-body {
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: growth-wilt 2.8s ease-in-out 10.05s forwards;
}

@keyframes growth-wilt {
    from {
        filter: saturate(1);
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    to {
        filter: sepia(0.72) saturate(0.42);
        transform: translateY(3px) scaleY(0.97);
        opacity: 0.58;
    }
}

.growth-sick.is-selected .sick-body {
    animation: growth-sicken 2.8s ease-in-out 10.1s forwards;
}

.sick-spots circle {
    fill: #8F7450;
    opacity: 0;
}

.growth-sick.is-selected .sick-spots circle {
    animation: sick-spot-appear 1.2s ease-out forwards;
}

.growth-sick.is-selected .sick-spots circle:nth-child(1) {
    animation-delay: 9.6s;
}

.growth-sick.is-selected .sick-spots circle:nth-child(2) {
    animation-delay: 9.85s;
}

.growth-sick.is-selected .sick-spots circle:nth-child(3) {
    animation-delay: 10.1s;
}

.growth-sick.is-selected .sick-spots circle:nth-child(4) {
    animation-delay: 10.35s;
}

@keyframes growth-sicken {
    from {
        filter: saturate(1);
        opacity: 1;
    }
    to {
        filter: sepia(0.38) saturate(0.62);
        opacity: 0.76;
    }
}

@keyframes sick-spot-appear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 0.78;
        transform: scale(1);
    }
}

.growth-stunted.is-selected .growth-main {
    animation-duration: 1.75s;
}

.growth-regrowth.is-selected .broken-crown {
    transform-box: fill-box;
    transform-origin: center bottom;
}

.growth-regrowth.is-selected .old-top {
    animation: stroke-line-grow 1.15s ease-out 8.55s forwards;
}

.growth-regrowth.is-selected .broken-crown {
    animation: growth-break 0.65s ease-in 9.85s forwards;
}

.growth-regrowth.is-selected .new-branch {
    animation-delay: 10.65s;
}

.growth-regrowth.is-selected .new-leaf-1 {
    animation-delay: 11.4s;
}

.growth-regrowth.is-selected .new-leaf-2 {
    animation-delay: 11.75s;
}

.growth-regrowth.is-selected .new-leaf-3 {
    animation-delay: 12.1s;
}

@keyframes growth-break {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    18% {
        transform: translate3d(-2px, 2px, 0) rotate(-10deg);
        opacity: 1;
    }
    72% {
        transform: translate3d(-22px, 61px, 0) rotate(-68deg);
        opacity: 0.9;
    }
    88% {
        transform: translate3d(-25px, 69px, 0) rotate(-78deg);
        opacity: 0.82;
    }
    100% {
        transform: translate3d(-25px, 67px, 0) rotate(-76deg);
        opacity: 0.82;
    }
}

.growth-broken.is-selected .broken-top {
    animation: stroke-line-grow 1.15s ease-out 8.55s forwards;
}

.growth-broken.is-selected .fallen-crown {
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: broken-crown-fall 1.7s cubic-bezier(0.3, 0.05, 0.68, 1) 9.75s forwards;
}

.break-scar {
    fill: none;
    stroke: var(--accent-deep);
    stroke-width: 1.4;
    stroke-linecap: round;
    opacity: 0;
}

.growth-broken.is-selected .break-scar {
    animation: break-scar-show 0.45s ease-out 9.8s forwards;
}

@keyframes broken-crown-fall {
    0% {
        transform: translate3d(0, 0, 0) rotate(0);
        opacity: 1;
    }
    22% {
        transform: translate3d(3px, 5px, 0) rotate(14deg);
        opacity: 1;
    }
    78% {
        transform: translate3d(31px, 73px, 0) rotate(78deg);
        opacity: 0.88;
    }
    100% {
        transform: translate3d(33px, 70px, 0) rotate(75deg);
        opacity: 0.82;
    }
}

@keyframes break-scar-show {
    to {
        opacity: 0.78;
    }
}

.growth-bent.is-selected .growth-main {
    animation-duration: 2.9s;
}

.growth-branching.is-selected .growth-branch {
    animation-duration: 1.8s;
}

.growth-fruits circle {
    fill: #C58A54;
    stroke: var(--accent-deep);
    stroke-width: 0.7;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.growth-fruiting.is-selected .growth-fruits circle {
    animation: fruit-grow 1.15s ease-out forwards;
}

.growth-fruiting.is-selected .growth-fruits circle:nth-child(1) {
    animation-delay: 9.65s;
}

.growth-fruiting.is-selected .growth-fruits circle:nth-child(2) {
    animation-delay: 10s;
}

.growth-fruiting.is-selected .growth-fruits circle:nth-child(3) {
    animation-delay: 10.35s;
}

@keyframes fruit-grow {
    from {
        opacity: 0;
        transform: scale(0.05);
    }
    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

.growth-tree.is-selected .tree-trunk {
    stroke: var(--accent-deep);
    stroke-width: 5.2;
    animation: stroke-line-grow 3.2s ease-out 7.15s forwards;
}

.growth-tree.is-selected .tree-branch {
    stroke: var(--accent-deep);
    stroke-width: 2.2;
    animation: stroke-line-grow 2s ease-out forwards;
}

.growth-tree.is-selected .branch-1 {
    animation-delay: 8.6s;
}

.growth-tree.is-selected .branch-2 {
    animation-delay: 8.9s;
}

.growth-tree.is-selected .branch-3 {
    animation-delay: 9.2s;
}

.growth-tree.is-selected .branch-4 {
    animation-delay: 9.5s;
}

.growth-tree.is-selected .branch-5 {
    animation-delay: 9.8s;
}

.tree-canopy path {
    stroke: var(--sprout-deep);
    stroke-width: 0.65;
    stroke-linejoin: round;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.tree-canopy path:nth-child(1) {
    fill: #87986F;
}

.tree-canopy path:nth-child(2) {
    fill: #7A8B5C;
}

.tree-canopy path:nth-child(3) {
    fill: #91A278;
}

.tree-canopy path:nth-child(4) {
    fill: #71835A;
}

.tree-canopy path:nth-child(5) {
    fill: #87966D;
}

.growth-tree.is-selected .tree-canopy path {
    animation: tree-canopy-open 1.8s ease-out forwards;
}

.growth-tree.is-selected .tree-canopy path:nth-child(1) {
    animation-delay: 9.3s;
}

.growth-tree.is-selected .tree-canopy path:nth-child(2) {
    animation-delay: 9.6s;
}

.growth-tree.is-selected .tree-canopy path:nth-child(3) {
    animation-delay: 9.9s;
}

.growth-tree.is-selected .tree-canopy path:nth-child(4) {
    animation-delay: 10.2s;
}

.growth-tree.is-selected .tree-canopy path:nth-child(5) {
    animation-delay: 10.5s;
}

@keyframes tree-canopy-open {
    from {
        opacity: 0;
        transform: scale(0.12);
    }
    to {
        opacity: 0.76;
        transform: scale(1);
    }
}

.rainbow-trunk,
.rainbow-branch {
    fill: none;
    stroke: var(--accent-deep);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.rainbow-trunk {
    stroke-width: 6.5;
}

.rainbow-branch {
    stroke-width: 2.6;
}

.growth-rainbow.is-selected .rainbow-trunk {
    animation: stroke-line-grow 3.4s ease-out 7.15s forwards;
}

.growth-rainbow.is-selected .rainbow-branch {
    animation: stroke-line-grow 2.1s ease-out forwards;
}

.growth-rainbow.is-selected .branch-1 {
    animation-delay: 8.7s;
}

.growth-rainbow.is-selected .branch-2 {
    animation-delay: 9s;
}

.growth-rainbow.is-selected .branch-3 {
    animation-delay: 9.3s;
}

.growth-rainbow.is-selected .branch-4 {
    animation-delay: 9.6s;
}

.rainbow-canopy path {
    opacity: 0;
    stroke: var(--accent-deep);
    stroke-width: 0.55;
    stroke-linejoin: round;
    transform-box: fill-box;
    transform-origin: center;
}

.rainbow-red {
    fill: #E99989;
}

.rainbow-orange {
    fill: #E8AD70;
}

.rainbow-yellow {
    fill: #E7CF76;
}

.rainbow-green {
    fill: #91B98B;
}

.rainbow-blue {
    fill: #83ACC0;
}

.growth-rainbow.is-selected .rainbow-canopy path {
    animation: rainbow-canopy-open 2.1s ease-out forwards;
}

.growth-rainbow.is-selected .rainbow-canopy path:nth-child(1) {
    animation-delay: 9.4s;
}

.growth-rainbow.is-selected .rainbow-canopy path:nth-child(2) {
    animation-delay: 9.7s;
}

.growth-rainbow.is-selected .rainbow-canopy path:nth-child(3) {
    animation-delay: 10s;
}

.growth-rainbow.is-selected .rainbow-canopy path:nth-child(4) {
    animation-delay: 10.3s;
}

.growth-rainbow.is-selected .rainbow-canopy path:nth-child(5) {
    animation-delay: 10.6s;
}

@keyframes rainbow-canopy-open {
    from {
        opacity: 0;
        transform: scale(0.08);
    }
    to {
        opacity: 0.76;
        transform: scale(1);
    }
}

/* Keep every finished story visually complete after its timeline hands over to the copy. */
.hero-illustration.growth-complete .growth-outcome.is-selected .growth-line,
.hero-illustration.growth-complete .growth-outcome.is-selected .tree-trunk,
.hero-illustration.growth-complete .growth-outcome.is-selected .tree-branch,
.hero-illustration.growth-complete .growth-outcome.is-selected .rainbow-trunk,
.hero-illustration.growth-complete .growth-outcome.is-selected .rainbow-branch {
    animation: none;
    stroke-dashoffset: 0;
}

.hero-illustration.growth-complete .growth-outcome.is-selected .growth-leaf,
.hero-illustration.growth-complete .growth-outcome.is-selected .growth-bud {
    animation: none;
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
}

.hero-illustration.growth-complete .growth-tree.is-selected .tree-canopy path {
    animation: none;
    opacity: 0.76;
    transform: scale(1);
}

.hero-illustration.growth-complete .growth-rainbow.is-selected .rainbow-canopy path {
    animation: none;
    opacity: 0.76;
    transform: scale(1);
}

.hero-illustration.growth-complete .growth-fruiting.is-selected .growth-fruits circle {
    animation: none;
    opacity: 0.9;
    transform: scale(1);
}

.hero-illustration.growth-complete .growth-sick.is-selected .sick-spots circle {
    animation: none;
    opacity: 0.78;
    transform: scale(1);
}

.hero-illustration.growth-complete .growth-wilt.is-selected .wilt-body {
    animation: none;
    filter: sepia(0.72) saturate(0.42);
    opacity: 0.58;
    transform: translateY(3px) scaleY(0.97);
}

.hero-illustration.growth-complete .growth-sick.is-selected .sick-body {
    animation: none;
    filter: sepia(0.38) saturate(0.62);
    opacity: 0.76;
}

.hero-illustration.growth-complete .growth-broken.is-selected .fallen-crown {
    animation: none;
    opacity: 0.82;
    transform: translate3d(33px, 70px, 0) rotate(75deg);
}

.hero-illustration.growth-complete .growth-regrowth.is-selected .broken-crown {
    animation: none;
    opacity: 0.82;
    transform: translate3d(-25px, 67px, 0) rotate(-76deg);
}

.hero-illustration.growth-complete .growth-broken.is-selected .break-scar {
    animation: none;
    opacity: 0.78;
}

.growth-outcome-backdrop {
    fill: rgba(250, 245, 234, 0.62);
    stroke: rgba(139, 111, 71, 0.13);
    stroke-width: 0.75;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    pointer-events: none;
}

.growth-outcome-text {
    fill: var(--text-soft);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.06em;
    opacity: 0;
    pointer-events: none;
}

.hero-illustration.growth-complete .growth-outcome-backdrop {
    animation: growth-outcome-backdrop-in 1.15s ease-out forwards;
}

.hero-illustration.growth-complete .growth-outcome-text {
    animation: growth-outcome-text-in 1.2s ease-out 0.18s forwards;
}

@keyframes growth-outcome-backdrop-in {
    from {
        opacity: 0;
        transform: scale(0.94) rotate(0.35deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes growth-outcome-text-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 0.82;
        transform: translateY(0);
    }
}

.illust-wrapper {
    perspective: 1000px;
    position: relative;
}

.illust-wrapper svg {
    display: block;
    clip-path: polygon(
            4% 6%,
            31% 1%,
            62% 4%,
            94% 0,
            100% 19%,
            97% 42%,
            100% 66%,
            93% 94%,
            70% 100%,
            46% 96%,
            20% 100%,
            2% 91%,
            0 68%,
            3% 45%,
            0 20%
    );
    -webkit-mask-image: radial-gradient(ellipse at center,
    black 0%,
    black 68%,
    rgba(0, 0, 0, 0.78) 84%,
    transparent 100%);
    mask-image: radial-gradient(ellipse at center,
    black 0%,
    black 68%,
    rgba(0, 0, 0, 0.78) 84%,
    transparent 100%);
}

.hero-illustration svg {
    clip-path: polygon(
            8% 3%,
            35% 0,
            66% 5%,
            92% 1%,
            100% 23%,
            96% 51%,
            100% 76%,
            86% 97%,
            58% 100%,
            31% 96%,
            7% 100%,
            0 78%,
            3% 52%,
            0 24%
    );
}

.practice-illust svg,
.about-illust svg {
    clip-path: polygon(
            2% 8%,
            24% 0,
            51% 3%,
            77% 0,
            98% 9%,
            100% 32%,
            96% 55%,
            100% 83%,
            83% 98%,
            55% 96%,
            28% 100%,
            5% 91%,
            0 63%,
            4% 39%
    );
}

.illust-tilt {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.js .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.25s;
}

.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.55s;
}

.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.7s;
}

.js .illust-reveal {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.illust-reveal.visible {
    opacity: 1;
    transform: scale(1);
}

a:focus-visible {
    outline: 2px solid var(--accent-brown);
    outline-offset: 4px;
    border-radius: 2px;
}

.nav-links a:focus-visible {
    outline-offset: 6px;
}

/* 7. Responsive rules */
@media (max-width: 860px) {
    .spore,
    .floating-seed {
        display: none;
    }

    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 14px 24px;
    }

    .nav-links {
        gap: 18px;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    section {
        padding: 80px 28px;
    }

    .hero {
        padding: 110px 28px 60px;
    }

    .intention-text, .practice-text, .about-text {
        text-align: center;
    }

    .section-title, .section-quote, .section-text {
        text-align: center;
    }

    .section-text {
        margin-left: auto;
        margin-right: auto;
    }

    .intention, .practice, .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .practice-text,
    .about-text {
        order: 1;
    }

    .practice-illust,
    .about-illust {
        order: 2;
    }

    .intention-illust, .practice-illust, .about-illust {
        max-width: 340px;
        margin: 0 auto;
    }

    .principle {
        padding: 80px 28px 40px;
    }

    .principle-roots-section {
        height: 240px;
    }

    .project {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 12px;
        padding: 32px 0;
    }

    .project-icon {
        margin-bottom: 4px;
    }

    .project-link {
        margin-top: 8px;
    }

    .contact-links {
        gap: 22px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-quote {
        font-size: 1.1rem;
    }

    .planted-header {
        margin-bottom: 56px;
    }

    .planted-footer {
        margin-top: 40px;
        padding-top: 28px;
    }
}

@media (max-width: 520px) {
    .nav-links a:nth-child(4), .nav-links a:nth-child(5) {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .section-text {
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-quote {
        font-size: 1.05rem;
    }

    .contact-links {
        gap: 20px;
    }

    .contact-link {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    nav {
        padding-right: 18px;
        padding-left: 18px;
    }

    nav.scrolled {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nav-links {
        gap: 14px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }

    .illust-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .growth-outcome:not(.is-selected) {
        opacity: 0 !important;
    }

    .growth-outcome.is-selected {
        opacity: 1 !important;
    }

    .hero-seed-drop,
    .hero-seed-split,
    .hero-life-seed {
        animation: none !important;
        opacity: 0 !important;
    }

    .growth-outcome.is-selected .growth-line,
    .growth-outcome.is-selected .tree-trunk,
    .growth-outcome.is-selected .tree-branch,
    .growth-outcome.is-selected .rainbow-trunk,
    .growth-outcome.is-selected .rainbow-branch {
        stroke-dashoffset: 0 !important;
    }

    .growth-outcome.is-selected .growth-leaf,
    .growth-outcome.is-selected .growth-bud,
    .growth-outcome.is-selected .tree-canopy path,
    .growth-outcome.is-selected .rainbow-canopy path,
    .growth-outcome.is-selected .growth-fruits circle,
    .growth-outcome.is-selected .sick-spots circle {
        opacity: 0.82 !important;
        transform: none !important;
    }

    .growth-broken.is-selected .fallen-crown {
        opacity: 0.82 !important;
        transform: translate3d(33px, 70px, 0) rotate(75deg) !important;
    }

    .growth-regrowth.is-selected .broken-crown {
        opacity: 0.82 !important;
        transform: translate3d(-25px, 67px, 0) rotate(-76deg) !important;
    }

    .practice-spoon {
        opacity: 0.68 !important;
        transform: translate3d(-82px, -14px, 0) rotate(-4deg) !important;
    }

    .practice-wet-soil {
        opacity: 0.13 !important;
    }

    .practice-main-trunk,
    .practice-branch {
        stroke-dashoffset: 0 !important;
    }

    .practice-tip-leaf {
        transform: translate3d(3px, -101px, 0) !important;
    }

    .practice-grown-leaf {
        opacity: 0.9 !important;
        transform: none !important;
    }

    .principle-stem,
    .principle-branch-above,
    .root-side-early,
    .principle-life.is-healthy .principle-root-main,
    .principle-life.is-healthy .root-side-late,
    .principle-life.is-healthy .principle-new-stem {
        stroke-dashoffset: 0 !important;
    }

    .principle-life:not(.is-healthy) .principle-root-main {
        stroke-dashoffset: 0.28 !important;
    }

    .principle-leaf,
    .principle-blossom,
    .principle-life.is-healthy .principle-new-leaf,
    .principle-life.is-healthy .principle-new-bud,
    .principle-life.is-healthy .principle-healthy-growth {
        opacity: 0.86 !important;
        transform: none !important;
    }

    .principle-life.is-wilted .principle-plant-body {
        opacity: 0.5 !important;
        filter: sepia(0.62) saturate(0.45) !important;
        transform: rotate(7deg) translateY(3px) !important;
    }

    .principle-life.is-broken .principle-break-part {
        opacity: 0.66 !important;
        transform: translate3d(var(--break-drop-x), var(--break-drop-y), 0) rotate(var(--break-rotate)) !important;
    }

    .principle-life.is-broken .principle-main-shoot {
        opacity: 0 !important;
    }

    .principle-life.is-broken .principle-broken-base,
    .principle-life.is-broken .principle-fallen-stem {
        opacity: 1 !important;
    }

    .principle-grass.is-broken .principle-plant-body {
        opacity: 0.38 !important;
        filter: sepia(0.28) saturate(0.38) !important;
        transform: translate3d(2px, 1px, 0) rotate(88deg) scaleY(0.92) !important;
    }

    .about-growth-line {
        stroke-dashoffset: 0 !important;
    }

    .about-growth-form {
        opacity: 0.88 !important;
        transform: none !important;
    }

    .about-illust.weather-sun .about-weather-sun {
        opacity: 0.72 !important;
        transform: none !important;
    }

    .about-illust.weather-sun .about-sun-ray {
        stroke-dashoffset: 0 !important;
    }

    .about-illust.weather-rain .about-rain-cloud {
        opacity: 0.2 !important;
        transform: none !important;
    }

    .about-illust.weather-rain .about-wet-soil {
        opacity: 0.13 !important;
    }

    .about-plant,
    .about-weather-wind path,
    .about-rain-drop {
        transform: none !important;
    }
}
