:root {
  --ink: #0a0a0a;
  --muted: #5a5a5a;
  --paper: #ffffff;
  --paper-2: #f5f5f5;
  --line: #e6e6e6;
  --accent: #6bbb49;
  --accent-ink: #0a0a0a;
  --hero-text: #ffffff;
  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page: 72rem;
  --radius: 0.35rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.skip:focus,
.skip:focus-visible {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--page));
  margin-inline: auto;
}

/* Header */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.top.is-solid {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

.top-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 1.5rem, var(--page));
  margin: 0.75rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: auto;
  height: 3.6rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.35rem;
  padding: 0.25rem 0.4rem;
}

@media (min-width: 860px) {
  .brand-mark img {
    height: 4rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-text);
}

.nav a:hover {
  color: var(--accent);
}

.top.is-solid .nav a {
  color: var(--ink);
}

.top.is-solid .nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.55rem 0.85rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 120;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: #fff;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.top.is-solid .nav-toggle {
  border-color: var(--line);
}

.top.is-solid .nav-toggle span {
  background: var(--ink);
}

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

  .nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 5.5rem 2rem 2rem;
    background: #0a0a0a;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.35s var(--ease),
      opacity 0.35s var(--ease),
      visibility 0.35s var(--ease);
  }

  .nav.is-open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    color: #fff !important;
    opacity: 1;
    transform: none;
    transition: color 0.2s var(--ease);
  }

  .nav.is-open a {
    opacity: 1;
    transform: none;
  }

  .top.is-solid .nav a {
    color: #fff !important;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--hero-text);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-zoom 16s var(--ease) both;
}

@keyframes hero-zoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.55) 42%, rgba(10, 10, 10, 0.28) 72%, rgba(10, 10, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, transparent 28%, rgba(10, 10, 10, 0.75) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--page));
  margin: 0 auto 4.25rem;
  max-width: 38rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.hero-logo {
  width: min(11.5rem, 48vw);
  height: auto;
  margin: 0 0 1.35rem;
  background: #fff;
  border-radius: 0.45rem;
  padding: 0.7rem 0.85rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.headline {
  margin: 0 0 0.85rem;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 32rem;
}

.lede {
  margin: 0 0 1.7rem;
  max-width: 34rem;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #7acc58;
  border-color: #7acc58;
}

.btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-line:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  animation: reveal-up 0.85s var(--ease) forwards;
}

.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.22s; }
.reveal.delay-3 { animation-delay: 0.34s; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Intro */
.intro {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .intro-grid {
    grid-template-columns: 8rem 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.intro-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.35rem;
}

.intro-body {
  max-width: 42rem;
}

.intro-title {
  margin: 0 0 1.15rem;
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.intro-text {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-text:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Audience */
.audience {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.audience-grid li {
  padding: 0;
}

.audience-grid h3 {
  margin: 0 0 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.audience-grid h3::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 3px;
  margin-bottom: 0.85rem;
  background: var(--accent);
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Service bands */
.bands-head {
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
}

.bands-head .section-head {
  margin-bottom: 1.5rem;
}

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.service-jump a:hover {
  border-color: var(--accent);
  background: rgba(107, 187, 73, 0.1);
  color: var(--ink);
}

.bands {
  display: grid;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.band {
  display: grid;
  background: var(--paper);
  opacity: 0;
  transform: translateY(1.5rem);
  scroll-margin-top: 5rem;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.band.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .band {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 34rem;
  }

  .band-flip {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .band-flip .band-media {
    order: 2;
  }

  .band-flip .band-copy {
    order: 1;
  }
}

.band-media {
  overflow: hidden;
  background: #111;
  min-height: 18rem;
}

.band-media picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
}

.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 18rem;
  transition: transform 1.1s var(--ease);
}

@media (min-width: 900px) {
  .band-media,
  .band-media picture,
  .band-media img {
    min-height: 100%;
  }
}

.band:hover .band-media img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .band:hover .band-media img {
    transform: none;
  }
}

.band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

@media (min-width: 900px) {
  .band-copy {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .band-flip .band-copy {
    border-left: 0;
    border-right: 1px solid var(--line);
  }
}

.band-num {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.band-copy h3 {
  margin: 0 0 0.85rem;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.band-copy p {
  margin: 0 0 1rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
}

.band-label {
  margin: 0.25rem 0 0.65rem !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink) !important;
}

.band-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.band-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.band-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--accent);
}

/* Scope summary */
.scope {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.scope-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .scope-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.scope-grid h3 {
  margin: 0 0 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scope-grid h3::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 3px;
  margin-top: 0.65rem;
  background: var(--accent);
}

.scope-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.scope-grid li {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Process */
.process {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.steps li {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 2px solid var(--accent);
}

.step-num {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Certs */
.certs {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.certs-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.certs-title {
  margin: 0 auto;
  max-width: 18ch;
  font-weight: 800;
  font-size: clamp(1.55rem, 5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.certs-lede {
  margin: 0.75rem 0 1.25rem;
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.certs-text {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .cert-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.cert-list li {
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  text-align: left;
}

.cert-list span {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.cert-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cert-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 400;
}

.certs-note {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Contact */
.contact {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--paper-2);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.contact-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-info h2 {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 16ch;
}

.contact-lede {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 26rem;
}

.contact-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.contact-lines li {
  display: grid;
  gap: 0.25rem;
}

.contact-lines span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-lines a {
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

.contact-lines a:hover {
  color: var(--accent);
}

.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.form-title {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.form-lede {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107, 187, 73, 0.18);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #d45d5d;
}

.contact-submit {
  justify-self: start;
  border: 0;
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-status {
  margin: 0;
  min-height: 1.35em;
  font-size: 0.9rem;
}

.contact-status.is-success {
  color: var(--accent);
}

.contact-status.is-error {
  color: #c0392b;
}

.contact-privacy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-privacy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-privacy a:hover {
  color: var(--accent);
}

/* Privacy page */
.legal {
  padding: clamp(6.5rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.legal-inner {
  max-width: 42rem;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.98rem;
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal .todo {
  color: #a15c00;
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

/* Footer */
.footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    align-items: center;
  }
}

.footer-brand img {
  width: auto;
  height: 4.5rem;
  object-fit: contain;
}

.footer-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-meta a {
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--accent);
}

.site-credit {
  background: #0a0a0a;
  padding: 1rem 0;
}

.site-credit p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.site-credit a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-credit a:hover {
  color: var(--accent);
}

.site-credit img {
  display: inline;
  max-height: 12px;
  height: 12px;
  width: auto;
  max-width: none;
  vertical-align: middle;
  margin-left: 0.2rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-img,
  .band {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
