:root {
  color-scheme: light;
  --ink: #14171f;
  --muted: #5d6472;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #dfe4dc;
  --coal: #191d24;
  --yellow: #f5c542;
  --cyan: #45b7d1;
  --green: #3a8f69;
  --shadow: 0 24px 70px rgba(16, 20, 28, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 21, 28, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand__text span {
  font-size: 0.78rem;
  color: currentColor;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(245, 197, 66, 0.22);
  outline: none;
}

.header-action {
  background: var(--yellow);
  color: #17130a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-open .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
  color: #fff;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(14, 16, 22, 0.9) 0%, rgba(14, 16, 22, 0.68) 40%, rgba(14, 16, 22, 0.08) 76%),
    linear-gradient(180deg, rgba(14, 16, 22, 0.25), rgba(14, 16, 22, 0.56));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 72px;
}

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

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  background: var(--yellow);
  color: #151208;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.signal-band {
  background: var(--coal);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 10px;
  row-gap: 8px;
  min-height: 178px;
  padding: 28px;
  background: var(--coal);
}

.signal-item span {
  grid-column: 1;
  grid-row: 1;
  color: var(--yellow);
  font-weight: 900;
}

.signal-item strong {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.signal-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: 88px 0;
}

.section--tint {
  background: #eef4ef;
}

.section__intro {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section__intro--left {
  margin-inline: 0;
  text-align: left;
}

.section h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section__intro p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.service-card,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(21, 26, 34, 0.06);
}

.service-card {
  padding: 24px;
}

.service-card h3,
.project-card h3 {
  margin: 22px 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.project-card span,
.reliability__item p,
.process-list p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.service-card__heading {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 12px;
}

.service-card__heading span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.service-card__heading h3 {
  min-width: 0;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.category-select-wrap {
  display: grid;
  width: min(100%, 360px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.project-card {
  overflow: hidden;
}

.project-card.is-hidden {
  display: none;
}

.project-card__visual,
.gallery-stage__visual {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(69, 183, 209, 0.16), rgba(245, 197, 66, 0.14)),
    #dfe4dc;
  color: #3d4552;
  font-weight: 800;
}

.project-card__visual span,
.gallery-stage__visual span {
  padding: 16px;
  text-align: center;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card:nth-child(2) img {
  object-position: 74% 48%;
}

.project-card:nth-child(3) img {
  object-position: 58% 50%;
}

.project-card__body {
  padding: 22px;
}

.project-card__body p {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 10px;
}

.reliability {
  background: #fff;
}

.reliability__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
}

.reliability__list {
  display: grid;
  gap: 18px;
}

.reliability__item {
  padding-left: 24px;
  border-left: 4px solid var(--yellow);
}

.reliability__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.process-list li {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--cyan);
  color: #0d2630;
  font-weight: 900;
}

.process-list strong {
  margin: 0;
}

.site-footer {
  padding: 54px 0 24px;
  background:
    linear-gradient(135deg, rgba(69, 183, 209, 0.12), transparent 34%),
    linear-gradient(215deg, rgba(245, 197, 66, 0.1), transparent 32%),
    #11151b;
  color: #fff;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(260px, 1fr) minmax(220px, 0.75fr);
  align-items: start;
  gap: 42px;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.footer-brand__logo {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
}

.footer-brand__logo {
  background: #fff;
  object-fit: contain;
  padding: 5px;
}

.footer-brand strong,
.footer-services strong,
.footer-contact strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-brand span span {
  display: block;
  max-width: 440px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-services ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.footer-services li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-services li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-contact a {
  color: var(--yellow);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.gallery-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--coal);
  color: #fff;
}

.gallery-hero__media,
.gallery-hero__shade {
  position: absolute;
  inset: 0;
}

.gallery-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero__shade {
  background:
    linear-gradient(90deg, rgba(14, 16, 22, 0.9), rgba(14, 16, 22, 0.38)),
    linear-gradient(180deg, rgba(14, 16, 22, 0.18), rgba(14, 16, 22, 0.76));
}

.gallery-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 56px;
}

.gallery-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.gallery-hero p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.gallery-shell {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.gallery-category label {
  display: grid;
  gap: 8px;
  color: #353b47;
  font-weight: 800;
}

.gallery-category select {
  width: 100%;
  border: 1px solid #cfd7cf;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.gallery-category select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(58, 143, 105, 0.18);
}

.carousel-nav {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.carousel-nav:hover,
.carousel-nav:focus-visible {
  border-color: var(--green);
  outline: 3px solid rgba(58, 143, 105, 0.18);
}

.gallery-stage {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-stage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dfe4dc;
}

.carousel-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(17, 21, 27, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.carousel-nav--prev {
  left: 14px;
}

.carousel-nav--next {
  right: 14px;
}

.gallery-stage figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.gallery-stage span {
  color: var(--muted);
  font-weight: 700;
}

.gallery-stage__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-header--solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 21, 28, 0.12);
  backdrop-filter: blur(16px);
}

.gallery-only-page {
  background: #f3f6f0;
}

.gallery-only-hero {
  padding: 138px 0 54px;
  background:
    linear-gradient(135deg, rgba(69, 183, 209, 0.14), transparent 34%),
    linear-gradient(215deg, rgba(245, 197, 66, 0.16), transparent 32%),
    #eef3ea;
}

.gallery-only-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: end;
  gap: 34px;
}

.gallery-only-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.gallery-only-hero p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-page-size {
  display: grid;
  gap: 8px;
  color: #353b47;
  font-weight: 900;
}

.gallery-page-size select {
  width: 100%;
  border: 1px solid #cfd7cf;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.gallery-page-size select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(58, 143, 105, 0.18);
}

.gallery-category-list {
  display: grid;
  gap: 28px;
  padding: 44px 0 72px;
}

.gallery-category-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 20, 28, 0.08);
  scroll-margin-top: 96px;
}

.gallery-category-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.gallery-category-panel__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.gallery-category-panel__title span {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
}

.gallery-category-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.gallery-category-panel p {
  max-width: 760px;
  margin: -6px 0 0;
  color: var(--muted);
}

.gallery-category-panel__count {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 900;
}

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

.gallery-page-tile {
  min-width: 0;
  margin: 0;
}

.gallery-page-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe4dc;
  object-fit: cover;
}

.gallery-page-tile figcaption {
  display: -webkit-box;
  min-height: 2.5em;
  margin-top: 8px;
  overflow: hidden;
  color: #303744;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-pagination button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.gallery-pagination button:hover,
.gallery-pagination button:focus-visible {
  border-color: var(--green);
  outline: 3px solid rgba(58, 143, 105, 0.18);
}

.gallery-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.gallery-pagination span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-only-footer {
  padding: 26px 0;
  background: #11151b;
  color: #fff;
}

.gallery-only-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gallery-only-footer a {
  color: var(--yellow);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #073919;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  outline: 4px solid rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .signal-grid,
  .service-grid,
  .project-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .work-layout,
  .reliability__grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand__text span {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(14, 16, 22, 0.9), rgba(14, 16, 22, 0.5)),
      linear-gradient(180deg, rgba(14, 16, 22, 0.22), rgba(14, 16, 22, 0.68));
  }

  .hero__content {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .gallery-hero h1 {
    font-size: 2.5rem;
  }

  .signal-grid,
  .service-grid,
  .project-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .signal-item,
  .service-card,
  .process-list li {
    padding: 20px;
  }

  .service-card__heading {
    gap: 8px;
  }

  .service-card__heading h3 {
    font-size: 1rem;
  }

  .category-select-wrap {
    display: grid;
    width: 100%;
  }

  .footer-layout {
    gap: 28px;
  }

  .footer-services ul {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .gallery-stage figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .carousel-nav {
    width: 38px;
    height: 38px;
  }

}

@media (max-width: 980px) {
  .gallery-only-page .site-header {
    grid-template-columns: auto auto;
  }

  .gallery-only-page .site-nav {
    display: none;
  }

  .gallery-only-page .header-action {
    display: inline-flex;
  }

  .gallery-only-hero__content {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gallery-only-page .brand__text span {
    display: none;
  }

  .gallery-only-hero {
    padding: 112px 0 42px;
  }

  .gallery-only-hero h1 {
    font-size: 2.25rem;
  }

  .gallery-category-panel {
    padding: 20px;
  }

  .gallery-category-panel__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .gallery-category-panel__title {
    gap: 9px;
  }

  .gallery-category-panel h2 {
    font-size: 1.1rem;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-pagination {
    justify-content: space-between;
  }

  .gallery-pagination button {
    padding-inline: 12px;
  }

  .gallery-only-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
