/* ==========================================================================
   Bauchgefühl — Landing Page Stylesheet
   Brand: warm, organic, trustworthy. Food & health.
   Colors: orange #f77913, green #77bc3b, light-green #99d362, cream #f3e8ce
   Fonts (self-hosted): Bricolage Grotesque (display) + Figtree (body)
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque-latin-ext.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/figtree-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/figtree-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --orange: #f77913;
  --orange-deep: #e0640a;
  --green: #77bc3b;
  --green-deep: #5a9a28;
  --green-light: #99d362;
  --cream: #f3e8ce;
  --cream-soft: #faf4e6;
  --ink: #221a10;
  --ink-soft: #4b4234;
  --muted: #7c715c;
  --line: #e6d9bd;
  --white: #fffdf8;

  --bg: var(--cream-soft);
  --surface: var(--white);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(34, 26, 16, .06);
  --shadow: 0 12px 36px -12px rgba(34, 26, 16, .18);
  --shadow-lg: 0 30px 70px -24px rgba(34, 26, 16, .28);
  --shadow-green: 0 18px 44px -16px rgba(90, 154, 40, .5);

  --font-display: 'Bricolage Grotesque', 'Figtree', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .25vw, 1.12rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(119, 188, 59, .14);
  padding: .42rem .9rem;
  border-radius: var(--radius-pill);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
}
.section-head { max-width: 44ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.2rem); margin-top: 1rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; max-width: 52ch; }
.text-center { text-align: center; }
.text-center .section-head { margin-inline: auto; }
.text-center .eyebrow { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bw: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  padding: .92rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  will-change: transform;
  text-align: center;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #15300a;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px -16px rgba(90,154,40,.62); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-soon {
  position: relative;
  background: linear-gradient(180deg, #2a2118, var(--ink));
  color: var(--cream);
}
.btn-soon:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn[disabled], .btn[aria-disabled="true"] { cursor: default; }

.badge-soon {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .92rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px dashed var(--orange);
  padding: .62rem 1.1rem;
  border-radius: var(--radius-pill);
}
.badge-soon .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(247,121,19,.5);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(247,121,19,.55); }
  70% { box-shadow: 0 0 0 12px rgba(247,121,19,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,121,19,0); }
}
@media (prefers-reduced-motion: reduce) { .badge-soon .dot { animation: none; } }

/* ---------- App Store buttons ---------- */
.btn-appstore {
  background: linear-gradient(180deg, #2a2118, var(--ink));
  color: var(--cream);
}
.btn-appstore:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-appstore svg { width: 1.25em; height: 1.25em; }

/* Two-line Apple-style badge (Hero / Final CTA) */
.appstore-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: linear-gradient(180deg, #2a2118, var(--ink));
  color: var(--cream);
  padding: .7rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.appstore-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.appstore-badge svg { width: 1.9rem; height: 1.9rem; flex: none; }
.appstore-badge .label { display: inline-flex; flex-direction: column; line-height: 1.05; text-align: left; }
.appstore-badge .label small { font-size: .68rem; font-weight: 600; opacity: .8; letter-spacing: .02em; }
.appstore-badge .label strong { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .8rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -.02em; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .5rem .85rem; border-radius: var(--radius-pill);
  font-weight: 500; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(119,188,59,.12); }
.nav-right { display: flex; align-items: center; gap: .7rem; }

.lang-switch {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 3px; box-shadow: var(--shadow-sm);
}
.lang-switch a {
  font-size: .85rem; font-weight: 600; color: var(--muted);
  padding: .3rem .68rem; border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.lang-switch a[aria-current="true"] { background: var(--green); color: #15300a; }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--surface); }
.menu-toggle svg { width: 22px; height: 22px; }
@media (max-width: 860px) {
  .nav-links {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .8rem var(--gutter) 1.2rem; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8rem 1rem; font-size: 1.05rem; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-grid {
  display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero-copy h1 {
  font-size: clamp(2.5rem, 1.4rem + 5.4vw, 4.6rem);
  margin: 1.2rem 0 0;
}
.hero-copy h1 .accent { color: var(--orange); }
.hero-lead { margin-top: 1.4rem; font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); color: var(--ink-soft); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; align-items: center; }
.hero-meta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--muted); font-size: .94rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 1.1em; height: 1.1em; color: var(--green-deep); }

/* organic blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: -1; pointer-events: none; }
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle at 30% 30%, var(--green-light), transparent 65%); top: -180px; right: -160px; opacity: .55; }
.blob-2 { width: 460px; height: 460px; background: radial-gradient(circle at 60% 40%, rgba(247,121,19,.5), transparent 64%); bottom: -220px; left: -160px; }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035; mix-blend-mode: multiply;
  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='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative; width: min(300px, 78vw); margin-inline: auto;
  aspect-ratio: 1320 / 2868;
  border-radius: 13% / 6%;
  background: #0c0c0e;
  padding: 3.2%;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone::after {
  content: ""; position: absolute; top: 2.6%; left: 50%; transform: translateX(-50%);
  width: 30%; height: 2.2%; background: #0c0c0e; border-radius: 999px; z-index: 3;
}
.phone img, .phone .phone-screen {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 10% / 4.6%;
  background: #000;
}
.hero-phone { position: relative; }
.hero-phone .phone { transform: rotate(2.5deg); }
.hero-phone .float-card {
  position: absolute; background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem;
  border: 1px solid var(--line); font-size: .9rem; font-weight: 600;
}
.hero-phone .fc-1 { top: 12%; left: -6%; }
.hero-phone .fc-2 { bottom: 14%; right: -4%; }
.hero-phone .fc-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero-phone .fc-icon svg { width: 18px; height: 18px; }
.fc-green { background: rgba(119,188,59,.16); color: var(--green-deep); }
.fc-orange { background: rgba(247,121,19,.15); color: var(--orange-deep); }
.fc-sub { display:block; font-weight: 500; color: var(--muted); font-size: .76rem; }

@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-phone .fc-1 { animation: float-y 6s var(--ease) infinite; }
  .hero-phone .fc-2 { animation: float-y 7s var(--ease) infinite .8s; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--cream); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center; justify-content: center; padding-block: 1.5rem; }
.trust-item { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink-soft); font-size: .96rem; }
.trust-item svg { width: 1.25em; height: 1.25em; color: var(--green-deep); flex: none; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--green) 40%, var(--line)); }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--green-light), var(--green));
  color: #163006; margin-bottom: 1.1rem; box-shadow: var(--shadow-green);
}
.card-icon.alt { background: linear-gradient(160deg, #ffb35a, var(--orange)); color: #4a2402; box-shadow: 0 16px 36px -14px rgba(247,121,19,.5); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.32rem; }
.card p { margin-top: .6rem; color: var(--ink-soft); }

/* ---------- Showcase (alternating) ---------- */
.showcase { display: grid; gap: clamp(3rem, 8vw, 6rem); }
.show-row { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .show-row { grid-template-columns: 1fr 1fr; }
  .show-row.reverse .show-media { order: 2; }
}
.show-copy .eyebrow { margin-bottom: 1rem; }
.show-copy h3 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); }
.show-copy p { margin-top: 1rem; color: var(--ink-soft); }
.show-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.show-list li { display: flex; gap: .7rem; align-items: flex-start; }
.show-list svg { width: 1.3em; height: 1.3em; color: var(--green-deep); flex: none; margin-top: .2em; }
.show-media { display: flex; justify-content: center; }
.show-media .phone { transform: rotate(-2deg); }
.show-row.reverse .show-media .phone { transform: rotate(2deg); }

/* ---------- Privacy band ---------- */
.privacy {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(119,188,59,.25), transparent 50%),
    linear-gradient(160deg, #1d3a12, #15300a);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.privacy h2 { color: var(--white); font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.8rem); }
.privacy .eyebrow { background: rgba(255,255,255,.14); color: #cdeeaa; }
.privacy .eyebrow::before { background: var(--orange); }
.privacy p { color: #e6efd9; margin-top: 1rem; max-width: 60ch; }
.privacy-grid { margin-top: 2rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
.privacy-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.2rem 1.3rem;
  backdrop-filter: blur(4px);
}
.privacy-item h4 { color: var(--white); font-size: 1.1rem; display: flex; align-items: center; gap: .6rem; }
.privacy-item h4 svg { width: 1.2em; height: 1.2em; color: var(--green-light); }
.privacy-item p { color: #d6e3c6; margin-top: .45rem; font-size: .96rem; }

/* ---------- Guide teaser ---------- */
.teaser {
  display: grid; gap: clamp(2rem,5vw,3.5rem); align-items: center; grid-template-columns: 1fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); overflow: hidden;
}
@media (min-width: 820px) { .teaser { grid-template-columns: 1.2fr .8fr; } }
.teaser h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
.teaser p { margin-top: 1rem; color: var(--ink-soft); max-width: 46ch; }
.teaser-steps { margin-top: 1.6rem; display: grid; gap: .8rem; counter-reset: step; }
.teaser-steps li { display: flex; gap: .9rem; align-items: center; font-weight: 500; }
.teaser-steps li::before {
  counter-increment: step; content: counter(step);
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: var(--cream); color: var(--green-deep); font-weight: 700; font-family: var(--font-display);
  display: grid; place-items: center; border: 1px solid var(--line);
}
.teaser-media { display: flex; justify-content: center; }
.teaser-media .phone { width: min(240px, 60vw); transform: rotate(3deg); }

/* ---------- Final CTA ---------- */
.cta-final {
  text-align: center;
  background: linear-gradient(165deg, var(--green-light), var(--green) 60%, var(--green-deep));
  border-radius: var(--radius-lg); color: #15300a;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative; overflow: hidden;
}
.cta-final h2 { color: #143006; font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem); }
.cta-final p { margin: 1rem auto 0; max-width: 46ch; color: #1f4310; font-weight: 500; }
.cta-final .cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.cta-final .btn-ghost { background: rgba(255,255,255,.92); border-color: transparent; }
.cta-final .mark-bg {
  position: absolute; width: 360px; height: 360px; right: -80px; bottom: -120px; opacity: .14; border-radius: 22%;
}

/* ---------- Disclaimer note ---------- */
.disclaimer {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; color: var(--ink-soft); font-size: .96rem;
  max-width: 70ch; margin-inline: auto;
}
.disclaimer svg { width: 1.4em; height: 1.4em; color: var(--orange-deep); flex: none; margin-top: .15em; }
.disclaimer strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: clamp(3rem,7vw,6rem); }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer .brand { color: var(--cream); }
.footer-about p { margin-top: 1rem; color: #c6bba6; max-width: 38ch; font-size: .98rem; }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); margin-bottom: 1rem; }
.footer-col a { display: block; padding: .35rem 0; color: #c6bba6; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--green-light); transform: translateX(3px); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; color: #978c78; font-size: .88rem; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: .5rem; }

/* ==========================================================================
   Article / legal / guide pages
   ========================================================================== */
.page-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); position: relative; overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.6rem); }
.page-hero .lead { margin-top: 1.1rem; font-size: 1.16rem; color: var(--ink-soft); max-width: 56ch; }

.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--green-deep); }

.prose { max-width: 72ch; margin-inline: auto; }
.prose.narrow { max-width: 66ch; }
.prose h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2rem); margin-top: 2.6rem; margin-bottom: .8rem; }
.prose h3 { font-size: 1.28rem; margin-top: 1.8rem; margin-bottom: .5rem; }
.prose p { margin-top: .9rem; color: var(--ink-soft); }
.prose ul.bullets { margin-top: .9rem; display: grid; gap: .55rem; }
.prose ul.bullets li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.prose a.link { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(119,188,59,.4); }
.prose a.link:hover { text-decoration-color: var(--green); }
.prose strong { color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--line); margin-block: 2.4rem; }

.legal-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 1.2rem; }
.legal-block p { margin-top: .3rem; }
.legal-block .lbl { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- Guide steps ---------- */
.guide-toc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); margin-bottom: 3rem;
}
.guide-toc h2 { font-size: 1.1rem; margin: 0 0 .9rem; }
.guide-toc ol { list-style: none; counter-reset: toc; display: grid; gap: .5rem; }
.guide-toc li { counter-increment: toc; }
.guide-toc a { display: flex; gap: .8rem; align-items: baseline; color: var(--ink-soft); font-weight: 500; padding: .25rem 0; }
.guide-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--green-deep); font-family: var(--font-display); font-weight: 700; font-size: .9rem; min-width: 2ch; }
.guide-toc a:hover { color: var(--green-deep); }

.step { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; margin-bottom: clamp(3rem, 7vw, 5rem); scroll-margin-top: 90px; }
@media (min-width: 820px) {
  .step { grid-template-columns: 1fr .8fr; }
  .step.reverse .step-media { order: 2; }
  .step.reverse .step-copy { order: 1; }
}
.step-copy .step-no {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; color: var(--green-deep);
  font-size: .92rem; letter-spacing: .04em; margin-bottom: .6rem;
}
.step-copy .step-no .n { width: 32px; height: 32px; border-radius: 50%; background: rgba(119,188,59,.16); display: grid; place-items: center; }
.step-copy h2 { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem); margin-top: 0; }
.step-copy p { margin-top: .8rem; color: var(--ink-soft); }
.step-copy .substeps { margin-top: 1rem; display: grid; gap: .6rem; }
.step-copy .substeps li { display: flex; gap: .7rem; align-items: flex-start; }
.step-copy .substeps svg { width: 1.2em; height: 1.2em; color: var(--green-deep); flex: none; margin-top: .25em; }
.step-copy .tip {
  margin-top: 1.2rem; background: var(--cream); border-radius: var(--radius-sm);
  padding: .85rem 1.1rem; font-size: .94rem; color: var(--ink-soft); border-left: 3px solid var(--green);
}
.step-copy .tip strong { color: var(--ink); }
.step-media { display: flex; justify-content: center; }
.step-media .phone { width: min(260px, 64vw); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-phone .phone, .show-media .phone { transform: none !important; }
}

/* ---------- Misc ---------- */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: var(--cream); padding: .6rem 1.1rem; border-radius: 0 0 12px 12px;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; }
