:root {
  --black: #070604;
  --ink: #17110c;
  --coffee: #24180f;
  --ivory: #fff8ef;
  --paper: #f7efe1;
  --muted: #a99884;
  --gold: #c89442;
  --bronze: #7f4f27;
  --sand: #e6d0aa;
  --line: rgba(255, 248, 239, .16);
  --dark-line: rgba(127, 79, 39, .22);
  --header: 78px;
}

* { box-sizing: border-box; min-width: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: Manrope, Arial, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(200,148,66,.11), transparent 28%),
    linear-gradient(90deg, rgba(255,248,239,.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,248,239,.018) 1px, transparent 1px);
  background-size: auto, 160px 160px, 160px 160px;
  opacity: .72;
}
a { color: inherit; text-decoration: none; }
button { border: 0; font: inherit; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, strong, small { overflow-wrap: break-word; }
main, footer { position: relative; z-index: 1; }
main > section { scroll-margin-top: calc(var(--header) + 18px); }

.ambient-canvas {
  position: fixed;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .1;
  mix-blend-mode: screen;
}

.progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--gold), var(--sand));
}

.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: var(--header);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background: linear-gradient(rgba(7,6,4,.72), rgba(7,6,4,.08));
  transition: height .28s ease, background .28s ease, backdrop-filter .28s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: rgba(255,248,239,.18);
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(7,6,4,.82);
  backdrop-filter: blur(22px);
}
.brand img {
  width: 100px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.38));
}
.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.7vw, 56px);
}
.mobile-wa { display: none; }
.site-header a {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-header a:hover { color: var(--sand); }
.header-cta {
  justify-self: end;
  white-space: nowrap;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,248,239,.44);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(22px, 6vw, 92px) 42px;
}
.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.08) contrast(1.05) brightness(.92);
  transform: scale(1.02);
}
.hero-shade {
  background:
    radial-gradient(circle at 68% 32%, rgba(200,148,66,.2), transparent 26%),
    linear-gradient(90deg, rgba(7,6,4,.9), rgba(7,6,4,.46) 48%, rgba(7,6,4,.22)),
    linear-gradient(0deg, rgba(7,6,4,.96), rgba(7,6,4,.56) 38%, rgba(7,6,4,.08) 72%, rgba(7,6,4,.58));
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(230,208,170,.18) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(230,208,170,.1) 0 1px, transparent 1px);
  background-size: 18vw 100%, 100% 22vh;
  opacity: .32;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1080px, 100%);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  text-wrap: balance;
}
.hero h1 {
  max-width: 1060px;
  font-size: clamp(68px, 10vw, 162px);
  line-height: .8;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255,248,239,.82);
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, var(--sand), var(--gold), var(--bronze));
  color: #150d07;
  box-shadow: 0 22px 58px rgba(200,148,66,.24);
}
.ghost {
  border: 1px solid rgba(255,248,239,.34);
  color: var(--ivory);
}
.hero-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(980px, 100%);
  margin-top: 56px;
  border-top: 1px solid rgba(230,208,170,.34);
  border-bottom: 1px solid rgba(230,208,170,.16);
  background: linear-gradient(90deg, rgba(7,6,4,.58), rgba(7,6,4,.18));
  backdrop-filter: blur(14px);
}
.hero-rail span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255,248,239,.12);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-rail span:last-child { border-right: 0; }

.brand-statement {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(260px, .75fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
  padding: 112px clamp(22px, 6vw, 92px);
  background: var(--paper);
  color: var(--black);
}
.brand-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 24%, rgba(200,148,66,.14), transparent 26%),
    linear-gradient(90deg, rgba(127,79,39,.08) 1px, transparent 1px);
  background-size: auto, 120px 100%;
  opacity: .62;
}
.brand-statement > * {
  position: relative;
  z-index: 1;
}
.statement-copy h2,
.section-copy h2,
.curation h2,
.showrooms h2,
.contact h2 {
  font-size: clamp(46px, 7vw, 104px);
  line-height: .88;
  letter-spacing: -.04em;
}
.statement-text,
.section-copy p,
.curation-copy > p,
.showrooms-copy > p,
.contact-card > p {
  margin: 0;
  color: rgba(20,16,12,.68);
  font-size: 17px;
  line-height: 1.78;
}

.chapters {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
  min-height: 400vh;
  background: #070604;
  color: var(--ivory);
}
.chapters-intro {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  overflow: hidden;
  padding: 118px clamp(22px, 6vw, 92px) 72px;
  border-top: 1px solid rgba(230,208,170,.18);
  border-bottom: 1px solid rgba(230,208,170,.1);
  background:
    radial-gradient(circle at 78% 22%, rgba(200,148,66,.16), transparent 28%),
    linear-gradient(90deg, rgba(255,248,239,.06) 1px, transparent 1px),
    #070604;
  background-size: auto, 180px 100%, auto;
}
.chapters-intro::after {
  content: "";
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  bottom: 0;
  width: min(38vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.chapters-intro h2 {
  max-width: 900px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.04em;
}
.chapters-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0 auto;
  color: rgba(255,248,239,.68);
  font-size: 17px;
  line-height: 1.75;
}
.chapter-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: url("assets/optimized/showroom-estar.jpg") center / cover no-repeat;
}
.chapter-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) brightness(.78);
  transform: scale(1.04);
  transition: opacity .34s ease, transform .7s ease, filter .7s ease;
}
.chapter-stage img.is-changing {
  opacity: .2;
  transform: scale(1.09);
  filter: blur(8px) brightness(.58);
}
.chapter-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,6,4,.18), rgba(7,6,4,.08) 46%, rgba(7,6,4,.82)),
    linear-gradient(0deg, rgba(7,6,4,.7), transparent 45%, rgba(7,6,4,.24));
}
.chapter-frame {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 5vw, 70px);
  bottom: clamp(26px, 8vh, 84px);
  display: grid;
  gap: 12px;
}
.chapter-frame span {
  color: var(--sand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
}
.chapter-frame strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 130px);
  font-weight: 500;
  line-height: .82;
}
.chapter-list {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: start;
  gap: 40vh;
  padding: 42vh clamp(22px, 5vw, 74px) 48vh;
}
.chapter {
  min-height: 58vh;
  display: grid;
  align-content: center;
  padding: 32px 0 32px clamp(18px, 3vw, 36px);
  border-left: 1px solid rgba(230,208,170,.18);
  opacity: .45;
  transition: opacity .28s ease, border-color .28s ease;
}
.chapter.is-active {
  opacity: 1;
  border-color: rgba(230,208,170,.82);
}
.chapter > span {
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
}
.chapter h2 {
  font-size: clamp(44px, 5vw, 78px);
  line-height: .88;
}
.chapter p {
  margin: 22px 0 0;
  color: rgba(255,248,239,.72);
  font-size: 16px;
  line-height: 1.76;
}

.curation {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  padding: 126px clamp(22px, 6vw, 92px);
  background:
    radial-gradient(circle at 14% 12%, rgba(200,148,66,.16), transparent 30%),
    linear-gradient(135deg, #090806, #17110c 58%, #090806);
}
.curation-copy > p {
  max-width: 560px;
  margin: 28px 0 32px;
  color: rgba(255,248,239,.72);
}
.curation-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  grid-template-rows: 320px 300px;
  gap: 16px;
}
.curation-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,248,239,.16);
}
.curation-photo.tall { grid-row: 1 / 3; }
.curation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.curation-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--ivory);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.principles {
  display: grid;
  border: 1px solid rgba(255,248,239,.14);
  background: rgba(7,6,4,.62);
  backdrop-filter: blur(18px);
}
.principles article {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,248,239,.12);
}
.principles article:last-child { border-bottom: 0; }
.principles span {
  display: block;
  margin-bottom: 9px;
  color: var(--sand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}
.principles strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}
.principles p {
  margin: 8px 0 0;
  color: rgba(255,248,239,.68);
  font-size: 13.5px;
  line-height: 1.6;
}

.film {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding: 118px clamp(22px, 6vw, 92px);
  background: var(--black);
}
.section-copy { max-width: 640px; }
.section-copy p { color: rgba(255,248,239,.7); }
.film-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,248,239,.14);
  background: #000;
  box-shadow: 0 34px 120px rgba(0,0,0,.32);
}
.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showrooms {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  min-height: 720px;
  background: var(--paper);
  color: var(--black);
}
.showrooms-media {
  min-height: 720px;
  overflow: hidden;
}
.showrooms-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showrooms-copy {
  display: grid;
  align-content: center;
  padding: clamp(56px, 7vw, 120px);
}
.showrooms .eyebrow { color: var(--bronze); }
.unit-list {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--dark-line);
}
.unit-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}
.unit-list span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
}
.unit-list b {
  align-self: center;
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact {
  padding: 118px clamp(22px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(7,6,4,.84), rgba(7,6,4,.96)),
    url("assets/optimized/sala-jantar-lustre.jpg") center / cover;
}
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact-card img {
  width: 138px;
  margin: 0 auto 30px;
}
.contact-card > p {
  max-width: 620px;
  margin: 26px auto 32px;
  color: rgba(255,248,239,.72);
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #16814a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

footer {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px clamp(22px, 6vw, 92px);
  background: #050403;
  color: rgba(255,248,239,.68);
  border-top: 1px solid rgba(255,248,239,.1);
}
footer img { width: 116px; }
footer p { margin: 0; }
footer a {
  color: var(--sand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  :root { --header: 108px; }
  .site-header {
    grid-template-columns: 106px 1fr;
    grid-template-rows: 64px 34px;
    gap: 0 18px;
    height: var(--header);
    padding: 0 18px 10px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .brand img { width: 92px; }
  .site-header::after {
    left: 18px;
    right: 18px;
  }
  .site-header.is-scrolled { height: var(--header); }
  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(255,248,239,.16);
    border-radius: 999px;
    background: rgba(255,248,239,.055);
    backdrop-filter: blur(12px);
    font-size: 9px;
    letter-spacing: .14em;
  }
  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .brand-statement,
  .curation,
  .film,
  .showrooms {
    grid-template-columns: 1fr;
  }
  .chapters {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .chapters-intro {
    padding: 86px 22px 58px;
  }
  .chapters-intro p:not(.eyebrow) {
    margin-left: 0;
  }
  .chapter-stage {
    grid-column: 1;
    grid-row: 2;
    display: none;
  }
  .chapter-stage::after {
    background:
      linear-gradient(180deg, rgba(7,6,4,.64), rgba(7,6,4,.06) 30%, rgba(7,6,4,.92)),
      linear-gradient(90deg, rgba(7,6,4,.68), rgba(7,6,4,.12) 56%, rgba(7,6,4,.4));
  }
  .chapter-frame { display: none; }
  .chapter-list {
    grid-column: 1;
    grid-row: auto;
    gap: 0;
    min-height: auto;
    padding: 0;
  }
  .chapter {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    align-content: end;
    padding: 0 22px clamp(82px, 15svh, 150px);
    border-left: 0;
    background-position: center;
    background-size: cover;
    text-shadow: 0 14px 36px rgba(0,0,0,.42);
    opacity: .72;
  }
  .chapter::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7,6,4,.44), rgba(7,6,4,.08) 34%, rgba(7,6,4,.92)),
      linear-gradient(90deg, rgba(7,6,4,.68), rgba(7,6,4,.18) 60%, rgba(7,6,4,.38));
  }
  .chapter:nth-child(1) { background-image: url("assets/optimized/showroom-estar.jpg"); }
  .chapter:nth-child(2) { background-image: url("assets/optimized/sala-jantar-lustre.jpg"); }
  .chapter:nth-child(3) { background-image: url("assets/optimized/ambiente-varanda-gourmet.jpg"); }
  .chapter:nth-child(4) { background-image: url("assets/optimized/mesa-madeira-verde.jpg"); }
  .chapter.is-active { opacity: 1; }
  .chapter h2,
  .chapter p {
    max-width: 620px;
  }
  .curation-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showrooms-media { min-height: 520px; }
}

@media (max-width: 620px) {
  :root { --header: 112px; }
  html { scroll-padding-top: 128px; }
  main > section { scroll-margin-top: 128px; }
  .site-header {
    grid-template-columns: 92px 1fr;
    grid-template-rows: 62px 36px;
    padding: 0 14px 10px;
  }
  .brand img { width: 84px; }
  .site-header nav { gap: 6px; }
  .site-header nav a {
    padding: 8px 10px;
    font-size: 0;
    letter-spacing: 0;
  }
  .site-header nav a::after {
    content: attr(data-short);
    font-size: 8.5px;
    font-weight: 900;
    letter-spacing: .12em;
  }
  .header-cta { display: none; }
  .site-header nav .mobile-wa { display: inline-flex; }
  .hero {
    min-height: 800px;
    padding: 142px 20px 30px;
  }
  .hero-media img {
    object-position: center top;
  }
  .hero h1 {
    max-width: 350px;
    font-size: clamp(48px, 13vw, 64px);
    line-height: .88;
    letter-spacing: -.032em;
  }
  .hero-lead {
    max-width: 340px;
    font-size: 14.5px;
    line-height: 1.7;
  }
  .button {
    width: 100%;
    min-height: 50px;
    font-size: 9px;
    letter-spacing: .13em;
  }
  .hero-rail {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .hero-rail span {
    min-height: 52px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,248,239,.12);
    font-size: 10px;
  }
  .hero-rail span:last-child {
    border-bottom: 0;
  }
  .brand-statement,
  .curation,
  .film,
  .showrooms-copy,
  .contact {
    padding: 58px 20px 76px;
  }
  .statement-copy h2,
  .section-copy h2,
  .curation h2,
  .showrooms h2,
  .contact h2 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: .94;
    letter-spacing: -.025em;
  }
  .chapters-intro {
    padding: 68px 20px 44px;
  }
  .chapters-intro h2 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: .92;
    letter-spacing: -.026em;
  }
  .chapters-intro p:not(.eyebrow) {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .chapter-stage {
    height: 100svh;
  }
  .chapter-stage img {
    object-position: center center;
  }
  .chapter-frame strong {
    font-size: clamp(48px, 14vw, 72px);
  }
  .chapter-list {
    min-height: auto;
    padding: 0;
  }
  .chapter {
    min-height: 100svh;
    padding: 0 20px 92px;
  }
  .chapter h2 {
    font-size: clamp(38px, 12vw, 54px);
  }
  .chapter p,
  .curation-copy > p,
  .section-copy p,
  .showrooms-copy > p,
  .contact-card > p,
  .statement-text {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .curation-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .curation-photo,
  .curation-photo.tall {
    aspect-ratio: 4 / 5;
    grid-row: auto;
  }
  .principles article {
    padding: 18px;
  }
  .showrooms-media {
    min-height: 390px;
  }
  .unit-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
