/* ============================================================
   Manders Tax — design system
   Fonts: Cabinet Grotesk (headings) · Satoshi (body)
   ============================================================ */

:root {
  /* Nettle Green — primary */
  --ng-base: #394e2c;
  --ng-dark: #2c3d21;
  --ng-40:   #889580;
  --ng-70:   #c4cac0;
  --ng-80:   #d7dcd5;
  --ng-90:   #ebedea;

  /* Worn Silver — neutral */
  --ws-base: #c6beb9;
  --ws-70:   #eeecea;
  --ws-80:   #f4f2f1;
  --ws-90:   #f9f9f8;

  /* Gustav — warm neutral */
  --gu-base: #a69590;
  --gu-60:   #dbd5d3;
  --gu-90:   #f6f4f4;

  /* Velvet Rose — sparingly */
  --vr-base: #753047;
  --vr-70:   #d6c1c8;
  --vr-90:   #f1eaed;

  /* Crocodile Smile — labels / accents */
  --cs-base: #858e57;
  --cs-40:   #b6bb9a;
  --cs-90:   #f3f4ee;

  /* Base */
  --cream:   #f5f2ec;

  /* Tweakable */
  --accent: var(--cs-base);
  --hero-overlay: 0.86;
  --portrait-img: url("assets/img-2.png");

  --maxw: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ng-dark);
  font-family: "Satoshi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Cabinet Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ============================================================
   Scroll entrance
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.09s);
  will-change: opacity, transform;
}
[data-animate].in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100% - 32px, 1100px);
  padding: 11px 11px 11px 26px;
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(57, 78, 44, 0.10);
  box-shadow: 0 10px 30px rgba(44, 61, 33, 0.08);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled .nav__pill {
  background: rgba(245, 242, 236, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: rgba(57, 78, 44, 0.10);
  box-shadow: 0 10px 30px rgba(44, 61, 33, 0.08);
}
.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo-svg {
  display: block;
  width: auto;
  color: var(--ng-base);
  transition: color 0.4s var(--ease);
}
.logo-svg--nav { height: 22px; }
.nav.scrolled .logo-svg--nav { color: var(--ng-base); }
.nav__links {
  display: flex;
  gap: 30px;
  margin: 0 26px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ng-dark);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav.scrolled .nav__links a { color: var(--ng-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--solid { background: var(--ng-base); color: var(--cream); }
.btn--solid:hover { background: var(--ng-dark); transform: translateY(-2px); }
.btn--rose { background: #753047; }
.btn--rose:hover { background: #5f2639; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245,242,236,0.45); }
.btn--ghost:hover { background: rgba(245,242,236,0.10); transform: translateY(-2px); }
.btn--line { background: transparent; color: var(--ng-base); border-color: rgba(57,78,44,0.3); }
.btn--line:hover { background: rgba(57,78,44,0.06); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

@media (max-width: 880px) { .nav__links { display: none; } }

/* ============================================================
   Hero — editorial split
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--cream);
  overflow: hidden;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 150px 64px 80px;
  max-width: 680px;
}
.hero .eyebrow { color: var(--cs-base); }
.hero h1 {
  color: var(--ng-base);
  font-size: clamp(40px, 5vw, 60px);
  max-width: 13ch;
}
.hero__subtitle {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--vr-base);
  letter-spacing: -0.01em;
  margin-top: -8px;
}
.hero__lead {
  color: var(--gu-base);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 46ch;
  line-height: 1.6;
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero__photo {
  position: relative;
  background: var(--ng-base) 50% 26% / cover no-repeat;
  background-image: url("assets/hero-portrait.png");
  will-change: transform;
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,38,20,0.62) 0%, rgba(28,38,20,0.12) 38%, transparent 60%);
}
.hero__cap {
  position: absolute;
  left: 30px; bottom: 28px;
  z-index: 2;
}
.hero__cap .name {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.hero__cap .role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-40);
  margin-top: 4px;
}
.hero__connect {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.12);
  border: 1px solid rgba(245, 242, 236, 0.34);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s var(--ease);
}
.hero__connect:hover { background: rgba(245, 242, 236, 0.22); transform: translateY(-2px); }
.hero__connect .arrow { transition: transform 0.25s var(--ease); }
.hero__connect:hover .arrow { transform: translateX(3px); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__left { padding: 124px 26px 56px; max-width: none; }
  .hero__photo { min-height: 64vh; }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: clamp(72px, 11vw, 130px) 0; }
.section--silver { background: var(--ws-90); }
.section--green { background: var(--ng-base); color: var(--cream); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(32px, 4.6vw, 52px); margin-top: 14px; }
.section__head p { color: var(--gu-base); margin-top: 18px; font-size: 19px; }

/* ============================================================
   Stats
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat { border-top: 1px solid var(--ng-80); padding-top: 26px; }
.stat__num {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(58px, 8vw, 84px);
  color: var(--ng-base);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.stat__label {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
@media (max-width: 768px) { .stats { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   Mission
   ============================================================ */
.mission { position: relative; overflow: hidden; }
.mission__ghost {
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 22vw, 300px);
  color: var(--ng-80);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.mission__ghost.in-view { opacity: 0.5; }
.mission__card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ng-dark);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: clamp(34px, 5vw, 70px);
  box-shadow: 0 40px 90px rgba(20, 28, 14, 0.22);
}
.mission__img {
  position: absolute; inset: 0;
  background: var(--ng-dark) center / cover no-repeat;
  background-image: url("assets/img-4.png");
  filter: sepia(18%) brightness(0.62) saturate(0.9);
}
.mission__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,38,20,0.92) 0%, rgba(28,38,20,0.78) 48%, rgba(28,38,20,0.5) 100%);
}
.mission__body { position: relative; z-index: 2; max-width: 640px; }
.mission__body h2 { color: var(--cream); font-size: clamp(28px, 3.8vw, 46px); margin: 14px 0 24px; }
.mission__body p { color: rgba(245,242,236,0.82); font-size: 18px; margin-bottom: 16px; }
.mission .eyebrow { color: var(--cs-40); }

/* tulip motif */
.tulip {
  position: absolute;
  color: currentColor;
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   What I offer
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.offer { display: flex; flex-direction: column; gap: 16px; }
.offer__icon { color: var(--ng-base); }
.offer h3 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 700; font-size: 23px; }
.offer p { color: var(--gu-base); font-size: 17px; }
@media (max-width: 768px) { .offer-grid { grid-template-columns: 1fr; gap: 38px; } }

/* ============================================================
   Split: credentials + expertise list
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}
.cred {
  position: relative;
  overflow: hidden;
  background: var(--ng-base);
  color: var(--cream);
  border-radius: 18px;
  padding: clamp(30px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 30px 70px rgba(20, 28, 14, 0.18);
}
.cred .eyebrow { color: var(--cs-40); }
.cred__list { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 2; }
.cred__row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(245, 242, 236, 0.14);
  font-size: 16px;
}
.cred__row:first-child { border-top: none; }
.cred__row .k { color: rgba(245,242,236,0.62); font-weight: 500; }
.cred__row .v { color: var(--cream); font-weight: 500; text-align: right; }

.expertise-list h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 36px; }
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.check {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 17px 0;
  border-top: 1px solid var(--ng-80);
  font-size: 18px;
  font-weight: 500;
  color: var(--ng-dark);
}
.check__mark { color: var(--accent); font-weight: 700; flex: none; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .checks { grid-template-columns: 1fr; } }

/* ============================================================
   My background
   ============================================================ */
.bg-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.bg-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ng-dark);
  box-shadow: 0 30px 70px rgba(20, 28, 14, 0.35);
}
.bg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: sepia(10%) brightness(0.96);
}
.bg-copy .eyebrow { color: var(--vr-70); }
.bg-copy h2 { color: var(--cream); font-size: clamp(30px, 4.2vw, 48px); margin: 14px 0 24px; }
.bg-copy p { color: rgba(245, 242, 236, 0.82); font-size: 18px; margin-bottom: 16px; max-width: 56ch; }
.bg-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.bg-regions span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 242, 236, 0.24);
}
.bg-owner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 18px;
  background: var(--cream);
  border-radius: 12px;
}
.bg-owner img { height: 20px; width: auto; display: block; }
.bg-owner span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gu-base);
  padding-left: 14px;
  border-left: 1px solid var(--gu-60);
}
@media (max-width: 860px) {
  .bg-split { grid-template-columns: 1fr; }
  .bg-photo { aspect-ratio: 16 / 11; max-width: 460px; }
}

/* ============================================================
   Crisis & resolution (audit)
   ============================================================ */
.audit {
  position: relative;
  overflow: hidden;
  background: #753047;
  color: var(--cream);
}
.audit__img {
  position: absolute; inset: 0; z-index: 0;
  background: url("assets/rembrandt-tulip.png") center 38% / cover no-repeat;
}
.audit__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(117,48,71,0.95) 0%, rgba(117,48,71,0.9) 44%, rgba(95,38,57,0.84) 100%);
}
.audit__inner { position: relative; z-index: 2; }
.audit__head { max-width: 760px; }
.audit .eyebrow { color: var(--vr-70); }.audit__head h2 { color: var(--cream); font-size: clamp(30px, 4.2vw, 50px); margin: 14px 0 26px; }
.audit__head p { color: rgba(245, 242, 236, 0.82); font-size: 18px; margin-bottom: 16px; max-width: 64ch; }
.audit__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(245, 242, 236, 0.16);
}
.audit__point { display: flex; gap: 16px; align-items: flex-start; }
.audit__mark {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245, 242, 236, 0.16);
  border: 1px solid rgba(245, 242, 236, 0.55);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
}
.audit__point h3 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 8px;
}
.audit__point p { color: rgba(245, 242, 236, 0.74); font-size: 16px; }
@media (max-width: 860px) {
  .audit__points { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   Companies I like to work for
   ============================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ng-90);
  border: 1px solid var(--ng-90);
  border-radius: 16px;
  overflow: hidden;
}
.fit-item {
  background: var(--cream);
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fit-item__no {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--vr-base);
  letter-spacing: 0.04em;
}
.fit-item h3 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ng-base);
}
.fit-item p { color: var(--gu-base); font-size: 17px; }
@media (max-width: 720px) { .fit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Expertise strip (draggable)
   ============================================================ */
#expertise { padding-top: clamp(100px, 14vw, 180px); padding-bottom: clamp(100px, 14vw, 180px); }
.strip-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; }
.strip-hint { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gu-base); }
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.scard {
  background: var(--vr-90);
  border: 1px solid var(--vr-70);
  border-left: 3px solid #753047;
  border-radius: 14px;
  padding: 30px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.scard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(117, 48, 71, 0.16); }
.scard__no { font-family: "Cabinet Grotesk", sans-serif; font-weight: 700; font-size: 14px; color: #b58a9a; }
.scard h3 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 700; font-size: 22px; color: #753047; margin: 16px 0 12px; }
.scard p { color: var(--gu-base); font-size: 16px; }
@media (max-width: 880px) { .strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .strip { grid-template-columns: 1fr; } }

/* ============================================================
   From the field
   ============================================================ */
.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.field-grid .quote:nth-child(2) { margin-top: 48px; }
.field-grid .quote:nth-child(3) { margin-top: 18px; }
.quote {
  background: var(--cream);
  border: 1px solid var(--ng-90);
  border-radius: 18px;
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(57, 78, 44, 0.12); }
.quote__mark {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.6;
  color: var(--vr-base);
  height: 30px;
}
.quote__type { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.quote__text { font-size: 17px; color: var(--ng-dark); line-height: 1.62; }
.quote__who { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--ng-80); padding-top: 16px; }
.quote__who .n { font-weight: 500; color: var(--ng-base); }
.quote__who .t { font-size: 14px; color: var(--gu-base); }
@media (max-width: 880px) {
  .field-grid { grid-template-columns: 1fr; }
  .field-grid .quote:nth-child(2), .field-grid .quote:nth-child(3) { margin-top: 0; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("assets/nachtwacht.jpg") center 30% / cover no-repeat;
}
.contact__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--ng-base) 0%, rgba(57,78,44,0.94) 32%, rgba(44,61,33,0.72) 70%, rgba(28,38,20,0.55) 100%);
}
.contact__inner { position: relative; z-index: 2; max-width: 760px; }
.contact h2 { color: var(--cream); font-size: clamp(34px, 5vw, 54px); }
.contact__sub { color: var(--gu-60); margin: 24px 0 38px; font-size: 19px; max-width: 50ch; }
.contact__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.contact .eyebrow { color: var(--vr-70); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--cream);
  padding: 44px 0;
  border-top: 1px solid var(--ng-90);
}
.footer__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.logo-svg--foot { height: 26px; color: var(--ng-base); }
.footer__meta { font-size: 14px; color: var(--gu-base); }

.footer__connect {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  margin-bottom: 30px;
  background: var(--vr-90);
  border: 1px solid var(--vr-70);
  border-radius: 16px;
}
.footer__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  flex: none;
  border: 2px solid var(--vr-base);
}
.footer__connect-text { flex: 1; min-width: 0; }
.footer__connect-lead {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--vr-base);
}
.footer__connect-sub { font-size: 15px; color: var(--gu-base); margin-top: 5px; max-width: 64ch; }
.footer__connect-btn {
  flex: none;
  background: var(--vr-base);
  color: var(--cream);
  border-color: var(--vr-base);
}
.footer__connect-btn:hover { background: #5f2639; border-color: #5f2639; }
@media (max-width: 640px) {
  .footer__connect { flex-wrap: wrap; gap: 16px; }
  .footer__connect-btn { width: 100%; justify-content: center; }
}

/* tweaks mount */
#tweaks-root { position: fixed; z-index: 9999; }
