/* ============================================
   Akanbi Entertainment — Neubrutalist System
   ============================================ */

:root {
  --ink: #0E0E10;
  --paper: #FFFFFF;
  --ground: #FFF7ED;
  --blue: #007BFF;
  --coral: #FF5A4E;
  --mint: #00D9A3;
  --yellow: #FFD23F;
  --muted: #5B5A63;
  --muted-2: #8B8A93;
  --max: 1180px;

  /* legacy aliases so every selector below stays readable */
  --stone: var(--ink);
  --stone-2: var(--ink);
  --ash: var(--muted);
  --ash-light: var(--muted-2);
  --cream: var(--paper);
  --cream-dim: rgba(255,255,255,0.75);
  --ember: var(--blue);
  --ember-light: var(--coral);
  --hair: var(--ink);
  --hair-light: var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ink); color: #fff; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--coral); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 0 18px;
}
.on-dark .eyebrow, .cta-band .eyebrow { background: var(--yellow); color: var(--ink); }

h1, h2, h3 {
  font-family: 'Unbounded', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 20px;
  text-wrap: balance;
}

h1 { font-size: clamp(36px, 6.4vw, 80px); }
h2 { font-size: clamp(26px, 4.4vw, 44px); }
h3 { font-size: clamp(16px, 2.2vw, 19px); }

p { line-height: 1.7; color: var(--muted); margin: 0 0 16px; }
.on-dark p { color: rgba(255,255,255,0.78); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }

.lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- Hard surfaces (the core neubrutalist token) ---------- */
.hard {
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--ink);
  background: var(--paper);
}
.hard-sm {
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--paper);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  white-space: nowrap;
}
.btn:active { transform: translate(4px, 4px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue); color: #fff; filter: brightness(1.06); }
.btn-outline { background: var(--paper); color: var(--ink); }
.btn-outline:hover { background: var(--yellow); color: var(--ink); }
.btn-outline-dark { background: var(--paper); color: var(--ink); }
.btn-outline-dark:hover { background: var(--mint); color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Tags / chips ---------- */
.tagc {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

/* ---------- Logo mark: Spin & Play ---------- */
.mark {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ground);
  border-bottom: 2.5px solid var(--ink);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.brand-text { display: flex; flex-direction: column; }
.brand .brand-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand .brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: 3px;
}

.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
}
.nav-desktop a:hover, .nav-desktop a.active { border-color: var(--ink); background: var(--paper); color: var(--ink); }
.nav-desktop .btn { margin-left: 10px; padding: 11px 22px; font-size: 12.5px; box-shadow: 3px 3px 0 var(--ink); }

.nav-toggle {
  display: none;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); display: block; border-radius: 2px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--ground);
  border-bottom: 2.5px solid var(--ink);
  padding: 8px 24px 24px;
}
.nav-mobile a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1.5px dashed var(--ink);
}
.nav-mobile .btn { margin-top: 16px; }

body.nav-open .nav-mobile { display: flex; }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero.hero-short { min-height: 46vh; align-items: center; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,16,0.30) 0%, rgba(14,14,16,0.5) 55%, rgba(14,14,16,0.88) 100%);
}
.hero-short::before {
  background: linear-gradient(180deg, rgba(14,14,16,0.68) 0%, rgba(14,14,16,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
  color: #fff;
}

/* ---------- Hero slideshow (Ken Burns crossfade, CSS-only) ---------- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  animation: heroKenBurns 24s infinite ease-in-out;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -6s; }
.hero-slide:nth-child(3) { animation-delay: -12s; }
.hero-slide:nth-child(4) { animation-delay: -18s; }
@keyframes heroKenBurns {
  0%   { opacity: 0; transform: scale(1.08); }
  5%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.16); }
  25%  { opacity: 0; transform: scale(1.16); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; transform: none; }
  .hero-slide:first-child { opacity: 1; }
}
.hero-short .hero-content { padding: 56px 0; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lede { color: rgba(255,255,255,0.85); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  border-bottom: 2.5px solid var(--ink);
  padding: 16px 0;
  overflow: hidden;
}
.trust-strip .track {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip .track span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--ink); }
.section-alt { background: var(--paper); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
}
.split-media {
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  transform: rotate(-1.2deg);
}
.split.reverse .split-media { transform: rotate(1.2deg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { margin-left: auto; margin-right: auto; }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 30px 26px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
}
.feature-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
  background: var(--mint);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  margin-bottom: 18px;
}
.section-dark .feature-card:nth-child(1) .num { background: var(--mint); }
.section-dark .feature-card:nth-child(2) .num { background: var(--yellow); }
.section-dark .feature-card:nth-child(3) .num { background: var(--coral); }
.feature-card h3 { color: var(--ink); margin-bottom: 10px; }
.feature-card p { margin: 0; color: var(--muted); }

/* ---------- Package cards ---------- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 940px) { .packages-grid { grid-template-columns: 1fr; } }

.package-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 7px 7px 0 var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card.featured { background: var(--yellow); }
.package-card .flag {
  position: absolute;
  top: -16px; right: 24px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
}
.package-head { padding: 36px 28px 20px; }
.package-head h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  margin-bottom: 6px;
}
.package-head .tagline { font-size: 13.5px; color: var(--muted); margin: 0; }
.package-price {
  padding: 16px 28px 20px;
  border-top: 2px dashed var(--ink);
  border-bottom: 2px dashed var(--ink);
  margin: 0 28px;
  padding-left: 0;
  padding-right: 0;
}
.package-price .amount {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  color: var(--ink);
}
.package-price .amount span { font-size: 15px; color: var(--muted); font-family: 'Bricolage Grotesque', sans-serif; text-transform: none; }
.package-price .note { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; font-weight: 700; }
.package-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.package-body p { margin: 0; font-size: 14.5px; }
.package-body ul { margin: 0; padding-left: 20px; font-size: 14.5px; color: var(--muted); }
.package-body ul li { margin-bottom: 8px; }
.package-foot { padding: 0 28px 28px; }

.includes-bar {
  background: var(--mint);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 26px 30px;
  text-align: center;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 48px;
}
.includes-bar strong { color: var(--ink); }

.enhancement-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .enhancement-cols { grid-template-columns: 1fr; } }
.enhancement-block h3 { margin-bottom: 6px; }
.enhancement-block .sub { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; font-weight: 700; }
.enh-list { list-style: none; margin: 0; padding: 0; }
.enh-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1.5px dashed rgba(255,255,255,0.3);
  font-size: 14.5px;
  color: #fff;
}
.enh-list li .price {
  color: var(--ink);
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 700;
  white-space: nowrap;
  font-size: 12.5px;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1020px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 24px 22px;
  background: var(--paper);
}
.testi-grid .testi-card:nth-child(1) { background: var(--coral); }
.testi-grid .testi-card:nth-child(2) { background: var(--blue); }
.testi-grid .testi-card:nth-child(3) { background: var(--mint); }
.testi-grid .testi-card:nth-child(4) { background: var(--yellow); }
.testi-card .quote {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 18px;
  text-transform: none;
  letter-spacing: 0;
}
.testi-grid .testi-card:nth-child(1) .quote,
.testi-grid .testi-card:nth-child(2) .quote { color: #fff; }
.testi-card .who { font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); font-weight: 700; }
.testi-grid .testi-card:nth-child(1) .who,
.testi-grid .testi-card:nth-child(2) .who { color: #fff; }
.testi-card .where { font-size: 11.5px; color: rgba(14,14,16,0.6); margin-top: 2px; }
.testi-grid .testi-card:nth-child(1) .where,
.testi-grid .testi-card:nth-child(2) .where { color: rgba(255,255,255,0.75); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-item {
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 20px 18px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.area-item .city { font-weight: 700; color: var(--ink); font-size: 14.5px; margin-bottom: 6px; }
.area-item .tag { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); font-weight: 700; background: var(--yellow); border: 1.5px solid var(--ink); border-radius: 999px; padding: 3px 10px; display: inline-block; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  padding: 0 22px;
  box-shadow: 4px 4px 0 var(--ink);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex-shrink: 0;
  font-size: 18px; font-weight: 700; color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-item .faq-a { padding: 0 0 24px; max-width: 70ch; }
.faq-item .faq-a p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid button {
  padding: 0; border: 2.5px solid var(--ink); border-radius: 16px; background: var(--paper); cursor: pointer; display: block; overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.gallery-grid button:nth-child(3n+1) { transform: rotate(-1deg); }
.gallery-grid button:nth-child(3n+2) { transform: rotate(0.8deg); }
.gallery-grid button:nth-child(3n+3) { transform: rotate(-0.6deg); }
.gallery-grid img {
  width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-grid button:hover { transform: translate(-3px,-3px) rotate(0deg); box-shadow: 8px 8px 0 var(--ink); }

.lightbox {
  position: fixed; inset: 0; background: rgba(14,14,16,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border: 2.5px solid #fff; border-radius: 16px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: var(--yellow); border: 2.5px solid var(--ink); border-radius: 50%;
  width: 44px; height: 44px;
  color: var(--ink); font-size: 24px; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--yellow); border: 2.5px solid var(--ink); border-radius: 50%;
  width: 52px; height: 52px;
  color: var(--ink); font-size: 26px; cursor: pointer; padding: 0;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
}
.field input, .field select, .field textarea {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: 3px 3px 0 var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.aside-card {
  background: var(--mint);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 30px;
  color: var(--ink);
}
.aside-card h3 { color: var(--ink); }
.aside-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.aside-card ul li { padding: 10px 0; border-bottom: 1.5px dashed rgba(14,14,16,0.35); font-size: 13.5px; color: var(--ink); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 40px; height: 40px; border: 2.5px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); background: var(--paper);
  font-size: 11px; font-weight: 700;
}
.social-row a:hover { background: var(--yellow); color: var(--ink); }
.hp-field { position: absolute; left: -9999px; }

.hb-embed {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
}
.hb-embed iframe {
  width: 100%;
  height: 1400px;
  border: none;
  display: block;
}
.hb-fallback {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 16px 0 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  padding: 76px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 60ch; margin: 0 auto 32px; }
.cta-band .cta-row { justify-content: center; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--ink); }
.cta-band .btn-primary { background: var(--yellow); color: var(--ink); border-color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 28px; border-top: 2.5px solid var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--yellow); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 18px; font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif;
}
.site-footer .brand-name { color: #fff; font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 17px; text-transform: uppercase; margin-bottom: 14px; }
.site-footer p { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 11px; font-size: 13.5px; }
.site-footer ul a { color: rgba(255,255,255,0.75); }
.site-footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1.5px dashed rgba(255,255,255,0.3);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}

/* ---------- Misc ---------- */
.badge-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.badge-row .badge {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 20px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--yellow); color: var(--ink); padding: 12px 20px; z-index: 2000; border: 2px solid var(--ink); border-radius: 8px;
}
.skip-link:focus { left: 12px; top: 12px; }

.form-status { margin-top: 16px; font-size: 14px; }
