/* ───── Tokens ───── */
:root {
  --red: #CC0000;
  --red-deep: #A30000;
  --red-soft: #FBEDED;

  --ink: #2D2D2D;
  --ink-soft: #585858;
  --ink-mute: #8A8A8A;

  --paper: #F8F6F3;     /* page background */
  --paper-2: #FAFAF8;   /* card background */
  --cream: #F1ECE3;     /* warm accent ground */
  --line: #E6E1D7;
  --line-2: #ECE7DD;

  --warm-dark: #2D2D2D;

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 44px);

  --f: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--f);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }

/* ───── Layout ───── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(64px, 9vw, 104px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.04em;
}
.eyebrow .bar { width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

.h-section {
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink);
}
.h-section .accent { color: var(--red); }

.lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--red);
  background: var(--red);
  color: white;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  min-height: 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }

.btn--lg { padding: 16px 26px; font-size: 16px; min-height: 54px; }

/* ───── Nav ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 246, 243, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__left { display: inline-flex; align-items: center; gap: 24px; }
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand img { width: 36px; height: 36px; object-fit: contain; }
.nav__brand .name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav__brand .name .small {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.nav__links {
  display: none;
  gap: 4px;
  align-items: center;
}
.nav__links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover { background: var(--cream); color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  min-height: 40px;
  transition: background .15s ease;
}
.nav__cta:hover { background: var(--red-deep); }
.nav__hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  margin-left: 6px;
  border-radius: 50%;
}
.nav__hamburger:hover { background: var(--cream); }
.nav__hamburger span {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative; border-radius: 2px;
}
.nav__hamburger span::before, .nav__hamburger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform .2s ease, top .2s ease; border-radius: 2px;
}
.nav__hamburger span::before { top: -6px; }
.nav__hamburger span::after  { top: 6px; }
.nav.is-open .nav__hamburger span { background: transparent; }
.nav.is-open .nav__hamburger span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__hamburger span::after  { top: 0; transform: rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 6px 0 14px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.nav.is-open .nav__mobile { display: flex; }
.nav__mobile a {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line-2);
}
.nav__mobile a:last-child { border-bottom: 0; color: var(--red); font-weight: 700; }

@media (min-width: 820px) {
  .nav__links { display: inline-flex; }
  .nav__hamburger { display: none; }
  .nav.is-open .nav__mobile { display: none; }
}

/* ───── Hero ───── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 112px);
}
.hero--cream { background: var(--paper); }
.hero--warm  { background: var(--cream); }
.hero--dark  { background: var(--warm-dark); color: #F4F1EB; }
.hero--dark .lede { color: rgba(244, 241, 235, 0.78); }
.hero--dark .h-section { color: #F4F1EB; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--red);
}
.hero__eyebrow .pin {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
}

.hero__title {
  font-size: clamp(38px, 6.4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  max-width: 620px;
}
.hero__title .red { color: var(--red); }

.hero__sub {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.55;
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}
.hero--dark .hero__sub { color: rgba(244, 241, 235, 0.78); }

.hero__season {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  padding: 8px 14px 8px 12px;
  background: var(--red-soft);
  color: var(--red-deep);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
}
.hero--dark .hero__season { background: rgba(204,0,0,0.18); color: #FFD7D7; }
.hero__season .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BA66B;
  box-shadow: 0 0 0 3px rgba(43,166,107,0.22);
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hero--dark .btn--ghost {
  color: #F4F1EB; border-color: rgba(244,241,235,0.5);
}
.hero--dark .btn--ghost:hover { background: #F4F1EB; color: var(--ink); border-color: #F4F1EB; }

/* hero media — soft warm card */
.hero__media {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
}
.hero__logo-card {
  position: absolute;
  inset: 0;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  padding: 12%;
  box-shadow: 0 30px 60px -30px rgba(45,45,45,0.15);
}
.hero--dark .hero__logo-card { background: #3A3A3A; border-color: rgba(255,255,255,0.08); }
.hero__logo-card img { width: 100%; height: 100%; object-fit: contain; }

.hero__photo {
  position: absolute;
  bottom: -110px; right: -22px;
  width: 52%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, rgba(204,0,0,0.07) 0 10px, rgba(204,0,0,0.02) 10px 20px),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex; align-items: flex-end; padding: 14px;
  font-size: 11px;
  color: var(--ink-mute);
}
@media (max-width: 540px) {
  .hero__photo { display: none; }
}

/* stat strip — friendly version */
.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero--dark .hero__strip { border-color: rgba(255,255,255,0.12); }
.hero__strip .cell {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 14px;
  border-right: 1px solid var(--line-2);
}
.hero--dark .hero__strip .cell { border-color: rgba(255,255,255,0.08); }
.hero__strip .cell:first-child { padding-left: 0; }
.hero__strip .cell:last-child  { padding-right: 0; border-right: 0; }
.hero__strip .v {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__strip .k {
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 600;
}
.hero--dark .hero__strip .k { color: rgba(244,241,235,0.6); }

/* ───── About ───── */
.about { background: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 800px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}
.about__copy h2 { margin-top: 12px; }
.about__copy p {
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}
.about__copy p strong { color: var(--ink); font-weight: 700; }
.about__proof {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.about__proof .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.01em;
}
.about__proof .lbl {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
  max-width: 200px;
  line-height: 1.35;
}
.about__photo {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(45,45,45,0.04) 0 10px, rgba(45,45,45,0.015) 10px 20px),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  display: flex; align-items: flex-end; padding: 16px;
  font-size: 11px;
  color: var(--ink-mute);
}

/* ───── Leagues ───── */
.leagues { background: var(--cream); }
.leagues__head {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 48px);
}
.leagues__head .lede { margin: 0; }
.leagues__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .leagues__cards { grid-template-columns: repeat(3, 1fr); }
}
.day {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px 24px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.day:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -22px rgba(45,45,45,0.18); }
.day--featured {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.day__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}
.day--featured .day__eyebrow { color: rgba(255,255,255,0.85); }
.day__eyebrow::before {
  content: ''; width: 6px; height: 6px; background: currentColor; border-radius: 50%;
}
.day__name {
  font-size: clamp(28px, 3.4vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 4px;
}
.day__hint {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 22px;
}
.day--featured .day__hint { color: rgba(255,255,255,0.85); }
.day__rows {
  margin-top: auto;
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.day--featured .day__rows { border-color: rgba(255,255,255,0.25); }
.day__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-2);
  font-size: 14.5px;
}
.day--featured .day__row { border-color: rgba(255,255,255,0.18); }
.day__row:last-child { border-bottom: 0; }
.day__row .k {
  color: var(--ink-mute);
  font-weight: 600;
}
.day--featured .day__row .k { color: rgba(255,255,255,0.7); }
.day__row .v {
  font-weight: 700;
  color: var(--ink);
}
.day--featured .day__row .v { color: white; }
.day__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 999px;
}

/* tier callout */
.tiers {
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 820px) {
  .tiers { grid-template-columns: 1fr 1fr; }
}
.tiers h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
}
.tiers p {
  font-size: 16px;
  line-height: 1.65;
  margin: 12px 0 0;
  color: var(--ink-soft);
  max-width: 460px;
}
.tiers__flow {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.tiers__flow span.step {
  padding: 6px 12px;
  background: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.tiers__flow .arrow { color: var(--ink-mute); font-weight: 700; }

.ladder {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px;
}
.ladder__row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.ladder__row.top { background: var(--red-soft); border-color: rgba(204,0,0,0.18); }
.ladder__rank {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-mute);
}
.ladder__row.top .ladder__rank { color: var(--red); }
.ladder__lbl {
  font-size: 14.5px;
  font-weight: 700;
}
.ladder__move {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
  font-weight: 600;
}
.ladder__move b { color: var(--ink); font-weight: 800; }

/* ───── Locations ───── */
.locations { background: var(--paper); }
.locations__head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.loc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .loc__grid { grid-template-columns: repeat(2, 1fr); }
}
.loc {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: box-shadow .15s ease;
}
.loc:hover { box-shadow: 0 16px 32px -22px rgba(45,45,45,0.16); }
.loc__head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line-2);
}
.loc__transit {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
}
.loc__transit::before {
  content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
.loc__name {
  font-size: clamp(20px, 2.4vw, 23px);
  line-height: 1.2;
  margin: 8px 0 6px;
}
.loc__addr {
  font-size: 14.5px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}
.loc__addr:hover { color: var(--red); text-decoration: underline; }
.loc__body {
  padding: 16px 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.loc__directions {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 9px 16px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s ease;
}
.loc__directions:hover { background: var(--ink); color: white; }
details.loc__access {
  border-top: 1px solid var(--line-2);
  padding-top: 10px;
}
details.loc__access summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 0;
}
details.loc__access summary::-webkit-details-marker { display: none; }
details.loc__access summary .chev {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
  color: var(--ink-mute);
}
details.loc__access[open] summary .chev { transform: rotate(180deg); color: var(--red); }
details.loc__access[open] summary { color: var(--red); }
details.loc__access .access-body {
  padding: 8px 0 4px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
details.loc__access .access-body strong { color: var(--ink); font-weight: 700; }

/* ───── Contact ───── */
.contact { background: var(--cream); }
.contact .h-section .accent { color: var(--red); }
.contact__head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 40px); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 48px);
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.05fr; }
}
.contact__primary {
  display: flex; flex-direction: column; gap: 22px;
}
.contact__big-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: var(--red);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  transition: background .15s ease, transform .15s ease;
}
.contact__big-cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.contact__big-cta .label {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.contact__big-cta .handle {
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}
.contact__big-cta .ig {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.contact__aside {
  padding: 18px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.contact__aside strong { color: var(--ink); font-weight: 700; }
.divider-or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
}
.divider-or::before, .divider-or::after {
  content: ''; height: 1px; background: var(--line);
}

.form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 28px);
}
.form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: 12px 14px;
  font-family: var(--f);
  font-size: 15.5px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.form textarea { resize: vertical; min-height: 92px; }

.checks {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.checks label {
  margin: 0;
  cursor: pointer;
  padding: 9px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.checks label input { accent-color: var(--red); }
.checks label:hover { border-color: var(--ink-mute); }
.checks label:has(input:checked) {
  background: var(--red-soft);
  border-color: var(--red);
  color: var(--red-deep);
}
.form__note {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}

/* ───── Founders strip ───── */
.founders {
  margin-top: 22px;
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.founders__avatars {
  display: inline-flex;
}
.founders__avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--paper-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--ink-soft);
}
.founders__avatars span + span { margin-left: -10px; }
.founders__copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.founders__copy strong { color: var(--ink); font-weight: 700; }

/* ───── Footer ───── */
.foot {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 36px 0 32px;
}
.foot__inner {
  display: flex; flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .foot__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.foot__brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.foot__brand img { width: 36px; height: 36px; object-fit: contain; }
.foot__brand .name {
  font-weight: 800;
  font-size: 15px;
}
.foot__cr {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 600;
}
.foot__social { display: inline-flex; gap: 8px; }
.foot__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  border-radius: 50%;
  transition: all .15s ease;
}
.foot__social a:hover { background: var(--red); border-color: var(--red); color: white; }
