@font-face {
  font-family: Cairo;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/cairo-ar.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFC;
}

@font-face {
  font-family: Cairo;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/cairo-lat.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Palette sampled from the Ration Home company profile */
  --forest-950: #06170f;
  --forest-900: #0b2015;
  --forest-800: #112c21;
  --forest-700: #1c4630;
  --pine: #1f583f;
  --olive: #4a752e;
  --lime: #7fcb43;
  --lime-bright: #8fd94e;
  --lime-deep: #5da32e;
  --ink: #eaf6e2;
  --ink-dark: #12301d;
  --muted: rgb(234 246 226 / 70%);
  --line: rgb(143 214 84 / 22%);
  --card: rgb(255 255 255 / 5%);
  --white: #ffffff;
  --max: 74rem;
  --radius: 1.15rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #071811;
}

section[id],
#download {
  scroll-margin-top: 4.6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(1100px 500px at 85% -6%, rgb(127 203 67 / 14%), transparent 60%),
    linear-gradient(180deg, #071811 0%, #0f2d1e 34%, #1c4527 70%, #416d2e 100%);
  background-color: var(--forest-900);
  font-family: Cairo, "Segoe UI", Tahoma, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

/* Suede texture from the company profile, fixed behind all content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../img/profile/texture.webp") center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

/* Product photos keep their original plates — shown in cards */

/* Cinematic shots: same green grade, edges fade into the page */
.photo-film {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 42%, transparent 78%);
  mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 42%, transparent 78%);
}

.photo-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #163d28;
  mix-blend-mode: color;
  opacity: 0.55;
  pointer-events: none;
}

.photo-film img {
  width: 100%;
  display: block;
  filter: saturate(0.72) contrast(1.08) brightness(0.78);
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(6 23 15 / 90%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--lime);
  box-shadow: 0 8px 24px rgb(0 0 0 / 25%);
  padding-top: env(safe-area-inset-top);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 3.6rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
}

.nav-links {
  display: none;
  gap: 1.15rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: rgb(234 246 226 / 85%);
}

.nav-links a:hover {
  color: var(--lime-bright);
}

.bar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 6%);
}

.lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.lang a[aria-current="page"] {
  background: var(--lime);
  color: var(--ink-dark);
}

.skip {
  position: absolute;
  inset-inline-start: 0.75rem;
  top: -4rem;
  z-index: 40;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  background: var(--lime);
  color: var(--ink-dark);
  font-weight: 800;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.about-band,
.faq-band {
  padding: 2.2rem 0;
}

.about-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  border: 0;
  box-shadow: none;
}

.uae-band {
  padding: 5.2rem 0;
  background:
    linear-gradient(180deg, rgb(7 24 15 / 88%) 0%, rgb(7 24 15 / 42%) 38%, rgb(7 24 15 / 42%) 62%, rgb(7 24 15 / 90%) 100%),
    url("../img/profile/uae.webp") center 38% / cover no-repeat;
  text-align: center;
}

.uae-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: var(--lime-bright);
  text-shadow: 0 3px 18px rgb(0 0 0 / 55%);
}

.uae-inner p {
  margin: 0 auto;
  max-width: 46rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.08rem;
  text-shadow: 0 2px 12px rgb(0 0 0 / 55%);
}

.about p {
  margin: 0 0 0.85rem;
  max-width: 46rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 1.08rem;
}

.about h2,
.faq-band h2 {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
}

.faq-band {
  background: rgb(6 23 15 / 35%);
}

.faq details {
  margin: 0 0 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--white);
}

.faq details p {
  margin: 0.55rem 0 0.15rem;
  color: var(--muted);
  font-weight: 600;
}

.foot-rich {
  align-items: flex-start;
  gap: 1.2rem 2rem;
}

.foot-rich address {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
}

.legal-name {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page {
  padding: 2.4rem 0 3.2rem;
  max-width: 42rem;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--white);
}

.legal-page h2 {
  margin: 1.6rem 0 0.4rem;
  font-size: 1.2rem;
  color: var(--lime-bright);
}

.legal-page h3 {
  margin: 1.2rem 0 0.3rem;
  color: var(--white);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-weight: 600;
}

.legal-page a {
  color: var(--lime-bright);
}

.legal-page blockquote {
  margin: 0 0 1rem;
  padding: 0.7rem 1rem;
  border-inline-start: 4px solid var(--lime);
  border-radius: 0.5rem;
  background: var(--card);
}

.legal-page code {
  font-size: 0.9em;
  color: var(--lime-bright);
}

.catalog-page {
  max-width: 54rem;
}

.catalog-page .lede {
  color: var(--ink);
}

.sku-list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}

.sku-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.sku-list .price {
  font-weight: 800;
  color: var(--lime-bright);
  white-space: nowrap;
}

.sku-list .bands {
  flex: 1 1 100%;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.err-page {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.err-page a {
  color: var(--lime-bright);
  font-weight: 800;
}

.bar-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.35rem 0 2.4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(7 24 15 / 48%) 0%, rgb(7 24 15 / 22%) 42%, rgb(7 24 15 / 90%) 100%),
    url("../img/profile/uae.webp") center 40% / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 68%, transparent);
  mask-image: linear-gradient(to bottom, #000 68%, transparent);
}

.hero-grid {
  display: grid;
  gap: 1.15rem;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.logo-disc {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 1rem;
  padding: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow:
    0 0 0 5px rgb(127 203 67 / 45%),
    0 18px 40px rgb(0 0 0 / 35%);
}

.logo-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--lime-bright);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 auto 0.7rem;
  max-width: 14ch;
  font-size: clamp(2rem, 6.2vw, 3.05rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  text-shadow: 0 2px 24px rgb(7 24 15 / 80%);
}

.lede {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 600;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.mosaic img {
  width: 100%;
  height: 8.2rem;
  object-fit: cover;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.78) contrast(1.08) brightness(0.8);
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 28%, transparent 72%);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 28%, transparent 72%);
}

.mosaic-big {
  height: 8.2rem;
}

.stores {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin-inline: auto;
}

.store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(0 0 0 / 30%);
}

.store svg {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
}

.store strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.store-apple {
  background: var(--forest-950);
  color: var(--white);
  border: 1px solid var(--line);
}

.store-play {
  background: var(--lime);
  color: var(--ink-dark);
}

body.is-ios .store-apple,
body.is-android .store-play {
  outline: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--lime-deep), 0 10px 24px rgb(0 0 0 / 35%);
}

.facts-band {
  padding: 0.4rem 0 2.6rem;
}

.facts {
  display: grid;
  gap: 0.9rem;
}

.facts article {
  padding: 1.2rem 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  border-block-start: 5px solid var(--lime);
  box-shadow: 0 10px 28px rgb(0 0 0 / 18%);
}

.facts h2 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.facts p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.livestock,
.cats-band,
.how-band,
.cuts-band,
.menu-band {
  padding: 2.2rem 0;
}

.cats-band,
.menu-band {
  background: rgb(6 23 15 / 28%);
}

.livestock h2,
.cats-band h2,
.how-band h2,
.menu-band h2,
.cuts-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
}

.sec-lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.animal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.animal-grid figure {
  margin: 0;
  padding: 0.35rem 0.35rem 0.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 0;
  box-shadow: 0 10px 28px rgb(0 0 0 / 28%);
  text-align: center;
}

.animal-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center 70%;
  border-radius: calc(var(--radius) - 0.35rem);
  background: var(--white);
}

.animal-grid figcaption {
  font-weight: 800;
  color: var(--ink-dark);
  padding-top: 0.45rem;
}

.cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cats a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  border: 0;
  box-shadow: 0 10px 28px rgb(0 0 0 / 28%);
}

.cats img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--lime-deep);
}

.cats span {
  padding: 0.7rem 0.8rem 0.9rem;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--ink-dark);
}

.how {
  display: grid;
  gap: 1rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.how li {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 0;
  box-shadow: 0 10px 28px rgb(0 0 0 / 28%);
}

.how img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  object-position: center 40%;
  background: var(--white);
}

.how .num {
  position: absolute;
  top: 0.7rem;
  inset-inline-start: 0.7rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--lime);
  color: var(--ink-dark);
  font-weight: 800;
}

.how h3,
.how p {
  margin: 0;
  padding-inline: 1rem;
}

.how h3 {
  margin-top: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-dark);
}

.how p {
  padding-bottom: 1.05rem;
  color: rgb(18 48 29 / 72%);
  font-weight: 600;
}

.cuts-band {
  background: linear-gradient(135deg, var(--lime-bright) 0%, #6cbb37 55%, var(--lime-deep) 100%);
  color: var(--ink-dark);
  overflow: hidden;
}

.cuts-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.cuts-steak {
  justify-self: center;
  max-height: 20rem;
  width: auto;
  filter: drop-shadow(0 18px 30px rgb(6 23 15 / 45%));
}

.cuts-band h2 {
  color: var(--ink-dark);
}

.cuts-band .sec-lede {
  color: rgb(18 48 29 / 78%);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgb(6 23 15 / 16%);
  color: var(--ink-dark);
  font-weight: 800;
  font-size: 0.95rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.menu-grid a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  border: 0;
  box-shadow: 0 10px 28px rgb(0 0 0 / 28%);
}

.menu-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 55%;
  background: var(--white);
}

.menu-grid span {
  padding: 0.65rem 0.75rem 0.85rem;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink-dark);
}

.cta-band {
  padding: 2.4rem 0 0;
  background:
    linear-gradient(180deg, rgb(7 24 15 / 78%) 0%, rgb(7 24 15 / 88%) 55%, rgb(7 24 15 / 96%) 100%),
    url("../img/profile/uae.webp") center 40% / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.cta-inner {
  display: grid;
  gap: 1.2rem;
  text-align: center;
}

.cta-photo-wrap {
  justify-self: center;
  order: 3;
  width: min(78%, 22rem);
  margin-bottom: -0.5rem;
  -webkit-mask-image: linear-gradient(to top, #000 48%, transparent 100%),
    radial-gradient(ellipse 90% 90% at 50% 70%, #000 40%, transparent 78%);
  mask-image: linear-gradient(to top, #000 48%, transparent 100%),
    radial-gradient(ellipse 90% 90% at 50% 70%, #000 40%, transparent 78%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.cta-photo {
  width: 100%;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.cta-inner .stores {
  margin-bottom: 1.6rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--lime-bright);
}

.cta-band p {
  margin: 0;
  color: rgb(234 246 226 / 78%);
  font-weight: 600;
}

.cta-band .stores {
  margin-inline: auto;
}

.reviews-band {
  padding: 2rem 0 3rem;
}

.reviews-band h2 {
  margin: 0 0 1.15rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
}

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

.review-list li {
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgb(0 0 0 / 18%);
}

.stars {
  color: var(--lime-bright);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.review-list blockquote {
  margin: 0.45rem 0 0.7rem;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--white);
}

.review-list figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  background: var(--forest-950);
  color: rgb(234 246 226 / 82%);
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.foot-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
}

.foot-brand p {
  margin: 0;
  font-weight: 700;
}

.foot nav {
  display: flex;
  gap: 1rem;
}

.foot a {
  color: var(--lime-bright);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 640px) {
  .bar-dl {
    display: none;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .logo-disc {
    display: none;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
    max-width: 16ch;
  }

  .lede {
    font-size: 1rem;
    margin-bottom: 1.15rem;
  }

  .how img {
    height: 8.5rem;
  }

  .menu-grid img,
  .cats img {
    aspect-ratio: 4 / 3;
  }

  .foot nav {
    flex-wrap: wrap;
  }
}

@media (min-width: 720px) {
  .stores {
    flex-direction: row;
    max-width: 36rem;
  }

  .cuts-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .cuts-steak {
    max-height: 24rem;
    margin-block: -3.5rem;
  }

  .about-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 2.2rem;
  }

  .uae-band {
    padding: 6.5rem 0;
  }

  .store {
    flex: 1;
  }

  .facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-list {
    grid-template-columns: 1fr 1fr;
  }

  .review-list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .cats,
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .how {
    grid-template-columns: repeat(3, 1fr);
  }

  .animal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .hero {
    padding: 2rem 0 2.8rem;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.2rem;
    min-height: 28rem;
  }

  .mosaic {
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    min-height: 26rem;
  }

  .mosaic img {
    height: 100%;
    min-height: 12rem;
  }

  .mosaic-big {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 26rem;
    -webkit-mask-image: radial-gradient(ellipse 80% 72% at 58% 48%, #000 32%, transparent 74%);
    mask-image: radial-gradient(ellipse 80% 72% at 58% 48%, #000 32%, transparent 74%);
  }

  .hero-copy {
    text-align: start;
  }

  .hero-copy .logo-disc,
  .hero-copy .stores,
  .hero-copy h1,
  .hero-copy .lede {
    margin-inline: 0;
  }

  .cta-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: start;
  }

  .cta-photo-wrap {
    order: 0;
    align-self: end;
    width: 16rem;
    margin-top: -2.4rem;
    margin-bottom: -0.5rem;
  }

  .cta-photo {
    width: 100%;
  }

  .cta-band .stores {
    margin-inline: 0;
    margin-bottom: 0;
    max-width: 28rem;
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
