:root {
  --navy: #080d63;
  --retail-blue: #045aa5;
  --footer-blue: #42a9ca;
  --ink: #111427;
  --muted: #626a7c;
  --red: #d71920;
  --yellow: #ffc629;
  --sky: #d8ecfb;
  --sky-strong: #b8d9f1;
  --paper: #ffffff;
  --line: #d8dfeb;
  --soft: #f5f8fc;
  --shadow: 0 20px 60px rgba(8, 13, 99, 0.12);
  --header-offset: 158px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
}

.utility-bar {
  display: grid;
  grid-template-columns: minmax(330px, 0.58fr) minmax(340px, 1fr) auto;
  gap: 10px clamp(18px, 2.2vw, 30px);
  align-items: center;
  min-height: 0;
  padding: 16px clamp(18px, 4vw, 56px);
}

.brand,
.utility-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-weight: 900;
}

.brand {
  min-width: 0;
}

.brand img {
  width: min(100%, 430px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.brand span {
  display: none;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.site-search {
  display: grid;
  grid-template-columns: 1fr 52px;
  width: 100%;
}

.site-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  background: #e9e9e9;
  border: 0;
  color: #222;
  font: inherit;
  font-size: 1rem;
}

.site-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: #777;
  color: #fff;
  cursor: pointer;
}

.site-search svg,
.utility-actions svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.utility-actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: #666;
  font-size: 0.83rem;
  text-transform: uppercase;
}

.utility-actions a {
  color: #666;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  justify-self: end;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(max-content, 1fr));
  align-items: center;
  min-height: 52px;
  border-top: 1px solid #d7d7d7;
  color: #111;
  font-size: 0.94rem;
  font-weight: 900;
  overflow-x: auto;
}

.nav a {
  display: grid;
  place-items: center;
  min-height: 28px;
  padding: 0 18px;
  border-right: 1px solid #d7d7d7;
  text-align: center;
  white-space: nowrap;
}

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

.promo-bar {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #fff;
  background: var(--retail-blue);
  font-weight: 900;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  min-height: clamp(520px, calc(100vh - 180px), 680px);
  padding: clamp(36px, 5vw, 68px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, #e7f3ff 0%, #fff 45%, #ffe6ee 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(8, 13, 99, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(8, 13, 99, 0.08) 25%, transparent 25%);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.65) 56%, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.hero-copy,
.hero-art,
.section,
.trust-strip {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.1rem;
}

.hero-text,
.section p,
.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  padding: 0 22px;
}

.button svg,
.contact-card svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(8, 13, 99, 0.18);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-art {
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-art > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
}

.availability-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}

.availability-card span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.availability-card span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.steps span {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 88px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-strip div {
  padding: 24px;
  background: var(--soft);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  scroll-margin-top: var(--header-offset);
  padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 32px;
}

.split,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-grid article {
  min-height: 230px;
  overflow: hidden;
  padding: 0 0 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 20, 39, 0.06);
}

.product-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  object-fit: contain;
  padding: 12px;
  background: var(--soft);
}

.product-grid h3,
.product-grid p {
  padding-inline: 22px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 78px;
  margin-bottom: 20px;
  color: var(--navy);
  background: #fff;
  border: 4px solid var(--navy);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  transform: rotate(-5deg);
}

.card-icon.red {
  color: var(--red);
  transform: rotate(5deg);
}

.card-icon.blue {
  background: var(--sky);
  transform: rotate(-2deg);
}

.merch-section {
  padding: clamp(32px, 5vw, 64px) 0 clamp(52px, 7vw, 86px);
  background: #fff;
}

.feature-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  min-height: 320px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.banner-pattern {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-content: center;
  padding: clamp(28px, 5vw, 64px);
  background: #406f5a;
}

.photo-banner {
  display: block;
  padding: 0;
  background: #fff;
}

.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.banner-pattern span {
  display: grid;
  place-items: center;
  min-height: 116px;
  color: #fff;
  background: #183d35;
  border: 4px solid #8fd7c2;
  border-radius: 18px;
  font-weight: 1000;
  font-size: clamp(1.5rem, 3vw, 3rem);
  transform: rotate(var(--tilt, -6deg));
}

.banner-pattern span:nth-child(2n) {
  --tilt: 8deg;
  background: #f2a04a;
  border-color: #fee08b;
}

.banner-pattern span:nth-child(3n) {
  --tilt: -2deg;
  background: var(--retail-blue);
  border-color: #9cd9ff;
}

.banner-copy {
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 0, 0, 0.05) 35% 36%, transparent 37%),
    #fff;
}

.banner-copy h2,
.center-title {
  color: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 1000;
}

.outline-button {
  display: inline-grid;
  place-items: center;
  min-height: 58px;
  margin-top: 12px;
  padding: 0 24px;
  border: 3px solid #222;
  color: #111;
  font-weight: 1000;
  text-transform: uppercase;
}

.center-title {
  margin: clamp(54px, 8vw, 78px) 18px 30px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
}

.collection-grid article {
  text-align: center;
}

.collection-art {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  padding: 14px;
  background: var(--soft);
}

.collection-grid h3 {
  color: #444;
  font-weight: 1000;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  background: var(--sky);
  border-block: 1px solid var(--sky-strong);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 13, 99, 0.12);
  border-radius: 8px;
}

.steps span {
  content: none;
  background: var(--navy);
}

.steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.about-section {
  align-items: center;
}

.logo-panel {
  padding: clamp(24px, 4vw, 46px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-panel img {
  width: min(100%, 420px);
  margin: auto;
}

address {
  margin-bottom: 20px;
  color: var(--ink);
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 700;
}

.board-section {
  padding: 0;
  background: #fff;
  scroll-margin-top: 158px;
}

.board-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 6vw, 88px);
}

.board-intro h2 {
  margin: 0;
  color: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 5.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.board-intro p {
  max-width: 560px;
  margin: 0;
  color: #000;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 6vw, 88px);
  background: #f7f7f7;
}

.member-card {
  display: grid;
  gap: 18px;
  background: transparent;
}

.member-heading {
  display: grid;
  gap: 8px;
  min-height: 72px;
}

.member-heading h3 {
  margin: 0;
  color: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  font-weight: 500;
}

.member-role {
  margin: 0;
  color: #000;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.member-copy {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.member-copy img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  background: #e8e8e8;
}

.member-copy p:last-child {
  margin: 0;
  color: #000;
  font-size: clamp(0.82rem, 0.78vw, 0.98rem);
  line-height: 1.85;
}

.contact-section {
  background: var(--navy);
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 20px;
  color: var(--navy);
  background: #fff;
  border-radius: 8px;
}

.contact-card.featured {
  color: #fff;
  background: var(--red);
}

.contact-card span {
  align-self: end;
  color: inherit;
  font-weight: 900;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 0.96rem;
}

.footer {
  position: relative;
  padding: 0;
  color: #fff;
  background: #05083f;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.8fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 48px);
  background: transparent;
}

.footer-brand,
.footer nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
}

.footer h3,
.footer strong {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer a:hover {
  color: #fff;
}

.footer-button {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  color: #fff !important;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900 !important;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  color: var(--navy);
  border-radius: 50%;
}

.social-row svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px clamp(18px, 5vw, 48px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-legal p {
  margin: 0;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.request-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 63, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(5, 8, 63, 0.28);
}

.modal-panel h2 {
  margin-bottom: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 1000;
}

.modal-panel p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  :root {
    --header-offset: 150px;
  }

  .utility-bar {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: min(62vw, 360px);
  }

  .brand {
    min-width: 0;
  }

  .site-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .utility-actions {
    grid-column: 1 / -1;
    order: 4;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.menu-open .menu-toggle {
    background: var(--navy);
    color: #fff;
  }

  .nav {
    display: none;
    grid-template-columns: 1fr;
    min-height: 0;
    border-top: 1px solid #d7d7d7;
    overflow: visible;
  }

  body.menu-open .nav {
    display: grid;
  }

  .nav a {
    place-items: start;
    min-height: 48px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid #ededed;
    text-align: left;
  }

  .hero,
  .split,
  .order-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .board-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    max-width: 680px;
  }

  .trust-strip,
  .product-grid,
  .board-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .feature-banner {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-card {
    gap: 18px;
  }

  .member-heading {
    min-height: auto;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 138px;
  }

  .utility-bar {
    padding: 12px 16px;
  }

  .brand span {
    max-width: 210px;
    line-height: 1.05;
  }

  .brand img {
    width: min(56vw, 300px);
    height: auto;
  }

  .utility-actions {
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-search {
    grid-template-columns: 1fr 48px;
  }

  .site-search input {
    min-height: 46px;
  }

  .hero,
  .section {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-art {
    padding: 16px;
  }

  .trust-strip {
    margin-inline: 16px;
  }

  .banner-pattern {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }

  .banner-pattern span {
    min-height: 88px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    gap: 16px;
  }

  .member-copy {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .board-intro,
  .board-grid {
    padding-block: 32px;
  }

  .member-copy img {
    width: 96px;
    border-radius: 18px;
  }

  .footer {
    padding-inline: 0;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .footer-legal {
    flex-direction: column;
    padding-inline: 22px;
  }
}
