/* ─────────────────────────────────────────────
   OLIVE BEANS — design tokens
   ───────────────────────────────────────────── */
:root {
  --bg:           #faeee5;
  --bg-2:         #ebe2cb;
  --bg-warm:      #f6f0dd;
  --red:          #9e5a17;
  --olive:        #9dac6a;
  --olive-1:      #6e6d08;
  --olive-2:      #5b6e1f;
  --olive-deep:   #3b4d1c;
  --gold:         #816129;
  --terracotta:   #9e5838;
  --ink:          #2e2417;
  --ink-soft:     #3a2e1f;
  --cream-card:   #faf4e1;
  --blue:         #c0e4e4;
  --yellow:       #ffe2a2;


  --display:    "Mulish", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --handwritten: "Homemade Apple", cursive;
  --mono:       "DM Mono", ui-monospace, "Courier New", monospace;

  --pad:        clamp(20px, 5vw, 96px);
  --maxw:       1280px;
  --maxw-prose: 60ch;

  --paper-texture: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.14 0 0 0 0 0.08 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(74, 93, 35, 0.18);
  --shadow:    0 12px 32px -10px rgba(46, 36, 23, 0.18);
  --shadow-lg: 0 24px 50px -20px rgba(46, 36, 23, 0.28);
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--paper-texture), var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html, body { font-size: clamp(16px, 1.25vw, 20px); }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--olive-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--olive-deep);
  color: #fff;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.section-title {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0;
}
.section-title--olive { color: var(--blue); }

.bean {
  position: absolute;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}


/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(32px, 6vw, 72px) var(--pad) clamp(48px, 7vw, 80px);
  overflow: hidden;
  background-image:
    repeating-linear-gradient(
      to right,
      var(--olive-1) 0, var(--olive-1) 48px,
      transparent 48px, transparent 96px
    ),
    var(--paper-texture);
  background-color: var(--bg);
  background-repeat: repeat-x, repeat;
  background-position: 0 100%, 0 0;
  background-size: auto 20px, 280px 280px;
}

@media (min-width: 768px) {
  .hero {
    background-image:
      repeating-linear-gradient(
        to right,
        var(--olive-1) 0, var(--olive-1) 72px,
        transparent 72px, transparent 144px
      ),
      var(--paper-texture);
    background-size: auto 28px, 280px 280px;
  }
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: clamp(12px, 2.5vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0 0 clamp(16px, 4vw, 28px);
  font-weight: 500;
  background: rgba(74, 93, 35, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero__eyebrow {
    font-size: clamp(13px, 1.4vw, 15px);
    letter-spacing: 0.2em;
    padding: 7px 14px;
    overflow: visible;
  }
}

.hero__pulse {
  width: 7px; height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--olive-2);
  animation: pulse-olive 1.8s ease-in-out infinite;
}

@keyframes pulse-olive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 93, 35, 0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(74, 93, 35, 0); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  margin: 0 0 clamp(20px, 4vw, 36px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.hero__olive {
  display: block;
  font-size: clamp(36px, 11vw, 220px);
  line-height: 0.88;
  color: var(--olive-2);
}

.hero__tagline {
  font-family: var(--mono);
  font-size: clamp(12px, 2.8vw, 18px);
  letter-spacing: 0.16em;
  color: var(--olive-deep);
  text-align: left;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 900;
  margin: 0;
}

@media (min-width: 640px) {
  .hero__tagline {
    font-size: clamp(14px, 1.5vw, 18px);
    letter-spacing: 0.18em;
    text-align: right;
  }
}

.hero__manifesto {
  font-family: var(--mono);
  font-size: clamp(12px, 2.5vw, 17px);
  color: var(--gold);
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.95;
  margin: clamp(8px, 1.5vw, 12px) 0 0;
}

@media (min-width: 640px) {
  .hero__manifesto {
    font-size: clamp(13px, 1.2vw, 17px);
    letter-spacing: 0.18em;
    text-align: right;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: clamp(24px, 4vw, 40px);
  position: relative;
  z-index: 3;
}

@media (min-width: 640px) {
  .hero__actions { justify-content: flex-end; }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 20px;
  font-family: var(--mono);
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

@media (min-width: 640px) {
  .hero__cta {
    padding: 16px 32px;
    font-size: clamp(14px, 1.4vw, 17px);
  }
}

.hero__cta--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.hero__cta--primary:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(74, 93, 35, 0.32);
}
.hero__cta--primary:active { transform: translateY(0); }

@media (max-width: 639px) {
  .hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__inner {
    width: 100%;
    text-align: center;
  }
  .hero__eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__tagline { text-align: center; }
  .hero__actions { justify-content: center; }
}

@media (min-width: 640px) {
  .hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__inner {
    width: 100%;
  }
}

/* Decorative beans — small accents on mobile, tucked into the empty
   space beside the title (top-right) and beside the CTA (bottom-right) */
.bean--hero-green {
  display: block;
  width: clamp(56px, 18vw, 84px);
  top: -54%;
  right: 0;
  transform: scaleX(-1) rotate(-8deg);
  z-index: 2;
}
.bean--hero-tan {
  display: block;
  width: clamp(56px, 18vw, 84px);
  top: calc(70% + 14px);
  left: 3%;
  transform: rotate(16deg);
  z-index: 1;
}

@media (min-width: 640px) {
  .bean--hero-green {
    display: block;
    width: clamp(80px, 11vw, 160px);
    top: 2%;
    right: 2%;
    transform: scaleX(-1) rotate(-10deg);
    z-index: 2;
  }
  .bean--hero-tan {
    display: block;
    width: clamp(80px, 11vw, 160px);
    bottom: -14%;
    left: 4%;
    transform: rotate(-11deg);
    z-index: 1;
  }
}

@media (min-width: 1024px) {
  .bean--hero-green {
    width: clamp(120px, 11vw, 190px);
    top: 3%;
    right: 4%;
  }
  .bean--hero-tan {
    width: clamp(120px, 11vw, 190px);
  }
}

/* Past --maxw (1280px), .hero__inner stops growing but the title's
   font-size keeps scaling with vw — push the bean clear of its wider glyphs */
@media (min-width: 1440px) {
  .bean--hero-green {
    top: -4%;
    right: -2%;
  }
}

/* Title glyphs keep growing with the viewport even after .hero__inner caps —
   push the bean further right so it clears "OliveBeans" at very wide widths */
@media (min-width: 1700px) {
  .bean--hero-green {
    right: -11%;
  }
}


/* ─────────────────────────────────────────────
   COUNTING — product showcase
   ───────────────────────────────────────────── */
.counting {
  position: relative;
  margin-top: -1px;
  background-color: var(--olive-1);
  padding: clamp(48px, 7vw, 112px) var(--pad);
}

.counting__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Show media above copy on mobile via order */
.counting__media { order: -1; }

@media (min-width: 768px) {
  .counting__inner {
    flex-direction: row;
    align-items: center;
  }
  .counting__copy { flex: 1; }
  .counting__media {
    order: 0;
    flex-shrink: 0;
  }
}

.counting__copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.counting__eyebrow {
  font-family: var(--mono);
  font-size: clamp(12px, 2.5vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 clamp(12px, 2vw, 20px);
  font-weight: 500;
}

@media (min-width: 640px) {
  .counting__eyebrow { font-size: clamp(13px, 1.3vw, 16px); }
}

.counting .section-title {
  font-size: clamp(38px, 9vw, 96px);
}

.counting__supporting {
  font-family: var(--mono);
  font-size: clamp(16px, 3.5vw, 19px);
  color: var(--bg-warm);
  line-height: 1.7;
  margin: clamp(14px, 2vw, 24px) 0 clamp(18px, 2.8vw, 28px);
  max-width: 44ch;
}

@media (min-width: 640px) {
  .counting__supporting { font-size: clamp(16px, 1.3vw, 19px); }
}

.counting__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vw, 14px);
}

.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 500;
  color: var(--bg-warm);
}

.chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--olive-deep);
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .chip {
    font-size: clamp(15px, 1.3vw, 17px);
  }
}

.counting__media {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .counting__media { width: auto; }
}

.counting__phone {
  position: relative;
  padding: 8px;
  background: linear-gradient(180deg, #faf4e1 0%, #ebe2cb 100%);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.counting__video {
  width: clamp(147px, 54vw, 231px);
  border-radius: 28px;
  background: #fff;
  aspect-ratio: 10 / 19;
  object-fit: cover;
  object-position: top;
  display: block;
}

@media (min-width: 480px) {
  .counting__video { width: clamp(189px, 43.5vw, 252px); }
}

@media (min-width: 768px) {
  .counting__video { width: clamp(231px, 22.5vw, 331.5px); }
}


/* ─────────────────────────────────────────────
   WHY WE MADE THIS
   ───────────────────────────────────────────── */
.why {
  position: relative;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--bg-warm) 0, var(--bg-warm) 22px,
      transparent 22px, transparent 78px
    ),
    repeating-linear-gradient(
      90deg,
      var(--yellow) 0, var(--yellow) 14px,
      var(--bg-warm) 14px, var(--bg-warm) 28px
    );
  padding: clamp(56px, 8vw, 160px) var(--pad);
  text-align: center;
  overflow: hidden;
}

.why__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.why__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-card);
  border: 10px dashed var(--olive-2);
  border-radius: 6px;
  padding: clamp(28px, 5vw, 72px) clamp(24px, 4.5vw, 56px);
  z-index: 1;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .why__card { border-width: 16px; }
}

.why__eyebrow {
  font-family: var(--mono);
  font-size: clamp(12px, 2.5vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-2);
  margin: 0 0 clamp(12px, 2vw, 20px);
  font-weight: 500;
}

.why__body { margin: 0 auto; max-width: var(--maxw-prose); }

.why__body-section {
  color: var(--olive-deep);
  font-family: var(--display);
  font-style: italic;
  letter-spacing: -0.02em;
  font-weight: 900;
  font-size: clamp(20px, 5vw, 38px);
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.why__body-section--bottom {
  color: var(--olive-1);
  font-size: clamp(17px, 3.5vw, 26px);
  margin-top: clamp(12px, 2vw, 18px);
}

/* Decorative beans in why section */
.bean--why-tan {
  display: block;
  width: clamp(56px, 16vw, 90px);
  bottom: 4%;
  left: 2%;
  transform: rotate(22deg);
  z-index: 2;
}
.bean--why-black {
  display: block;
  width: clamp(56px, 16vw, 90px);
  top: 6%;
  right: 2%;
  transform: scaleX(-1);
  z-index: 2;
}

@media (min-width: 1100px) {
  .bean--why-tan {
    width: clamp(110px, 9vw, 180px);
    bottom: 10%;
    left: -16%;
    transform: rotate(22deg);
  }
  .bean--why-black {
    width: clamp(110px, 9vw, 180px);
    top: 32%;
    right: -16%;
    transform: scaleX(-1);
  }
}


/* ─────────────────────────────────────────────
   WAITLIST
   ───────────────────────────────────────────── */
.waitlist {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 160px) var(--pad) clamp(64px, 10vw, 140px);
  background-color: var(--olive-1);
  background-image: repeating-conic-gradient(
    var(--olive) 0% 25%,
    var(--yellow) 0% 50%
  );
  background-size: clamp(100px, 12.6vw, 180px) clamp(100px, 12.6vw, 180px);
}

@media (max-width: 639px) {
  .waitlist {
    background-size: clamp(200px, 25.2vw, 360px) clamp(200px, 25.2vw, 360px);
  }
}

.waitlist__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.waitlist__card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
  background: var(--cream-card);
  border: 3px solid var(--olive-2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4.5vw, 48px);
  box-shadow: var(--shadow-lg);
}

.waitlist__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 7vw, 52px);
  color: var(--olive-2);
  margin: 0 0 clamp(10px, 1.8vw, 16px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.waitlist__social {
  font-family: var(--mono);
  font-size: clamp(15px, 3.2vw, 18px);
  color: var(--ink-soft);
  margin: 0 0 clamp(20px, 3.2vw, 32px);
  opacity: 0.85;
  line-height: 1.65;
  max-width: 50ch;
}

@media (min-width: 640px) {
  .waitlist__social { font-size: clamp(16px, 1.3vw, 18px); }
}

.waitlist__form { width: 98%; margin: 0 auto; }

.waitlist__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 540px) {
  .waitlist__row {
    flex-direction: row;
    gap: 8px;
  }
}

.waitlist__input {
  flex: 1;
  font-family: var(--mono);
  font-size: clamp(14px, 3.5vw, 16px);
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(74, 93, 35, 0.3);
  border-radius: 999px;
  padding: 14px 20px;
  outline: none;
  min-width: 0;
  min-height: 52px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 640px) {
  .waitlist__input {
    font-size: clamp(14px, 1.3vw, 16px);
    padding: 16px 24px;
  }
}

.waitlist__input:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.15);
}

.waitlist__submit {
  width: 100%;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

@media (min-width: 540px) {
  .waitlist__submit {
    width: auto;
    flex-shrink: 0;
    padding: 14px 26px;
  }
}

@media (min-width: 640px) {
  .waitlist__submit {
    font-size: clamp(14px, 1.3vw, 16px);
    padding: 16px 28px;
  }
}

.waitlist__submit:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(74, 93, 35, 0.38);
}
.waitlist__submit:active { transform: translateY(0); }

.waitlist__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.waitlist__status {
  font-family: var(--mono);
  font-size: clamp(15px, 3.2vw, 17px);
  color: var(--olive-2);
  margin: clamp(14px, 2vw, 20px) 0 0;
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(74, 93, 35, 0.08);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}


/* ─────────────────────────────────────────────
   NUDGE
   ───────────────────────────────────────────── */
.nudge {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  background-image: var(--paper-texture);
  padding: clamp(45px, 6.4vw, 112px) var(--pad);
  text-align: center;
}

.nudge__inner {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.nudge__bean {
  position: relative;
  width: clamp(72px, 12.8vw, 144px);
  margin: 0 auto clamp(16px, 2.8vw, 28px);
}

.nudge__label {
  font-family: var(--handwritten);
  font-size: clamp(15px, 3.5vw, 20px);
  color: #8a4530;
  margin: 0 0 clamp(10px, 1.8vw, 16px);
}

.nudge__heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 6vw, 44px);
  color: var(--olive-2);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 clamp(12px, 2.4vw, 20px);
}

.nudge__body {
  font-family: var(--mono);
  font-size: clamp(16px, 3.5vw, 19px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 auto clamp(24px, 4vw, 40px);
  max-width: 50ch;
}

@media (min-width: 640px) {
  .nudge__body { font-size: clamp(17px, 1.4vw, 19px); }
}

.nudge__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-family: var(--mono);
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--olive-2);
  border-radius: var(--radius-sm);
  padding: 14px 30px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}
.nudge__cta:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
}
.nudge__cta:active { transform: translateY(0); }


/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--bg);
  background-image: var(--paper-texture);
  padding: clamp(24px, 4vw, 40px) var(--pad);
  text-align: center;
  border-top: 1px solid rgba(46, 36, 23, 0.1);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(10px, 1.8vw, 16px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 28px);
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: clamp(15px, 3vw, 17px);
  color: var(--olive-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}
.footer__link:hover { border-bottom-color: var(--olive-2); }

.footer__copy {
  font-family: var(--mono);
  font-size: clamp(14px, 2.5vw, 15px);
  color: var(--ink-soft);
  opacity: 0.7;
  margin: 0;
}


/* ─────────────────────────────────────────────
   MOBILE STICKY CTA
   ───────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: var(--olive-2);
  color: #fff;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: 0 14px 32px -8px rgba(46, 36, 23, 0.4);
  transform: translateY(calc(100% + 24px));
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0.3s;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear;
}

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


/* ─────────────────────────────────────────────
   SCROLL-REVEAL
   ───────────────────────────────────────────── */
.section-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
