/* tanso.club -- goblincore earthy chaos */

:root {
    --soil: #3a2a1a;
    --moss: #4a6a3a;
    --mushroom: #c8a882;
    --lichen: #8aaa7a;
    --bark: #f0e4d0;
    --berry: #8a3a5a;

    --soil-soft: #4a3825;
    --bark-deep: #e3d2b3;
    --shadow-soil: rgba(58, 42, 26, 0.18);

    --font-display: "Amatic SC", "Lato", sans-serif;
    --font-body: "Nunito", "Open Sans", sans-serif;
    --font-note: "Indie Flower", "Lato", cursive;

    --blob-a: 20% 40% 30% 50% / 40% 20% 50% 30%;
    --blob-b: 50% 30% 40% 60% / 30% 50% 30% 60%;
    --blob-c: 60% 40% 50% 30% / 50% 60% 30% 50%;
    --blob-d: 35% 65% 55% 45% / 55% 35% 65% 45%;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bark);
    color: var(--soil);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.16 0 0 0 0 0.10 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
    mix-blend-mode: multiply;
}

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

/* ---------- HEADER ---------- */
.site-header {
    padding: 1.4rem 1.5rem 0.6rem;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-cluster {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.mushroom-mark {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.mushroom-mark .mushroom-cap {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 48px;
    height: 30px;
    background: var(--berry);
    border-radius: 50% 50% 10% 10% / 100% 100% 10% 10%;
    box-shadow: inset -6px -3px 0 rgba(0, 0, 0, 0.18),
                inset 8px 5px 0 rgba(255, 255, 255, 0.18);
}

.mushroom-mark .mushroom-cap::before,
.mushroom-mark .mushroom-cap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--bark);
    opacity: 0.85;
}

.mushroom-mark .mushroom-cap::before {
    width: 8px;
    height: 8px;
    top: 6px;
    left: 12px;
}

.mushroom-mark .mushroom-cap::after {
    width: 5px;
    height: 5px;
    top: 14px;
    left: 28px;
}

.mushroom-mark .mushroom-stem {
    position: absolute;
    bottom: 2px;
    left: 18px;
    width: 20px;
    height: 26px;
    background: var(--bark-deep);
    border-radius: 30% 30% 40% 40% / 20% 20% 60% 60%;
    box-shadow: inset -4px 0 0 rgba(0, 0, 0, 0.08);
}

.mushroom-mark-small {
    width: 38px;
    height: 38px;
}

.mushroom-mark-small .mushroom-cap {
    width: 32px;
    height: 20px;
    top: 2px;
    left: 3px;
}

.mushroom-mark-small .mushroom-stem {
    width: 14px;
    height: 18px;
    bottom: 1px;
    left: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0;
    color: var(--soil);
    letter-spacing: 0.02em;
}

.logo-dot {
    color: var(--berry);
}

.logo-sub {
    font-family: var(--font-note);
    font-size: 0.95rem;
    color: var(--moss);
    margin: 0.1rem 0 0 0.1rem;
    transform: rotate(-2deg);
    transform-origin: left;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--soil);
    text-decoration: none;
    padding: 0.35rem 0.6rem;
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    background: rgba(74, 106, 58, 0.18);
    color: var(--moss);
    transform: rotate(-1deg);
}

.nav-cta {
    background: var(--moss);
    color: var(--bark);
    padding: 0.5rem 1rem;
    border-radius: 50% 30% 60% 40% / 30% 60% 40% 50%;
    box-shadow: 2px 3px 0 var(--soil);
}

.nav-cta:hover {
    background: var(--soil);
    color: var(--bark);
    transform: rotate(2deg) translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 3rem 1.5rem 5rem;
    overflow: hidden;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-blob {
    position: absolute;
    z-index: 1;
    filter: blur(1px);
    opacity: 0.85;
    pointer-events: none;
}

.blob-one {
    width: 380px;
    height: 380px;
    top: -60px;
    left: -90px;
    background: var(--lichen);
    border-radius: var(--blob-a);
    transform: rotate(8deg);
}

.blob-two {
    width: 320px;
    height: 280px;
    bottom: -40px;
    right: -60px;
    background: var(--mushroom);
    border-radius: var(--blob-b);
    transform: rotate(-12deg);
    opacity: 0.7;
}

.blob-three {
    width: 220px;
    height: 220px;
    top: 40px;
    right: 18%;
    background: var(--bark-deep);
    border-radius: var(--blob-c);
    transform: rotate(20deg);
    opacity: 0.55;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3.4rem, 9vw, 6.8rem);
    line-height: 0.95;
    margin: 0.5rem 0 1.4rem;
    color: var(--soil);
    letter-spacing: 0.01em;
}

.hero-lede {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    max-width: 580px;
    margin: 0 auto 2rem;
    color: var(--soil-soft);
}

.hero-lede em {
    font-family: var(--font-note);
    font-style: normal;
    color: var(--berry);
    font-size: 1.15em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.6rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
    border-radius: 50% 30% 60% 40% / 30% 60% 40% 50%;
}

.btn-primary {
    background: var(--berry);
    color: var(--bark);
    box-shadow: 3px 4px 0 var(--soil);
}

.btn-primary:hover {
    transform: translate(-1px, -2px) rotate(-1deg);
    box-shadow: 4px 6px 0 var(--soil);
}

.btn-ghost {
    background: transparent;
    color: var(--soil);
    border: 2px dashed var(--soil);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(58, 42, 26, 0.08);
    transform: rotate(1deg);
}

.btn-tier {
    margin-top: 1.2rem;
    background: var(--moss);
    color: var(--bark);
    padding: 0.6rem 1.2rem;
    box-shadow: 2px 3px 0 var(--soil);
}

.btn-tier:hover {
    transform: translate(-1px, -1px) rotate(-2deg);
    background: var(--soil);
}

.btn-feed {
    margin-top: 1rem;
}

.btn-submit {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.6rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.stat-blob {
    background: var(--bark);
    padding: 1.4rem 1.8rem;
    border-radius: var(--blob-d);
    box-shadow: 3px 3px 0 var(--soil), inset 0 0 0 2px var(--soil);
    min-width: 170px;
    text-align: center;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.stat-blob:nth-child(2) {
    transform: rotate(2deg);
}

.stat-blob:nth-child(3) {
    transform: rotate(-1deg);
}

.stat-blob:hover {
    transform: rotate(0) translateY(-3px);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--berry);
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: var(--font-note);
    font-size: 1rem;
    color: var(--soil);
    margin-top: 0.3rem;
}

/* Hero mushroom decorations */
.hero-mushroom-cluster {
    position: absolute;
    bottom: 10px;
    left: 4%;
    z-index: 2;
    display: flex;
    gap: 0.8rem;
    align-items: flex-end;
}

.m-shroom {
    position: relative;
    width: 60px;
    height: 78px;
}

.m-shroom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: var(--berry);
    border-radius: 50% 50% 12% 12% / 100% 100% 12% 12%;
    box-shadow: inset -8px -4px 0 rgba(0, 0, 0, 0.2);
}

.m-shroom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 22%;
    width: 56%;
    height: 48px;
    background: var(--bark-deep);
    border-radius: 30% 30% 40% 40% / 20% 20% 60% 60%;
    box-shadow: inset -4px 0 0 rgba(0, 0, 0, 0.1);
}

.shroom-a {
    transform: rotate(-6deg);
}

.shroom-b {
    width: 40px;
    height: 60px;
    transform: rotate(4deg);
}

.shroom-b::before {
    background: var(--mushroom);
    height: 26px;
    box-shadow: inset -6px -3px 0 rgba(0, 0, 0, 0.15);
}

.shroom-b::after {
    height: 34px;
}

.shroom-c {
    width: 32px;
    height: 44px;
    transform: rotate(-2deg);
}

.shroom-c::before {
    background: var(--moss);
    height: 20px;
}

.shroom-c::after {
    height: 24px;
}

/* ---------- ANNOTATIONS ---------- */
.annotation {
    font-family: var(--font-note);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--berry);
    display: inline-block;
}

.annotation-hero {
    margin-bottom: 0.4rem;
    transform: rotate(-6deg);
}

.annotation-section {
    margin-bottom: 0.4rem;
    color: var(--berry);
    background: var(--bark);
    padding: 0.2rem 0.7rem;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 1px 1px 0 var(--soil);
    transform: rotate(-3deg);
}

.section-soil .annotation-section {
    background: var(--bark);
}

.annotation-pop {
    position: absolute;
    top: -18px;
    right: -10px;
    background: var(--berry);
    color: var(--bark);
    padding: 0.15rem 0.6rem;
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
    font-size: 1rem;
    transform: rotate(-8deg);
}

.annotation-foot {
    color: var(--lichen);
}

/* ---------- SECTIONS ---------- */
.section {
    position: relative;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.section-soil {
    background: var(--soil);
    color: var(--bark);
}

.section-soil .section-title,
.section-soil .section-sub {
    color: var(--bark);
}

.section-soil .annotation-section {
    color: var(--bark);
    background: var(--berry);
    box-shadow: 1px 1px 0 #1a0e08;
}

.section-bark {
    background: var(--bark-deep);
}

.section-moss {
    background: var(--moss);
    color: var(--bark);
}

.section-moss .section-title,
.section-moss .section-sub {
    color: var(--bark);
}

.section-moss .annotation-section {
    color: var(--soil);
    background: var(--lichen);
}

.section::before,
.section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: var(--blob-c);
    opacity: 0.15;
}

.section-soil::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: var(--moss);
    transform: rotate(20deg);
}

.section-bark::before {
    width: 280px;
    height: 220px;
    top: -60px;
    left: -80px;
    background: var(--mushroom);
    border-radius: var(--blob-b);
    transform: rotate(-15deg);
    opacity: 0.4;
}

.section-moss::after {
    width: 220px;
    height: 220px;
    bottom: -70px;
    right: 10%;
    background: var(--soil);
    transform: rotate(10deg);
    opacity: 0.25;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    margin: 0 0 0.4rem;
    line-height: 1;
    text-align: center;
    color: var(--soil);
}

.section-sub {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    color: var(--soil-soft);
}

.section .annotation-section {
    display: block;
    margin: 0 auto 1rem;
    text-align: center;
    max-width: max-content;
}

/* ---------- BULLETIN BOARD ---------- */
.bulletin-board {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem 1.6rem;
    padding-top: 1rem;
}

.pin-card {
    position: relative;
    background: var(--bark);
    color: var(--soil);
    padding: 1.6rem 1.3rem 1.2rem;
    border-radius: 6px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.18),
                inset 0 0 0 1px rgba(58, 42, 26, 0.08);
    transform: rotate(2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pin-card.pin-1 { transform: rotate(-4deg); }
.pin-card.pin-2 { transform: rotate(3deg); }
.pin-card.pin-3 { transform: rotate(-2deg); }
.pin-card.pin-4 { transform: rotate(5deg); }
.pin-card.pin-5 { transform: rotate(-1deg); }
.pin-card.pin-6 { transform: rotate(2deg); }

.pin-card:hover {
    transform: rotate(0) translateY(-4px);
    box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.22);
    z-index: 3;
}

.pin-tack {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: var(--berry);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: inset -3px -3px 0 rgba(0, 0, 0, 0.25),
                0 2px 3px rgba(0, 0, 0, 0.3);
}

.pin-tack::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
}

.pin-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    margin: 0.3rem 0 0.3rem;
    line-height: 1.05;
    color: var(--soil);
}

.pin-meta {
    font-family: var(--font-note);
    font-size: 0.95rem;
    margin: 0 0 0.6rem;
    color: var(--moss);
}

.pin-meta strong {
    color: var(--berry);
    font-weight: 400;
}

.pin-body {
    margin: 0 0 0.9rem;
    font-size: 0.97rem;
    color: var(--soil);
}

.pin-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--font-note);
    font-size: 0.95rem;
    color: var(--moss);
    background: rgba(74, 106, 58, 0.14);
    padding: 0.05rem 0.55rem;
    border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
}

/* ---------- TIERS ---------- */
.tier-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.tier-card {
    position: relative;
    background: var(--bark);
    padding: 2rem 1.6rem 1.8rem;
    border-radius: var(--blob-a);
    box-shadow: 4px 5px 0 var(--soil);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:nth-child(1) { transform: rotate(-2deg); }
.tier-card:nth-child(2) { transform: rotate(1deg); }
.tier-card:nth-child(3) { transform: rotate(-1deg); }

.tier-card:hover {
    transform: rotate(0) translateY(-4px);
    box-shadow: 6px 8px 0 var(--soil);
}

.tier-card.tier-mycelium {
    background: var(--lichen);
    color: var(--soil);
}

.tier-badge {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 0.8rem;
}

.tier-badge .badge-cap {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 54px;
    height: 32px;
    background: var(--berry);
    border-radius: 50% 50% 12% 12% / 100% 100% 12% 12%;
    box-shadow: inset -8px -4px 0 rgba(0, 0, 0, 0.22);
}

.tier-badge .badge-cap::before,
.tier-badge .badge-cap::after {
    content: "";
    position: absolute;
    background: var(--bark);
    border-radius: 50%;
    opacity: 0.85;
}

.tier-badge .badge-cap::before {
    width: 8px;
    height: 8px;
    top: 6px;
    left: 14px;
}

.tier-badge .badge-cap::after {
    width: 5px;
    height: 5px;
    top: 16px;
    left: 32px;
}

.tier-badge .badge-stem {
    position: absolute;
    bottom: 4px;
    left: 24px;
    width: 22px;
    height: 28px;
    background: var(--bark-deep);
    border-radius: 30% 30% 40% 40% / 20% 20% 60% 60%;
    box-shadow: inset -4px 0 0 rgba(0, 0, 0, 0.1);
}

.tier-badge-double {
    width: 90px;
    height: 80px;
}

.tier-badge-double .badge-cap-small {
    width: 26px;
    height: 16px;
    top: 22px;
    left: 56px;
    background: var(--moss);
    box-shadow: inset -4px -2px 0 rgba(0, 0, 0, 0.18);
}

.tier-badge-double .badge-stem-small {
    width: 12px;
    height: 18px;
    bottom: 8px;
    left: 64px;
    background: var(--bark-deep);
}

.tier-badge-leaf {
    width: 70px;
    height: 70px;
}

.leaf-shape {
    position: absolute;
    inset: 8px;
    background: var(--moss);
    border-radius: 0% 100% 0% 100% / 50% 50% 50% 50%;
    box-shadow: inset -6px -6px 0 rgba(0, 0, 0, 0.12);
    transform: rotate(-30deg);
}

.leaf-shape::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 6%;
    width: 88%;
    height: 2px;
    background: var(--bark);
    opacity: 0.5;
    transform: rotate(45deg);
    transform-origin: left;
}

.tier-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0 0 0.2rem;
    color: var(--soil);
}

.tier-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--berry);
    margin: 0 0 1rem;
}

.tier-price small {
    font-size: 0.9rem;
    color: var(--soil-soft);
    font-weight: 400;
}

.tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.6rem;
    text-align: left;
    font-size: 0.97rem;
}

.tier-list li {
    padding: 0.3rem 0 0.3rem 1.4rem;
    position: relative;
    border-bottom: 1px dotted rgba(58, 42, 26, 0.25);
}

.tier-list li:last-child {
    border-bottom: none;
}

.tier-list li::before {
    content: "~";
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--berry);
    font-family: var(--font-note);
    font-size: 1.2rem;
    line-height: 1;
}

/* ---------- COMPOST FEED ---------- */
.compost-shell {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bark);
    color: var(--soil);
    padding: 1.8rem 1.6rem;
    border-radius: var(--blob-d);
    box-shadow: 4px 6px 0 var(--soil-soft);
    transform: rotate(-1deg);
}

.compost-feed {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 0.4rem;
}

.compost-feed::-webkit-scrollbar {
    width: 8px;
}

.compost-feed::-webkit-scrollbar-thumb {
    background: var(--moss);
    border-radius: 4px;
}

.compost-item {
    background: var(--bark-deep);
    padding: 0.7rem 0.9rem;
    border-radius: 18px 28px 16px 30px;
    border-left: 4px solid var(--moss);
    font-size: 0.97rem;
    transform: rotate(0);
    animation: settleIn 0.4s ease both;
}

.compost-item.fresh {
    border-left-color: var(--berry);
    background: #efe1c5;
    box-shadow: 2px 2px 0 var(--soil);
}

.compost-item .ci-who {
    font-family: var(--font-note);
    color: var(--berry);
    font-weight: 400;
    margin-right: 0.4rem;
}

.compost-item .ci-time {
    font-family: var(--font-note);
    color: var(--moss);
    font-size: 0.85rem;
    margin-left: 0.4rem;
}

@keyframes settleIn {
    from { opacity: 0; transform: translateY(-8px) rotate(-2deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0); }
}

/* ---------- GATHERING ---------- */
.gather-blob {
    max-width: 880px;
    margin: 0 auto;
    background: var(--bark);
    padding: 2.2rem;
    border-radius: var(--blob-b);
    box-shadow: 5px 7px 0 var(--soil);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.8rem;
    align-items: center;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.gather-blob:hover {
    transform: rotate(0);
}

.gather-date {
    background: var(--berry);
    color: var(--bark);
    padding: 1.2rem 1.4rem;
    border-radius: var(--blob-a);
    text-align: center;
    box-shadow: 3px 3px 0 var(--soil);
    transform: rotate(-4deg);
    min-width: 110px;
}

.gather-day {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3.4rem;
    line-height: 1;
}

.gather-month {
    display: block;
    font-family: var(--font-note);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.gather-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.4rem;
    margin: 0 0 0.2rem;
    line-height: 1;
    color: var(--soil);
}

.gather-place {
    font-family: var(--font-note);
    color: var(--moss);
    font-size: 1.05rem;
    margin: 0 0 0.6rem;
}

.gather-body {
    margin: 0 0 1rem;
    color: var(--soil-soft);
}

.gather-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rsvp-count {
    font-family: var(--font-note);
    color: var(--berry);
    font-size: 1.05rem;
}

.rsvp-count.bumped {
    animation: rsvpBump 0.5s ease;
}

@keyframes rsvpBump {
    0%   { transform: scale(1) rotate(0); }
    40%  { transform: scale(1.18) rotate(-4deg); }
    100% { transform: scale(1) rotate(0); }
}

/* ---------- JOIN FORM ---------- */
.join-form {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bark);
    padding: 2rem 1.8rem;
    border-radius: var(--blob-c);
    box-shadow: 4px 6px 0 var(--berry);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.4rem;
    transform: rotate(-1deg);
}

.join-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: var(--font-note);
    font-size: 1.05rem;
    color: var(--moss);
}

.join-label-wide {
    grid-column: 1 / -1;
}

.join-input {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 18px 28px 16px 30px;
    border: 2px solid var(--soil);
    background: var(--bark-deep);
    color: var(--soil);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.join-input:focus {
    outline: none;
    border-color: var(--berry);
    box-shadow: 0 0 0 3px rgba(138, 58, 90, 0.18);
}

.join-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.join-confirm {
    grid-column: 1 / -1;
    margin: 0.4rem 0 0;
    padding: 0.8rem 1rem;
    background: var(--lichen);
    color: var(--soil);
    border-radius: 28px 16px 30px 18px;
    font-family: var(--font-note);
    font-size: 1.1rem;
    transform: rotate(-1deg);
    box-shadow: 2px 2px 0 var(--soil);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--soil);
    color: var(--bark);
    padding: 2.6rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.footer-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--bark);
}

.footer-line {
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 0 0 0.6rem;
    color: var(--bark-deep);
}

.footer-meta {
    font-family: var(--font-note);
    color: var(--lichen);
    font-size: 1rem;
    margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding: 2rem 1rem 4rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 11vw, 4.4rem);
    }

    .hero-mushroom-cluster {
        left: 2%;
        bottom: 6px;
    }

    .gather-blob {
        grid-template-columns: 1fr;
    }

    .gather-date {
        justify-self: start;
    }

    .join-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-blob {
        width: 100%;
        max-width: 240px;
    }
}
