/* Cricket Local promo — green / cream / gold, mobile-first */
:root {
  --green: #0f5132;
  --green-deep: #006400;
  --green-dark: #0a3d26;
  --cream: #f7f3e9;
  --cream-soft: #fffef9;
  --gold: #d4af37;
  --gold-dark: #a8892a;
  --ink: #14241c;
  --muted: #4a5c54;
  --card: #ffffff;
  --shadow: 0 8px 30px rgba(15, 81, 50, 0.1);
  --radius: 1rem;
  --max: 1120px;
  --nav-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 233, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 81, 50, 0.1);
}
.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--green);
  font-weight: 800;
  font-size: 1.05rem;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem 1.1rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-links a:hover {
  color: var(--green);
}
/* CTA inside nav must keep light text on green (nav link color is more specific otherwise) */
.nav-links a.btn,
.nav-links a.btn-primary {
  color: #ffffff !important;
  font-weight: 800;
}
.nav-links a.btn-primary:hover {
  color: #ffffff !important;
}
.nav-toggle {
  display: inline-flex;
  border: 1px solid rgba(15, 81, 50, 0.2);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--green);
}
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  background: var(--cream);
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(15, 81, 50, 0.12);
  box-shadow: var(--shadow);
}
@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(15, 81, 50, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(15, 81, 50, 0.35);
}
.btn-gold {
  background: var(--gold);
  color: #14241c !important;
  font-weight: 800;
}
.btn-gold:hover,
.btn-gold:focus-visible {
  color: #14241c !important;
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff !important;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
}
.btn-outline-dark {
  background: #fff;
  border-color: rgba(15, 81, 50, 0.25);
  color: var(--green) !important;
}
.btn-outline-dark:hover {
  color: var(--green-dark) !important;
}
/* Never put dark ink on dark green surfaces */
.section-dark .btn-primary,
.hero .btn-primary {
  background: #ffffff;
  color: var(--green-dark) !important;
  border-color: #ffffff;
}
.section-dark .btn-primary:hover,
.hero .btn-primary:hover {
  background: var(--cream);
  color: var(--green-dark) !important;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* —— Layout —— */
.section {
  padding: 4rem 1.25rem;
}
.section-alt {
  background: var(--cream);
}
.section-dark {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: #f3f7f4;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.section-dark .section-kicker {
  color: var(--gold);
}
.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1.2;
}
.section-dark .section-title {
  color: #fff;
}
.section-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 61, 38, 0.92) 0%, rgba(15, 81, 50, 0.72) 48%, rgba(10, 61, 38, 0.55) 100%),
    url("../assets/heroes/cricket-batsman-drive.jpg") center / cover no-repeat;
}
/* Logo / brand animation — top right of hero, slow loop */
.hero__anim {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: min(42vw, 220px);
  pointer-events: none;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 36px rgba(0, 0, 0, 0.35);
  background: rgba(5, 13, 10, 0.35);
}
.hero__anim-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
}
@media (min-width: 700px) {
  .hero__anim {
    top: 1.5rem;
    right: 1.75rem;
    width: min(28vw, 280px);
  }
}
@media (min-width: 1024px) {
  .hero__anim {
    top: 2rem;
    right: max(2rem, calc((100vw - var(--max)) / 2));
    width: 300px;
  }
}
@media (max-width: 480px) {
  .hero__anim {
    width: min(38vw, 140px);
    top: 0.65rem;
    right: 0.65rem;
    border-radius: 1rem;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
  /* Keep headline clear of top-right animation on small screens */
  padding-right: max(1.25rem, min(42vw, 11rem));
}
@media (min-width: 700px) {
  .hero__inner {
    padding-right: max(1.25rem, min(30vw, 18rem));
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
}
.hero__tag {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.hero__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold);
}
.hero__stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* —— Cards —— */
.grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 81, 50, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 81, 50, 0.14);
}
.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(15, 81, 50, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--green);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 81, 50, 0.1);
  background: #0a3d26;
}
.feature-shot img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.feature-shot--phone img {
  aspect-ratio: 9/16;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  background: #050d0a;
  margin: 0 auto;
  display: block;
}
.feature-shot figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: var(--green-dark);
}

/* —— Gallery —— */
.gallery-heading {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
}
.gallery-grid {
  display: grid;
  gap: 1rem;
}
.gallery-grid--phones {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .gallery-grid--phones {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .gallery-grid--phones {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-grid--promo {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gallery-grid--promo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .gallery-grid--promo {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a1612;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 81, 50, 0.18);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: contain;
  object-position: top center;
  background: #050d0a;
  display: block;
}
.gallery-card--promo img {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.gallery-card__label {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f3faf6;
  background: var(--green-dark);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 13, 10, 0.92);
  padding: 1rem;
  gap: 0.5rem;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox__figure {
  margin: 0;
  max-width: min(96vw, 520px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: min(78vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #050d0a;
}
.lightbox__figure figcaption {
  margin-top: 0.75rem;
  color: #ecfdf5;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}
.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
.lightbox__nav {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
@media (max-width: 640px) {
  .lightbox__nav {
    position: absolute;
    bottom: 1.25rem;
  }
  .lightbox__nav--prev {
    left: 1rem;
  }
  .lightbox__nav--next {
    right: 1rem;
  }
}
body.lightbox-open {
  overflow: hidden;
}

/* —— How to guide (in-app help mirror) —— */
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 52rem;
}
.guide-item {
  background: #fffef9;
  border: 1px solid rgba(15, 81, 50, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.guide-question {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-size: 1rem;
  font-weight: 800;
  color: #052e16;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.guide-question::-webkit-details-marker {
  display: none;
}
.guide-question::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 81, 50, 0.1);
  color: var(--green);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}
.guide-item[open] .guide-question::after {
  content: "−";
}
.guide-item[open] .guide-question {
  border-bottom: 1px solid rgba(15, 81, 50, 0.1);
  background: rgba(15, 81, 50, 0.04);
}
.guide-answer {
  padding: 0.85rem 1.15rem 1.15rem;
  color: #1a2e24;
  font-size: 0.95rem;
  line-height: 1.55;
}
.guide-answer p {
  margin: 0 0 0.75rem;
}
.guide-answer p:last-child {
  margin-bottom: 0;
}
.guide-answer strong {
  color: #0a3d26;
  font-weight: 800;
}
.guide-answer a {
  color: var(--green);
  font-weight: 700;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid rgba(15, 81, 50, 0.1);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 0.85rem;
}
.step h3 {
  margin: 0 0 0.4rem;
  color: var(--green);
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Mission —— */
.mission-lead strong {
  color: var(--green-dark);
}
.mission-grid {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
}
@media (min-width: 700px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mission-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(15, 81, 50, 0.1);
  box-shadow: var(--shadow);
}
.mission-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--green);
}
.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.mission-support {
  border-left: 4px solid var(--gold);
}
.mission-support__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.mission-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  background: linear-gradient(135deg, #f5e6a8, var(--gold));
  border: 1px solid rgba(168, 137, 42, 0.35);
}

/* —— Testimonials —— */
.quote {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.quote p {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--ink);
}
.quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 3rem 1.25rem;
}
.cta-band h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-card--wide {
  max-width: 36rem;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0.75rem 0 0.35rem;
  color: var(--green);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(15, 81, 50, 0.2);
  font: inherit;
  background: #fff;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  background: rgba(15, 81, 50, 0.1);
  color: var(--green);
  font-weight: 600;
}
.form-success.is-visible {
  display: block;
}

/* —— Admin —— */
.admin-shell {
  min-height: 100vh;
  background: var(--cream);
}
.admin-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
.admin-login {
  max-width: 400px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.admin-login h1 {
  margin: 0 0 0.35rem;
  color: var(--green);
  font-size: 1.4rem;
}
.admin-login p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.admin-error {
  display: none;
  color: #b42318;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.admin-error.is-visible {
  display: block;
}
.admin-dash {
  display: none;
}
.admin-dash.is-visible {
  display: block;
}
.stat-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 1.5rem 0;
}
.stat-tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid rgba(15, 81, 50, 0.1);
  box-shadow: var(--shadow);
}
.stat-tile strong {
  display: block;
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 900;
}
.stat-tile span {
  font-size: 0.85rem;
  color: var(--muted);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(15, 81, 50, 0.08);
}
.admin-table th {
  background: var(--green);
  color: #fff;
  font-weight: 700;
}
.admin-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 1.25rem 2rem;
  font-size: 0.9rem;
}
.site-footer a {
  color: var(--gold);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.site-footer h4 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 0.95rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 0.35rem 0;
}
.footer-base {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* —— Checklist page —— */
.checklist-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
.checklist-page h1 {
  color: var(--green);
}
.checklist-page ul {
  padding-left: 1.2rem;
}
.checklist-page li {
  margin: 0.5rem 0;
}
