:root {
  --black: #090909;
  --red: #e32219;
  --red-bright: #f02b20;
  --yellow: #f6b916;
  --cream: #fff0cf;
  --sand: #f6c443;
  --white: #fffaf0;
  --line: rgba(255, 255, 255, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-geist), Arial, sans-serif;
  overflow-x: hidden;
}
main {
  max-width: 100%;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  width: 100%;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section {
  padding: 92px 0;
}
.kicker,
.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}
h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
h2 {
  margin: 0;
  font-size: clamp(50px, 9vw, 108px);
  line-height: 0.87;
}
h2 em,
h1 em {
  color: var(--red);
  font-style: normal;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 24px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  background: var(--red-bright);
}
.button--ghost {
  background: rgba(8, 8, 8, 0.42);
  border-color: rgba(246, 185, 22, 0.62);
  backdrop-filter: blur(12px);
}
.button--cream {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.button--small {
  min-height: 46px;
  padding-inline: 18px;
}
.text-link {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid;
  padding: 8px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.72));
  border-bottom: 1px solid rgba(246, 185, 22, 0.18);
  transition: 0.25s;
  backdrop-filter: blur(10px);
}
.site-header--scrolled {
  background: rgba(9, 9, 9, 0.96);
  border-color: rgba(246, 185, 22, 0.3);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: auto;
  height: 92px;
  object-fit: contain;
}
.brand--compact img {
  height: 78px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav > a:not(.button) {
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.main-nav > a:not(.button):hover {
  color: var(--yellow);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 185, 22, 0.38);
  background: rgba(0, 0, 0, 0.42);
  padding: 0 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--yellow);
  margin: 7px 0;
  transition: transform 0.2s;
}
.menu-toggle--open span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.menu-toggle--open span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  min-height: 760px;
  height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__media,
.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("/images/brutus-hero.webp") center/cover no-repeat;
  transform: scale(1.02);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.98),
      rgba(7, 7, 7, 0.84) 43%,
      rgba(7, 7, 7, 0.18) 73%
    ),
    linear-gradient(0deg, rgba(8, 8, 8, 0.84), transparent 38%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero__content {
  padding-top: 104px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}
.eyebrow span {
  width: 26px;
  height: 3px;
  background: var(--red);
}
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(68px, 9.6vw, 138px);
  line-height: 0.88;
}
.hero h1 span,
.hero h1 em {
  display: block;
}
.hero h1 em {
  color: var(--yellow);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}
.hero__lead {
  max-width: 540px;
  margin: 28px 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 250, 240, 0.9);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__note {
  margin-top: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.hero__note span {
  color: var(--yellow);
  padding: 0 7px;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 185, 22, 0.48);
  color: var(--yellow);
  border-radius: 50%;
  animation: bob 2s infinite;
}
@keyframes bob {
  50% {
    transform: translateY(5px);
  }
}

.marquee {
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  border-block: 2px solid var(--red);
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 16px 0;
  animation: scroll 26s linear infinite;
}
.marquee span {
  font-family: Impact, sans-serif;
  font-size: 25px;
  letter-spacing: 0.06em;
}
.marquee b {
  color: var(--red);
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.experience {
  background: var(--cream);
  color: var(--black);
}
.experience__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px 60px;
  align-items: end;
}
.experience__copy p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #4c4437;
}
.experience__image {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  background: #18130e;
  overflow: hidden;
}
.experience__image:before {
  content: "CROCÂNCIA BRUTUS";
  position: absolute;
  z-index: 2;
  top: 20px;
  right: -7px;
  padding: 9px 16px;
  background: var(--red);
  color: #fff;
  font:
    18px Impact,
    sans-serif;
  letter-spacing: 0.12em;
  transform: rotate(3deg);
}
.experience__image img {
  height: 100%;
  object-fit: cover;
}
.image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 9px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feature-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.feature-grid article {
  padding: 28px 28px 0 0;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}
.feature-grid article + article {
  padding-left: 28px;
}
.feature-grid article:last-child {
  border: 0;
}
.feature-grid span {
  display: block;
  color: var(--red);
  font:
    24px Impact,
    sans-serif;
}
.feature-grid h3 {
  margin: 16px 0 8px;
  text-transform: uppercase;
  font-size: 17px;
}
.feature-grid p {
  margin: 0;
  color: #5b5143;
  font-size: 13px;
  line-height: 1.6;
}

.products {
  background: #101010;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 315px;
  gap: 14px;
}
.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background-image: url("/images/brutus-spread.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  isolation: isolate;
  transition: 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}
.product-card--1 {
  grid-column: span 7;
  grid-row: span 2;
  background-position: 30% center;
}
.product-card--2 {
  grid-column: span 5;
  background-position: 80% 20%;
}
.product-card--3 {
  grid-column: span 5;
  background-position: 70% 70%;
}
.product-card--4 {
  grid-column: span 6;
  background-image: url("/images/brutus-macro.webp");
}
.product-card--5 {
  grid-column: span 6;
  background-position: 15% 70%;
}
.product-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.06) 78%
  );
}
.product-card__number {
  position: absolute;
  top: 20px;
  left: 22px;
  font:
    20px Impact,
    sans-serif;
  color: var(--cream);
}
.product-card__copy h3 {
  margin: 0;
  font:
    clamp(34px, 5vw, 64px) / 0.9 Impact,
    sans-serif;
  text-transform: uppercase;
}
.product-card__copy p {
  max-width: 420px;
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}
.product-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 14px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-note {
  text-align: right;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.social-proof {
  background: var(--red);
}
.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.proof-title em {
  color: var(--black);
}
.proof-panel {
  background: var(--cream);
  color: var(--black);
  padding: clamp(30px, 5vw, 64px);
  transform: rotate(-1deg);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.22);
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.rating-score {
  font:
    clamp(76px, 10vw, 132px) / 0.78 Impact,
    sans-serif;
  color: var(--red);
  letter-spacing: -0.03em;
}
.rating-star {
  color: var(--red);
  font-size: 30px;
}
.rating-max {
  margin-left: 8px;
  color: #6d604e;
  font-weight: 800;
}
.rating-count {
  margin: 5px 0 0 !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof-panel h3 {
  margin: 28px 0 12px;
  font-size: 26px;
  text-transform: uppercase;
}
.proof-panel > p {
  color: #51483a;
  line-height: 1.7;
}
.google-source {
  display: inline-block;
  margin-top: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.choice {
  background: var(--black);
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.choice-card {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 56px);
  background: center/cover no-repeat;
  isolation: isolate;
}
.choice-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.08));
}
.choice-card--delivery {
  background-image: url("/images/brutus-spread.webp");
}
.choice-card--store {
  background-image:
    linear-gradient(150deg, rgba(229, 43, 26, 0.68), rgba(5, 5, 5, 0.38)),
    url("/images/brutus-hero.webp");
  background-position: 64% center;
}
.choice-card__tag {
  position: absolute;
  top: 26px;
  left: 28px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.choice-card h2 {
  font-size: clamp(46px, 6.4vw, 78px);
}
.choice-card p {
  max-width: 410px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.gallery {
  background: var(--cream);
  color: var(--black);
}
.gallery__heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: 44px;
}
.gallery__heading .kicker {
  grid-column: 1/-1;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 290px 290px;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #201b16;
}
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery figure:hover img {
  transform: scale(1.04);
}
.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 7px 10px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gallery__main {
  grid-row: 1 / span 2;
}
.gallery__quote {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
}
.gallery__quote > span {
  font:
    78px/1 Georgia,
    serif;
  color: var(--yellow);
}
.gallery__quote strong {
  font:
    38px/0.95 Impact,
    sans-serif;
}
.gallery__quote small {
  margin-top: 18px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.location {
  background: #111;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.map-card {
  position: relative;
  min-height: 620px;
  filter: grayscale(1) contrast(1.18);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-card iframe {
  width: 100%;
  height: 620px;
  border: 0;
}
.map-card__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 7px solid var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.location address {
  margin: 30px 0;
  font-style: normal;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}
.contact-list {
  border-top: 1px solid var(--line);
}
.contact-list a,
.contact-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-list strong {
  font-size: 13px;
  text-align: right;
}
.location__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.instagram {
  background: var(--red);
  text-align: center;
}
.instagram__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instagram__icon {
  font-size: 66px;
  line-height: 1;
}
.instagram .kicker {
  color: var(--yellow);
  margin-top: 22px;
}
.instagram h2 {
  font-size: clamp(52px, 8vw, 98px);
}
.instagram h2 em {
  color: var(--black);
}
.instagram .button {
  margin-top: 34px;
}
.final-cta {
  min-height: 720px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.final-cta__media {
  background-image: url("/images/brutus-hero.webp");
  background-position: 62% center;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.4));
}
.final-cta h2 {
  max-width: 900px;
}
.final-cta .button {
  margin-top: 34px;
}

.footer {
  background: #070707;
  border-top: 3px solid var(--red);
  padding: 70px 0 110px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer__top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer .brand img {
  height: 130px;
}
.footer__top p {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer h3 {
  color: var(--yellow);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer__top a:not(.brand) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}
.footer__top a:hover {
  color: #fff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.mobile-order-bar {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    border-top: 1px solid var(--line);
    padding: 18px 20px 28px;
  }
  .main-nav--open {
    display: flex;
  }
  .main-nav > a:not(.button) {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .nav-order {
    margin-top: 18px;
  }
  .menu-toggle {
    display: block;
  }
  .experience__grid,
  .proof-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .experience__image {
    min-height: 500px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid article:nth-child(2) {
    border-right: 0;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px;
  }
  .gallery__main {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .gallery__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery__heading > span {
    text-align: left;
  }
  .map-card,
  .map-card iframe {
    min-height: 480px;
    height: 480px;
  }
}
@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 72px 0;
  }
  .header-inner {
    height: 78px;
  }
  .brand--compact img {
    height: 68px;
  }
  .main-nav {
    top: 78px;
  }
  .hero {
    min-height: 720px;
    height: 100svh;
  }
  .hero__media {
    background-position: 61% center;
  }
  .hero:before {
    background:
      linear-gradient(0deg, rgba(7, 7, 7, 0.99), rgba(7, 7, 7, 0.48) 74%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.8), transparent);
  }
  .hero__content {
    align-self: end;
    padding: 118px 0 82px;
  }
  .hero h1 {
    font-size: clamp(60px, 18vw, 78px);
    line-height: 0.9;
  }
  .hero__lead {
    margin: 20px 0;
    font-size: 17px;
    max-width: 360px;
  }
  .hero__actions .button {
    flex: 1;
    min-width: 150px;
    padding-inline: 13px;
  }
  .hero__scroll {
    display: none;
  }
  .marquee__track {
    padding: 13px 0;
  }
  .marquee span {
    font-size: 20px;
  }
  .experience__grid {
    gap: 38px;
  }
  .experience__image {
    min-height: 420px;
    order: 2;
  }
  .feature-grid {
    order: 3;
    grid-template-columns: 1fr;
  }
  .feature-grid article,
  .feature-grid article + article {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .product-grid {
    display: flex;
    overflow-x: auto;
    margin-inline: -14px;
    padding: 0 14px 10px;
    scroll-snap-type: x mandatory;
  }
  .product-card {
    flex: 0 0 84vw;
    min-height: 500px;
    scroll-snap-align: center;
  }
  .product-note {
    text-align: left;
  }
  .proof-grid {
    gap: 34px;
  }
  .proof-panel {
    transform: none;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .choice-card {
    min-height: 520px;
  }
  .gallery__grid {
    display: flex;
    flex-direction: column;
  }
  .gallery figure {
    height: 360px;
  }
  .gallery__quote {
    min-height: 260px;
  }
  .map-card,
  .map-card iframe {
    min-height: 390px;
    height: 390px;
  }
  .contact-list a,
  .contact-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .contact-list strong {
    text-align: left;
  }
  .final-cta {
    min-height: 650px;
    align-items: flex-end;
    padding-bottom: 84px;
  }
  .final-cta__media {
    background-position: 70% center;
  }
  .final-cta__overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.22));
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .mobile-order-bar {
    position: fixed;
    z-index: 60;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    background: #080808;
    border-top: 1px solid var(--line);
    padding: 8px max(8px, env(safe-area-inset-right))
      calc(8px + env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }
  .mobile-order-bar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .mobile-order-bar a:last-child {
    gap: 10px;
    background: var(--red);
    border-color: var(--red);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
