/* =========================================================================
   Potsu Plants — public stylesheet
   Cozy, light, glassy, green. Mobile-first.
   ========================================================================= */

:root {
    /* greens */
    --moss:        #344e41;
    --forest:      #3a5a40;
    --leaf:        #588157;
    --sage:        #a3b18a;
    --sage-soft:   #cdd6bd;
    --mint:        #e7efe1;

    /* neutrals */
    --cream:       #f7f5ee;
    --cream-2:     #fbfaf5;
    --ink:         #243027;
    --ink-soft:    #5a6b5d;
    --line:        rgba(52, 78, 65, 0.12);

    /* glass */
    --glass-bg:    rgba(255, 255, 255, 0.55);
    --glass-brd:   rgba(255, 255, 255, 0.7);
    --shadow-sm:   0 4px 16px rgba(52, 78, 65, 0.08);
    --shadow-md:   0 14px 40px rgba(52, 78, 65, 0.12);
    --shadow-lg:   0 30px 70px rgba(52, 78, 65, 0.18);

    --radius:      22px;
    --radius-sm:   14px;
    --maxw:        1180px;
    --ease:        cubic-bezier(0.22, 1, 0.36, 1);

    --font-head: "Fraunces", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.6;
    background:
        radial-gradient(1100px 700px at 85% -5%, rgba(88, 129, 87, 0.14), transparent 60%),
        radial-gradient(900px 600px at -5% 20%, rgba(163, 177, 138, 0.18), transparent 55%),
        linear-gradient(180deg, var(--cream-2), var(--cream));
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--forest); color: #fff; padding: .7rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.muted { color: var(--ink-soft); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; line-height: 1.08; color: var(--moss); letter-spacing: -0.01em; }
.eyebrow {
    display: inline-block; font-family: var(--font-body); font-weight: 600;
    font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--leaf); margin-bottom: .8rem;
}
.section-title { font-size: clamp(1.8rem, 4.2vw, 2.9rem); }
.section-sub { color: var(--ink-soft); max-width: 32ch; }

/* ---------- Buttons ---------- */
.btn {
    --bg: var(--forest); --fg: #fff;
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--bg); color: var(--fg);
    padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
    font-weight: 600; font-size: .95rem; cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
    box-shadow: var(--shadow-sm); will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn--primary { --bg: linear-gradient(135deg, var(--leaf), var(--forest)); }
.btn--ghost { background: transparent; color: var(--moss); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.6); }
.btn--light { --bg: #fff; --fg: var(--forest); }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Glass ---------- */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid var(--glass-brd);
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; transition: background .3s, box-shadow .3s; }
.site-header.scrolled {
    background: rgba(251, 250, 245, 0.78);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--forest); }
.brand__mark { display: grid; place-items: center; color: var(--leaf); }
.brand__name { font-family: var(--font-head); font-size: 1.32rem; font-weight: 600; color: var(--moss); }
.brand__name span { color: var(--leaf); }

.primary-nav { display: flex; align-items: center; gap: .4rem; }
.primary-nav a {
    padding: .5rem .9rem; border-radius: 999px; font-weight: 500; font-size: .95rem;
    color: var(--ink-soft); transition: color .2s, background .2s;
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--forest); background: rgba(255,255,255,.6); }
.nav-quiet { color: var(--sage) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--moss); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Flash ---------- */
.flash { margin-top: 1rem; padding: .85rem 1.1rem; border-radius: var(--radius-sm); font-weight: 500; border: 1px solid; }
.flash--success { background: #eaf3e6; color: #2f5d33; border-color: #cfe3c6; }
.flash--error   { background: #fbeceb; color: #8c2f2a; border-color: #f1cdca; }

/* ---------- Placeholder image ---------- */
.ph {
    position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
    border-radius: inherit; background: var(--mint); isolation: isolate;
}
.ph svg { width: 100%; height: 100%; }
.ph__tag {
    position: absolute; bottom: 10px; right: 10px;
    font-size: .66rem; font-weight: 600; letter-spacing: .04em;
    background: rgba(255,255,255,.78); color: var(--ink-soft);
    padding: .25rem .55rem; border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding-top: clamp(1.5rem, 5vw, 3rem); overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: .55; }
.hero__blob--1 { width: 460px; height: 460px; background: rgba(88,129,87,.45); top: -120px; right: -80px; animation: float 14s var(--ease) infinite; }
.hero__blob--2 { width: 380px; height: 380px; background: rgba(163,177,138,.5); bottom: -140px; left: -100px; animation: float 18s var(--ease) infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.08); } }

.hero__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: center; padding-block: clamp(2rem, 5vw, 4rem);
}
.hero__title { font-size: clamp(2.6rem, 7vw, 4.7rem); letter-spacing: -0.02em; }
.hero__title em { font-style: italic; color: var(--leaf); }
.hero__lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 42ch; margin: 1.3rem 0 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__stats { list-style: none; display: flex; gap: clamp(1.2rem, 4vw, 2.6rem); margin-top: 2.4rem; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--moss); }
.hero__stats span { font-size: .82rem; color: var(--ink-soft); }

.hero__art { position: relative; }
.hero__art-glow { position: absolute; inset: 8% 8% 8% 8%; background: radial-gradient(circle, rgba(88,129,87,.35), transparent 70%); filter: blur(36px); z-index: 0; }
.hero__art-card {
    position: relative; z-index: 1; border-radius: 30px; overflow: hidden;
    box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.7);
    transform: rotate(-2deg); transition: transform .6s var(--ease);
}
.hero__art:hover .hero__art-card { transform: rotate(0); }
.ph--hero { aspect-ratio: 4 / 5; }
.hero__chip {
    position: absolute; z-index: 2; padding: .55rem .9rem; border-radius: 999px;
    font-size: .82rem; font-weight: 600; color: var(--moss); box-shadow: var(--shadow-sm);
    display: inline-flex; align-items: center; gap: .45rem;
}
.hero__chip--a { top: 12%; left: -6%; animation: bob 5s ease-in-out infinite; }
.hero__chip--b { bottom: 14%; right: -4%; animation: bob 6s ease-in-out infinite .8s; }
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: .9rem 0; margin-top: 1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 1.6rem; white-space: nowrap; width: max-content; animation: scrollx 32s linear infinite; }
.marquee__track span { font-family: var(--font-head); font-size: 1.15rem; color: var(--sage); font-style: italic; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========================================================================
   FEATURED CAROUSEL
   ========================================================================= */
.featured { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }

.carousel { position: relative; }
.carousel__viewport {
    display: flex; gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 1.6rem;
    scrollbar-width: none; -ms-overflow-style: none;
    scroll-padding-left: clamp(1.1rem, 4vw, 2.2rem);
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible { outline: 2px solid var(--leaf); outline-offset: 4px; border-radius: var(--radius); }

.g-card {
    scroll-snap-align: start; flex: 0 0 clamp(240px, 30vw, 300px);
    background: rgba(255,255,255,.62); border: 1px solid var(--glass-brd);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
    cursor: pointer; position: relative;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.g-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.g-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.g-card__media .ph, .g-card__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; border-radius: 0; }
.g-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.g-card__body h3 { font-size: 1.2rem; }
.g-card__body p { font-size: .9rem; color: var(--ink-soft); margin: .35rem 0 .9rem; min-height: 2.6em; }
.g-card__foot { display: flex; align-items: center; justify-content: space-between; }
.g-card__expand { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.8); color: var(--forest); opacity: 0; transform: scale(.8); transition: .3s var(--ease); }
.g-card:hover .g-card__expand { opacity: 1; transform: scale(1); }

.price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--forest); }
.tag { font-size: .76rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; }
.tag--soft { background: var(--mint); color: var(--leaf); }

.carousel__btn {
    position: absolute; top: 42%; z-index: 5; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--line); background: rgba(255,255,255,.85); color: var(--forest);
    font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm);
    display: grid; place-items: center; transition: transform .3s, background .3s;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.carousel__btn:hover { transform: scale(1.08); background: #fff; }
.carousel__btn--prev { left: clamp(.3rem, 1vw, 1rem); }
.carousel__btn--next { right: clamp(.3rem, 1vw, 1rem); }
.carousel__progress { height: 4px; max-width: 220px; margin: .4rem auto 0; background: var(--line); border-radius: 99px; overflow: hidden; }
.carousel__progress span { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--sage), var(--leaf)); border-radius: 99px; transition: width .2s, transform .2s; }

/* =========================================================================
   STORY
   ========================================================================= */
.story { padding-block: clamp(3.5rem, 8vw, 6rem); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.story__art { position: relative; min-height: 360px; }
.story__art-a, .story__art-b { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 5px solid rgba(255,255,255,.7); width: 62%; }
.story__art-a { top: 0; left: 0; z-index: 1; }
.story__art-b { bottom: 0; right: 0; width: 55%; }
.story__copy p { color: var(--ink-soft); margin: 1rem 0 1.4rem; max-width: 46ch; }
.ticks { list-style: none; margin-bottom: 1.8rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.ticks li::before { content: "🌱"; position: absolute; left: 0; top: -1px; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { padding-block: clamp(2rem, 5vw, 4rem); }
.cta-band__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    padding: clamp(1.8rem, 4vw, 3rem); border-radius: 28px; box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(88,129,87,.16), rgba(163,177,138,.22));
}
.cta-band__inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band__inner p { color: var(--ink-soft); margin-top: .4rem; }

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 1.2rem; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(36,48,39,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: fade .3s ease; }
.lightbox__panel {
    position: relative; z-index: 1; width: min(880px, 100%); border-radius: 26px; overflow: hidden;
    display: grid; grid-template-columns: 1.1fr 1fr; box-shadow: var(--shadow-lg);
    animation: pop .4s var(--ease);
}
.lightbox__media { background: var(--mint); }
.lightbox__media .ph, .lightbox__media img { height: 100%; aspect-ratio: auto; object-fit: cover; border-radius: 0; }
.lightbox__info { padding: clamp(1.4rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: center; }
.lightbox__info h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lightbox__info p { color: var(--ink-soft); margin: .6rem 0 1.4rem; }
.lightbox__foot { display: flex; align-items: center; gap: 1.2rem; }
.lightbox__close { position: absolute; top: 12px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.85); font-size: 1.5rem; cursor: pointer; color: var(--moss); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.97); } }

/* =========================================================================
   SHOP
   ========================================================================= */
.shop-hero { position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) 0 1rem; overflow: hidden; }
.shop-hero__blob { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(163,177,138,.4); filter: blur(70px); top: -160px; right: -60px; }
.shop-hero__title { font-size: clamp(2.2rem, 6vw, 3.6rem); position: relative; }
.shop-hero__lead { color: var(--ink-soft); max-width: 50ch; margin-top: .8rem; position: relative; }

.shop { padding-block: 2rem clamp(3.5rem, 7vw, 6rem); }
.shop__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
    border: 1px solid var(--line); background: rgba(255,255,255,.5); color: var(--ink-soft);
    padding: .5rem 1rem; border-radius: 999px; font-weight: 500; font-size: .88rem; cursor: pointer;
    transition: .25s var(--ease);
}
.chip:hover { color: var(--forest); border-color: var(--sage); }
.chip.is-active { background: linear-gradient(135deg, var(--leaf), var(--forest)); color: #fff; border-color: transparent; }
.search { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; }
.search__icon { color: var(--sage); font-size: 1.1rem; }
.search input { border: 0; background: none; outline: none; font-family: inherit; font-size: .92rem; color: var(--ink); width: clamp(140px, 30vw, 220px); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.product-grid--3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.p-card {
    background: rgba(255,255,255,.62); border: 1px solid var(--glass-brd); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.p-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.p-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.p-card__media .ph, .p-card__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; border-radius: 0; transition: transform .6s var(--ease); }
.p-card:hover .p-card__img, .p-card:hover .ph { transform: scale(1.05); }
.badge { position: absolute; top: 12px; font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; }
.badge--out { left: 12px; background: rgba(36,48,39,.8); color: #fff; }
.badge--low { left: 12px; background: #fff; color: var(--leaf); box-shadow: var(--shadow-sm); }
.badge--pet { right: 12px; background: rgba(255,255,255,.85); }
.p-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.p-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.p-card__top h3 { font-size: 1.18rem; }
.p-card__tagline { color: var(--ink-soft); font-size: .9rem; margin: .35rem 0 .9rem; min-height: 2.5em; }
.p-card__meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.meta-pill { font-size: .74rem; background: var(--mint); color: var(--leaf); padding: .28rem .6rem; border-radius: 999px; font-weight: 600; }

.empty-note { text-align: center; color: var(--ink-soft); padding: 3rem 0; font-size: 1.05rem; }

/* =========================================================================
   PRODUCT DETAIL
   ========================================================================= */
.pd { padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem); }
.pd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pd__media { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.7); position: sticky; top: 90px; }
.pd__media .ph, .pd__img { aspect-ratio: 4/5; object-fit: cover; border-radius: 0; }
.pd__back { color: var(--ink-soft); font-size: .9rem; }
.pd__back:hover { color: var(--forest); }
.pd__title { font-size: clamp(2rem, 5vw, 3.2rem); margin: .8rem 0 .3rem; }
.pd__tagline { color: var(--ink-soft); font-size: 1.1rem; }
.pd__price { font-family: var(--font-head); font-size: 2rem; color: var(--forest); margin: 1.2rem 0; }
.pd__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.5rem 0; }
.pd__specs > div { background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem 1rem; }
.spec-k { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); font-weight: 600; }
.spec-v { font-weight: 600; color: var(--moss); }
.pd__desc { color: var(--ink-soft); line-height: 1.8; margin: 1.4rem 0; }
.pd__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.6rem; }
.pd__note { font-size: .85rem; color: var(--ink-soft); }
.pd__related { margin-top: clamp(3rem, 7vw, 5rem); }
.pd__related .section-title { margin-bottom: 1.6rem; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { margin-top: 2rem; padding-top: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(231,239,225,.5)); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer h4 { font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); margin-bottom: 1rem; }
.site-footer a { display: block; color: var(--ink-soft); padding: .25rem 0; font-size: .92rem; }
.site-footer a:hover { color: var(--forest); }
.site-footer__brand p { margin-top: .8rem; max-width: 30ch; font-size: .92rem; }
.newsletter { display: flex; gap: .4rem; margin-top: .8rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .3rem .3rem 1rem; max-width: 260px; }
.newsletter input { border: 0; outline: none; flex: 1; font-family: inherit; font-size: .9rem; background: none; }
.newsletter button { border: 0; background: var(--forest); color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.newsletter__ok { display: block; margin-top: .6rem; color: var(--leaf); font-weight: 600; }
.site-footer__base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.3rem 0; border-top: 1px solid var(--line); font-size: .84rem; color: var(--ink-soft); }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__art { max-width: 460px; margin-inline: auto; order: -1; }
    .story__grid, .pd__grid { grid-template-columns: 1fr; }
    .pd__media { position: static; }
    .lightbox__panel { grid-template-columns: 1fr; max-height: 88vh; overflow: auto; }
    .lightbox__media .ph, .lightbox__media img { aspect-ratio: 16/10; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
        background: rgba(251,250,245,.96); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
        padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 1.6rem; gap: .2rem;
        box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .4s var(--ease);
        border-bottom: 1px solid var(--line);
    }
    .primary-nav.open { transform: translateY(0); }
    .primary-nav a { padding: .85rem 1rem; }
    .hero__stats { gap: 1.4rem; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .cta-band__inner { text-align: center; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
