/* ---------- Tokens ---------- */
:root {
  --forest: #0f2410;
  --forest-2: #163318;
  --forest-3: #1f4521;
  --lime: #a8e04a;
  --kiwi: #8cc63f;
  --kiwi-light: #c9ec84;
  --flesh: #f4f7e4;
  --skin: #6b4527;
  --copper: #e07a3c;
  --copper-2: #ff9a55;
  --cream: #fbf8ef;
  --tint: #eef6dc;
  --surface: #ffffff;
  --ink: #142013;
  --ink-soft: #56624f;
  --line: #e2e6d3;
  --on-dark: #eef7e0;
  --on-dark-soft: #a9bd9a;
  --grad: linear-gradient(100deg, #6fbf2a 0%, #a8e04a 45%, #f2d24b 100%);
  --grad-dark: linear-gradient(100deg, #b7ef5c 0%, #e9f78a 60%, #ffcf6b 100%);
  --radius: 26px;
  --shadow-lg: 0 30px 60px -20px rgb(15 36 16 / 35%), 0 12px 24px -12px rgb(15 36 16 / 25%);
  --shadow-md: 0 1px 2px rgb(15 36 16 / 6%), 0 14px 30px -10px rgb(15 36 16 / 18%);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "DM Sans", system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #0d180d;
    --tint: #12210f;
    --surface: #172716;
    --ink: #eef7e0;
    --ink-soft: #a9bd9a;
    --line: #26391f;
    --grad: var(--grad-dark);
  }
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font: 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.02; margin: 0 0 .45em; letter-spacing: -0.025em; }
h1 { font-size: clamp(3rem, 7.4vw, 5.8rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; max-width: 18ch; }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; position: relative; }
.grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1em;
}
.eyebrow--lime { color: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--copper);
  display: inline-flex; align-items: center; gap: .5em; text-decoration: none; font-weight: 700;
  background: var(--bg); color: #1b0f06; padding: .95em 1.6em; border-radius: 999px; border: 0;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--small { padding: .6em 1.2em; font-size: .92rem; background: var(--lime); color: var(--forest); }
.btn--glow {
  background: linear-gradient(135deg, var(--lime), #e6f56d); color: var(--forest);
  box-shadow: 0 0 0 0 rgb(168 224 74 / 60%), 0 12px 30px -8px rgb(168 224 74 / 60%);
  animation: pulse 2.6s infinite;
}
.btn--glass {
  background: rgb(255 255 255 / 8%); color: var(--on-dark);
  box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / 22%); backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgb(255 255 255 / 14%); }
.btn--dark { background: var(--forest); color: var(--lime); box-shadow: 0 16px 30px -12px rgb(15 36 16 / 60%); }
.btn--big { font-size: clamp(1rem, 2.6vw, 1.25rem); padding: 1.05em 1.8em; overflow-wrap: anywhere; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgb(168 224 74 / 55%), 0 12px 30px -8px rgb(168 224 74 / 60%); }
  70% { box-shadow: 0 0 0 16px rgb(168 224 74 / 0%), 0 12px 30px -8px rgb(168 224 74 / 60%); }
  100% { box-shadow: 0 0 0 0 rgb(168 224 74 / 0%), 0 12px 30px -8px rgb(168 224 74 / 60%); }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; transition: background .3s, box-shadow .3s;
  color: var(--on-dark);
}
.nav.is-scrolled {
  background: rgb(15 36 16 / 82%); backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgb(255 255 255 / 8%);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: .6em; text-decoration: none; font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand img { transition: transform .6s; }
.brand:hover img { transform: rotate(180deg); }
.nav__links { display: flex; align-items: center; gap: 2em; }
.nav__links a:not(.btn) { text-decoration: none; color: var(--on-dark-soft); font-weight: 500; transition: color .2s; }
.nav__links a:not(.btn):hover { color: #fff; }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav__toggle span { display: block; height: 2px; background: currentColor; margin: 6px 0; transition: transform .25s; color: var(--on-dark); }

@media (max-width: 780px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 76px; left: 12px; right: 12px; flex-direction: column; align-items: stretch; gap: 0;
    background: rgb(15 36 16 / 96%); backdrop-filter: blur(14px); border-radius: 20px;
    padding: 10px 18px 18px; box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .nav__links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid rgb(255 255 255 / 8%); }
  .nav__links .btn { margin-top: 14px; justify-content: center; }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav.is-open { background: rgb(15 36 16 / 90%); }
  .nav.is-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(1200px 600px at 80% 20%, var(--forest-3) 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, var(--forest-2) 0%, transparent 60%),
    var(--forest);
  padding: calc(76px + clamp(40px, 7vw, 90px)) 0 clamp(120px, 14vw, 180px);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; pointer-events: none; }
.hero__glow--a { width: 520px; height: 520px; background: #6fbf2a; right: -120px; top: 40px; animation: drift 14s ease-in-out infinite; }
.hero__glow--b { width: 380px; height: 380px; background: #e07a3c; left: -140px; bottom: -60px; opacity: .28; animation: drift 18s ease-in-out infinite reverse; }
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift { 50% { transform: translate(-40px, 30px) scale(1.08); } }

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.pill {
  display: inline-flex; align-items: center; gap: .6em; font-size: .88rem; font-weight: 500;
  padding: .45em 1em; border-radius: 999px; background: rgb(255 255 255 / 7%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 14%); margin-bottom: 1.6em; color: var(--on-dark-soft);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.hero h1 { color: #fff; }
.hero .grad { background: var(--grad-dark); -webkit-background-clip: text; background-clip: text; }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--on-dark-soft); max-width: 44ch; }
.lede strong { color: #fff; font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2em; }

.stats { display: flex; flex-wrap: wrap; gap: 14px 36px; margin: 2.6em 0 0; }
.stats div { border-left: 2px solid rgb(168 224 74 / 45%); padding-left: 14px; }
.stats dt { font-family: var(--display); font-weight: 800; font-size: 2rem; line-height: 1; color: #fff; }
.stats dd { margin: 4px 0 0; font-size: .85rem; color: var(--on-dark-soft); max-width: 16ch; }

/* stage */
.hero__stage { position: relative; aspect-ratio: 1 / 1.02; width: 100%; max-width: 540px; justify-self: center; }
.kiwi-big {
  position: absolute; inset: 8% 8% auto auto; width: 72%; aspect-ratio: 1;
  filter: drop-shadow(0 40px 60px rgb(0 0 0 / 45%)) drop-shadow(0 0 60px rgb(168 224 74 / 35%));
}
.kiwi-big img { width: 100%; animation: spin 60s linear infinite; }
.kiwi-big::after {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgb(255 255 255 / 45%), transparent 42%);
  mix-blend-mode: soft-light;
}
@keyframes spin { to { transform: rotate(360deg); } }

.phone {
  position: absolute; width: 42%; aspect-ratio: 9 / 18.5; border-radius: 34px; padding: 9px;
  background: linear-gradient(145deg, #2a2f2a, #0c0f0c);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgb(255 255 255 / 12%);
  transform-style: preserve-3d; transition: transform .3s ease-out;
}
.phone__notch { position: absolute; top: 16px; left: 50%; width: 30%; height: 16px; transform: translateX(-50%); background: #0c0f0c; border-radius: 999px; z-index: 2; }
.phone--a { left: 0; top: 22%; --r: -9deg; transform: rotate(var(--r)); animation: floaty 7s ease-in-out infinite; }
.phone--b { right: 2%; bottom: 0; --r: 7deg; transform: rotate(var(--r)); animation: floaty 8s ease-in-out infinite reverse; }
@keyframes floaty { 50% { translate: 0 -14px; } }
.screen {
  height: 100%; border-radius: 26px; padding: 42px 14px 14px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden; font-family: var(--display);
}
.screen__label { font-size: .72rem; font-weight: 700; opacity: .7; letter-spacing: .02em; }
.screen--trace { background: linear-gradient(170deg, #fff6e0, #ffe0c2); color: #5a3417; align-items: center; }
.trace {
  flex: 1; display: grid; place-items: center; font-size: clamp(4rem, 9vw, 7rem); font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 3px #e07a3c;
  background: repeating-linear-gradient(90deg, transparent 0 6px, rgb(224 122 60 / 18%) 6px 8px);
  -webkit-background-clip: text; background-clip: text;
  animation: tracepulse 3s ease-in-out infinite;
}
@keyframes tracepulse { 50% { -webkit-text-stroke-color: #6fbf2a; } }
.stars { color: #f2b21b; letter-spacing: .2em; font-size: 1.1rem; }
.screen--quiz { background: linear-gradient(170deg, #eaf7d6, #c9ec84); color: var(--forest); }
.quiz__card {
  background: #fff; border-radius: 16px; padding: 14px; font-size: .9rem; font-weight: 700; line-height: 1.25;
  box-shadow: 0 8px 18px -8px rgb(15 36 16 / 30%); flex: 1; display: grid; place-items: center; text-align: center;
}
.quiz__opt { background: rgb(255 255 255 / 60%); border-radius: 12px; padding: 9px 12px; font-size: .78rem; font-weight: 700; }
.quiz__opt--ok { background: var(--forest); color: var(--lime); }

.float-chip {
  position: absolute; z-index: 3; font-weight: 700; font-size: .9rem; padding: .6em 1.05em; border-radius: 14px;
  background: rgb(15 36 16 / 72%); color: #fff; backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 22%), 0 16px 30px -12px rgb(0 0 0 / 50%);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip--a { top: 4%; left: 12%; }
.float-chip--b { top: 2%; right: 0; animation-delay: -3s; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(50px, 8vw, 110px); fill: var(--cream); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stage { max-width: 420px; margin-top: 20px; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--lime); color: var(--forest); transform: rotate(-2deg); margin: -34px -10px 0;
  position: relative; z-index: 2; box-shadow: 0 18px 40px -18px rgb(15 36 16 / 45%);
}
.marquee__track {
  display: flex; gap: 28px; width: max-content; padding: 18px 0; align-items: center;
  font-family: var(--display); font-weight: 800; font-size: clamp(1.2rem, 2.4vw, 1.8rem); letter-spacing: -0.01em;
  animation: marquee 150s linear infinite;
}
.marquee__track i { font-style: normal; color: var(--copper); font-size: .8em; }
.marquee__track b { font-weight: 800; font-style: italic; color: #0b3d10; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section__head { margin-bottom: clamp(36px, 5vw, 60px); }
.section__lede { color: var(--ink-soft); max-width: 52ch; font-size: 1.12rem; }

/* bento services */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile {
  position: relative; overflow: hidden; background: var(--surface); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  transform-style: preserve-3d; transition: transform .25s ease-out, box-shadow .25s;
}
.tile:hover { box-shadow: var(--shadow-lg); }
.tile p { color: var(--ink-soft); margin: 0; }
.tile__icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 22px;
  background: linear-gradient(145deg, var(--kiwi-light), var(--kiwi));
  box-shadow: 0 10px 20px -8px rgb(111 191 42 / 70%), inset 0 -3px 0 rgb(0 0 0 / 10%);
}
.tile--hero {
  grid-row: span 2; color: var(--on-dark); border: 0;
  background: radial-gradient(500px 300px at 100% 0%, var(--forest-3), transparent 70%), var(--forest);
}
.tile--hero h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; }
.tile--hero p { color: var(--on-dark-soft); font-size: 1.08rem; max-width: 30ch; }
.tile--hero .tile__icon { background: linear-gradient(145deg, var(--lime), #e6f56d); }
.tile__deco {
  position: absolute; right: -80px; bottom: -80px; width: 280px; aspect-ratio: 1; border-radius: 50%;
  background: url("../images/logo.svg") center/contain no-repeat; opacity: .9;
  animation: spin 50s linear infinite; filter: drop-shadow(0 0 40px rgb(168 224 74 / 35%));
}
.tile--wide { grid-column: span 2; }
.tile--copper { background: linear-gradient(135deg, #ffb27a, var(--copper)); border: 0; color: #2a1407; }
.tile--copper p { color: #4a2610; }
.tile--copper .tile__icon { background: linear-gradient(145deg, #fff3e6, #ffd2ae); box-shadow: 0 10px 20px -8px rgb(160 70 20 / 60%); }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--hero { grid-row: auto; grid-column: span 2; min-height: 320px; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .tile--hero, .tile--wide { grid-column: auto; }
}

/* dark work section */
.section--dark {
  background: radial-gradient(900px 500px at 90% 0%, var(--forest-3), transparent 60%), var(--forest);
  color: var(--on-dark); overflow: hidden;
}
.section--dark h2 { color: #fff; }
.section--dark .section__lede { color: var(--on-dark-soft); }
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .works { grid-template-columns: 1fr; } }
.work {
  --c1: #fff; --c2: #eee;
  position: relative; overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  border-radius: var(--radius); padding: 30px; min-height: 360px; color: var(--forest);
  background: linear-gradient(160deg, var(--c1), var(--c2));
  box-shadow: 0 30px 60px -24px rgb(0 0 0 / 60%);
  transform-style: preserve-3d; transition: transform .25s ease-out;
}
.work::before {
  content: ""; position: absolute; width: 260px; aspect-ratio: 1; right: -90px; top: -90px; border-radius: 50%;
  background: rgb(255 255 255 / 35%); filter: blur(4px);
}
.work--fairy { --c1: #ffd9ec; --c2: #ffb3d4; }
.work--review { --c1: #d9f7a6; --c2: var(--lime); }
.work--loom { --c1: #ffe2c4; --c2: #ffb27a; }
.work__emoji { font-size: 2.6rem; margin-bottom: auto; position: relative; }
.work__tag { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin: 30px 0 8px; }
.work h3 { font-size: clamp(1.9rem, 3vw, 2.4rem); font-weight: 800; }
.work p { margin: 0; opacity: .82; }
.work__link { margin-top: 22px; font-weight: 700; display: inline-flex; gap: .4em; align-items: center; }
.work__link span { transition: transform .2s; }
.work:hover .work__link span { transform: translate(3px, -3px); }

/* process */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; background: var(--surface); border-radius: var(--radius); padding: 30px 26px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden;
}
.step::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--grad);
}
.step__num {
  font-family: var(--display); font-weight: 800; font-size: 3.6rem; line-height: 1; display: block; margin-bottom: 14px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 1.6rem; }
.step p { color: var(--ink-soft); margin: 0; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: 20px; background: var(--tint); }
.value > span { font-size: 1.6rem; line-height: 1; }
.value h3 { font-size: 1.15rem; margin-bottom: .25em; }
.value p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* CTA + contact form */
.cta {
  position: relative; overflow: hidden; border-radius: 36px; padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(600px 400px at 0% 100%, #f2d24b 0%, transparent 60%),
    radial-gradient(700px 500px at 100% 0%, #6fbf2a 0%, transparent 60%),
    var(--lime);
  color: var(--forest); box-shadow: 0 40px 80px -30px rgb(111 191 42 / 60%);
}
.cta__kiwi {
  position: absolute; left: -12%; bottom: -22%; width: min(460px, 50%);
  animation: spin 40s linear infinite; filter: drop-shadow(0 30px 50px rgb(15 36 16 / 35%)); opacity: .35;
}
.cta__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .cta { padding: 30px 14px 14px; border-radius: 28px; }
  .cta__copy { padding: 0 8px; }
  .form { padding: 22px 16px; border-radius: 22px; }
  .form .btn--big { width: 100%; justify-content: center; }
}
.cta h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); color: var(--forest); }
.cta__copy p { font-size: 1.12rem; font-weight: 500; }
.eyebrow--dark { color: var(--forest); opacity: .7; }
.cta__mail {
  display: inline-block; margin-top: .4em; font-weight: 700; color: var(--forest); text-decoration: none;
  border-bottom: 2px solid rgb(15 36 16 / 30%); padding-bottom: 2px;
}
.cta__mail:hover { border-color: var(--forest); }

.form {
  position: relative; background: rgb(255 255 255 / 88%); backdrop-filter: blur(10px);
  border-radius: 28px; padding: clamp(22px, 3.5vw, 36px); overflow: hidden;
  box-shadow: 0 30px 60px -24px rgb(15 36 16 / 45%), inset 0 0 0 1px rgb(255 255 255 / 70%);
  display: grid; gap: 18px; color: var(--forest);
}
.form::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 6px;
  background: linear-gradient(90deg, #6fbf2a, #a8e04a, #f2d24b, #e07a3c);
}
.form__row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row--half { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; margin: 0; }
.field label, .chips legend { font-family: var(--display); font-weight: 700; font-size: 1rem; }
.req { color: var(--copper); }
.form input[type="text"], .form input[type="email"], .form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--forest);
  background: #fff; border: 2px solid #dfe9c8; border-radius: 16px; padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.form textarea { resize: vertical; min-height: 130px; }
.form input::placeholder, .form textarea::placeholder { color: #8a977f; }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--kiwi); box-shadow: 0 0 0 5px rgb(168 224 74 / 35%);
}
.chips { border: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { margin-bottom: 8px; padding: 0; }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block; padding: .5em .95em; border-radius: 999px; font-weight: 600; font-size: .92rem;
  background: #fff; border: 2px solid #dfe9c8; transition: all .15s;
}
.chips label:hover span { border-color: var(--kiwi); }
.chips input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--lime); }
.chips input:focus-visible + span { box-shadow: 0 0 0 4px rgb(168 224 74 / 45%); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.form .btn--big { font-size: 1.05rem; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }
.form__status { margin: 0; font-weight: 600; font-size: .95rem; }
.form__status.is-success { color: #2f6b12; }
.form__status.is-error { color: #b3401a; }

/* footer */
.footer { background: var(--forest); color: var(--on-dark-soft); padding: 34px 0; font-size: .92rem; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.brand--footer { color: #fff; font-size: 1.1rem; }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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