/* =========================================================
   LID飯南 ふぁ〜む — style.css
   Tokens
========================================================= */
:root {
  --green: #3CB371;
  --green-dk: #1F7A4D;
  --tomato: #FF5A47;
  --yellow: #FFC93C;
  --purple: #8B5FBF;
  --pepper: #6FCF57;
  --ink: #26332B;
  --muted: #6B7A6E;
  --cream: #FFF9EF;
  --white: #FFFFFF;

  --font-display: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-mono: "Space Grotesk", sans-serif;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.16,.84,.32,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

::selection { background: var(--yellow); color: var(--ink); }

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

/* =========================================================
   Growth progress rail (signature element)
========================================================= */
.grow-rail {
  position: fixed;
  left: 0;
  top: 0;
  width: 5px;
  height: 100vh;
  background: rgba(38,51,43,0.06);
  z-index: 500;
}
.grow-rail__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--yellow), var(--green) 55%, var(--purple));
  transition: height .12s linear;
}
.grow-rail__sprout {
  position: absolute;
  left: -3px;
  top: 0%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  transition: top .12s linear;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.28));
}
@media (max-width: 700px) {
  .grow-rail { display: none; }
}

/* =========================================================
   Header / Nav
========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,249,239,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(38,51,43,0.08);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .01em;
  text-decoration: none;
  color: var(--ink);
}
.brand span { color: var(--green-dk); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--tomato);
  transition: width .25s var(--ease);
}
.site-nav a:not(.site-nav__cta):hover::after { width: 100%; }

.site-nav__cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s;
}
.site-nav__cta:hover { background: var(--tomato); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(38,51,43,.15);
}
.nav-toggle span {
  width: 20px; height: 2px; margin: 0 auto;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(78vw, 320px);
  height: 100vh;
  background: var(--cream);
  z-index: 390;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -12px 0 40px rgba(38,51,43,.14);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(38,51,43,.1);
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   Shared bits
========================================================= */
.section { position: relative; padding: 120px 0; overflow: hidden; }
.section--cream { background: var(--cream); }
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--white);
  background: var(--tomato);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.eyebrow--dark { background: var(--ink); }
.eyebrow--light { background: var(--white); color: var(--ink); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .6; } }

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 20px;
  line-height: 1.25;
}
.section__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  max-width: 620px;
  margin: 0 0 40px;
}
.section--cream .section__lead,
#vegetables .section__lead { max-width: 680px; }

.section__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.35;
  margin: 64px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__subtitle::before {
  content: "";
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  flex-shrink: 0;
}

.tag {
  display: inline-block;
  background: var(--tag, var(--green));
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2.5px solid var(--white);
  box-shadow: 0 6px 16px rgba(38,51,43,.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(38,51,43,.28);
}
.btn--primary:hover { background: var(--tomato); transform: translateY(-3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 13px 28px;
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.btn--ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--green-dk);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.text-link:hover { border-color: var(--green-dk); }

.polaroid {
  background: var(--white);
  padding: 12px 12px 44px;
  border-radius: 10px;
  box-shadow: 0 22px 40px rgba(38,51,43,.22);
}

/* soft decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  pointer-events: none;
}

/* =========================================================
   Reveal-on-scroll utility
========================================================= */
.reveal, .reveal-up, .reveal-scale {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal { transform: translateY(14px); }
.reveal-up { transform: translateY(38px); }
.reveal-scale { transform: scale(.94) translateY(20px); }
.reveal.is-visible, .reveal-up.is-visible, .reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero__blob { position: absolute; border-radius: 50%; }
.hero__blob--yellow {
  width: 380px; height: 380px; top: -140px; left: -140px;
  background: var(--yellow); opacity: .55;
  animation: float1 12s ease-in-out infinite;
}
.hero__blob--pink {
  width: 460px; height: 460px; top: -160px; right: -160px;
  background: #FFD8CE; opacity: .85;
  animation: float2 15s ease-in-out infinite;
}
.hero__blob--green {
  width: 300px; height: 300px; bottom: -140px; right: 10%;
  background: var(--green); opacity: .18;
  animation: float1 10s ease-in-out infinite reverse;
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px,26px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-22px,20px); } }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.18;
  margin: 6px 0 22px;
}
.hero__title em { font-style: normal; color: var(--tomato); }
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > * { display: inline-block; }

.hero__sub {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dk);
  margin: 0 0 34px;
}

.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__note {
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.hero__collage {
  position: relative;
  height: 480px;
}
.hero__collage img.polaroid {
  position: absolute;
  width: 220px;
  padding: 10px 10px 34px;
  will-change: transform;
}
.hero__collage img { border-radius: 4px; }
.p1 { top: 0; left: 6%; width: 230px; transform: rotate(-6deg); z-index: 1; }
.p2 { top: 14%; right: 0; width: 220px; transform: rotate(5deg); z-index: 2; }
.p3 { top: 46%; left: 0; width: 235px; transform: rotate(4deg); z-index: 3; }
.p4 { bottom: -4%; right: 6%; width: 225px; transform: rotate(-5deg); z-index: 2; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  cursor: pointer;
  z-index: 3;
}
.scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__collage { height: 380px; margin-top: 20px; }
  .hero__collage img.polaroid { width: 170px !important; }
}
@media (max-width: 560px) {
  .hero { padding-top: 110px; }
  .hero__collage { height: 320px; }
  .hero__collage img.polaroid { width: 140px !important; }
  .hero__cta { gap: 12px; }
  .hero__cta .btn { width: 100%; }
}

/* =========================================================
   ABOUT
========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.feature-list { list-style: none; padding: 0; margin: 0 0 30px; }
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(38,51,43,.08);
  transition: transform .3s var(--ease);
}
.feature:last-child { border-bottom: none; }
.feature:hover { transform: translateX(6px); }
.feature__num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--tag, var(--green));
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feature__title { font-weight: 700; font-size: 16px; margin: 4px 0 4px; }
.feature__body { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

.about__media { position: relative; min-height: 460px; padding-bottom: 44px; }
.about__photo-main {
  width: 78%;
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}
.about__photo-sub {
  width: 52%;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: 3;
  transform: rotate(-6deg);
}
.tape {
  position: absolute;
  top: -14px; right: 14%;
  width: 90px; height: 34px;
  background: var(--yellow);
  opacity: .8;
  transform: rotate(-8deg);
  z-index: 3;
  border-radius: 3px;
}
.about__caption {
  position: absolute;
  right: 0; bottom: 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  z-index: 5;
}

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 24px; }
  /* 1カラムになったら写真ブロックを中央に寄せる */
  .about__media {
    min-height: 0;
    max-width: 520px;
    margin: 0 auto;
    padding-bottom: 34px;
  }
  .about__photo-main { width: 84%; margin-left: auto; }
  .about__photo-sub { width: 50%; bottom: 24px; }
  .tape { right: 8%; }
  .about__caption { position: static; display: block; text-align: right; margin: 16px 0 0; }
}

/* =========================================================
   FARM — 作業風景カード
========================================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 40px;
}
.work-card {
  margin: 0;
  background: var(--white);
  padding: 12px 12px 18px;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(38,51,43,.16);
  transform: rotate(var(--rot, 0deg));
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.work-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow: 0 26px 46px rgba(38,51,43,.24);
}
.work-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 14px;
}
.work-card figcaption { display: flex; justify-content: center; }

.section__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-style: italic;
  margin: 52px 0 0;
  text-align: center;
}
.section__foot .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* =========================================================
   FARM — before/after compare slider
========================================================= */
.compare {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 4/3;
  margin: 0 auto 46px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(38,51,43,.22);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare__before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.compare__before-wrap .compare__img {
  width: var(--compare-w, 900px);
  max-width: none;
}
.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.compare__handle-grip {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(38,51,43,.3);
}
.compare__label {
  position: absolute;
  top: 20px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  pointer-events: none;
}
.compare__label--before { left: 20px; background: #8A6A4A; }
.compare__label--after { right: 20px; background: var(--tomato); }
.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.farm-now {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 620px;
  margin: 0 auto;
}
.farm-now img.polaroid { width: 160px; flex-shrink: 0; transform: rotate(var(--rot,0)); }
.farm-now p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; }

@media (max-width: 640px) {
  .compare { border-radius: var(--radius-md); }
  .farm-now { flex-direction: column; text-align: center; }
}

/* =========================================================
   VEGETABLES — flip cards
========================================================= */
.veg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  perspective: 1400px;
}
.veg-card { height: 340px; }
.veg-card__flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s var(--ease);
  transform-style: preserve-3d;
}
/* ホバーで裏返すのはマウス環境のみ。タッチ端末は :hover が貼りついて
   戻らなくなるため、html.is-touch が付いたら無効化する（script.js 参照） */
@media (hover: hover) and (pointer: fine) {
  html:not(.is-touch) .veg-card:hover .veg-card__flip { transform: rotateY(180deg); }
}
.veg-card.is-flipped .veg-card__flip { transform: rotateY(180deg); }

.veg-card__face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(38,51,43,.16);
}
/* 写真が未設置でも崩れないよう、下地に野菜カラーを敷いておく */
.veg-card__front { background: var(--tag, var(--white)); }
.veg-card__front img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* とうもろこし：箱全体が写っている写真なので、実の部分にズームして表示 */
.veg-card--corn .veg-card__front img {
  transform: scale(3) translateY(-32%);
  transform-origin: center;
}

.veg-card__name {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  background: var(--tag, var(--green));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 9px 26px;
  border-radius: 999px;
  border: 2.5px solid var(--white);
  box-shadow: 0 8px 18px rgba(38,51,43,.22);
  white-space: nowrap;
}

.veg-card__back {
  background: var(--tag, var(--green));
  color: var(--white);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 26px;
  text-align: center;
}
.veg-card__catch {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  margin: 0 0 14px;
}
.veg-card__desc {
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
  opacity: .95;
}

@media (max-width: 980px) {
  .veg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .veg-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .veg-card { height: 300px; }
}

/* =========================================================
   MOVIE — メンバーのショート動画
   縦動画でも横動画でも収まるよう、暗いステージの中央に置く
========================================================= */
.movie {
  width: fit-content;      /* 縦動画のときは枠も動画の幅にそろえる */
  max-width: min(900px, 100%);
  margin: 0 auto;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(38,51,43,.24);
}
.movie__player {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  background: var(--ink);
}

@media (max-width: 640px) {
  .movie { border-radius: var(--radius-md); min-height: 220px; }
  .movie__player { max-height: 70vh; }
}

/* =========================================================
   CTA（出店情報セクション）／ FOOTER
   ※ .cta 系は現在HTML側では未使用です。イベント出店の告知枠を
     復活させたくなったら、このスタイルがそのまま使えます。
========================================================= */
.cta {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta__blob {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-dk) 0%, transparent 70%);
  opacity: .5;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  animation: float1 14s ease-in-out infinite;
}
.cta__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 42px);
  margin: 0 0 36px;
}
.cta__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 168px; height: 168px;
  border-radius: 50%;
  background: var(--tomato);
  border: 5px solid var(--white);
  margin-bottom: 30px;
  box-shadow: 0 20px 46px rgba(255,90,71,.35);
}
.cta__badge-date { font-family: var(--font-display); font-weight: 900; font-size: 26px; }
.cta__badge-name { font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.cta__note { font-size: 15px; line-height: 1.9; opacity: .85; margin: 0; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 26px 24px 34px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-footer p { margin: 0 0 6px; font-weight: 700; color: var(--white); }
.site-footer a { text-decoration: none; color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--white); }
