/* ==========================================================================
   AmourBond - AIMOUR review landing page
   Editorial dark-plum theme. Flat fills only, no gradients.
   ========================================================================== */

:root {
  --ink: #140a11;
  --ink-2: #1d1019;
  --ink-3: #271722;
  --paper: #f6efe8;
  --paper-dim: #cbbcc4;
  --muted: #9d8b96;
  --rose: #e2496f;
  --rose-soft: #f0839d;
  --amber: #e5ad4a;
  --sage: #79a98b;
  --line: rgba(246, 239, 232, 0.13);
  --line-strong: rgba(246, 239, 232, 0.3);
  --shell: 1180px;
  --r: 4px;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  /* faint paper grain, pure CSS, no gradient */
  background-image: radial-gradient(rgba(246, 239, 232, 0.022) 1px, transparent 1px);
  background-size: 3px 3px;
}

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

a {
  color: var(--rose-soft);
}

/* ---------- layout ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}

.band {
  padding-block: 64px;
  position: relative;
  border-top: 1px solid var(--line);
}

.band--tint {
  background-color: var(--ink-2);
}

.band--flush {
  border-top: 0;
}

/* ---------- type ---------- */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 {
  font-size: clamp(2.1rem, 7.2vw, 3.9rem);
}

h2 {
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
}

h3 {
  font-size: clamp(1.12rem, 2.6vw, 1.42rem);
}

h4 {
  font-size: 1.02rem;
}

p {
  margin: 0 0 14px;
}

.lede {
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: var(--paper-dim);
  max-width: 62ch;
}

.answer {
  font-size: 1.04rem;
  color: var(--paper);
  font-weight: 500;
  max-width: 66ch;
}

.tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-soft);
  display: block;
  margin-bottom: 12px;
}

.tag--amber {
  color: var(--amber);
}

.note {
  font-family: var(--mono);
  font-size: 0.71rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

strong {
  color: #fff;
  font-weight: 600;
}

/* ---------- header ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(20, 10, 17, 0.94);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}

.topbar__in {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.wordmark b {
  color: var(--rose);
  font-weight: 600;
}

.chip-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.69rem;
  color: var(--paper-dim);
  white-space: nowrap;
}

.chip-rating .stars {
  font-size: 0.78rem;
}

.topbar .btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  padding: 9px 16px;
  font-size: 0.78rem;
}

.topbar.is-past-hero .btn {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ---------- stars ---------- */

.stars {
  color: var(--amber);
  letter-spacing: 0.09em;
  font-family: var(--mono);
  white-space: nowrap;
}

.stars--lg {
  font-size: 1.35rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  background-color: var(--rose);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  border: 0;
  border-radius: var(--r);
  transition: transform 0.18s ease, background-color 0.18s ease;
  text-align: center;
}

.btn:hover {
  background-color: #c93b60;
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--paper);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  background-color: var(--ink-3);
  border-color: var(--rose);
}

.btn--wide {
  width: 100%;
}

.btn__sub {
  font-family: var(--mono);
  font-size: 0.63rem;
  opacity: 0.82;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-block: 22px;
}

/* ---------- hero ---------- */

.hero {
  padding-block: 44px 56px;
  border-top: 0;
}

.hero__grid {
  display: grid;
  gap: 30px;
}

.hero h1 .accent {
  color: var(--rose);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(229, 173, 74, 0.35);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.trustrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 24px;
}

.trustrow div {
  flex: 1 1 33.333%;
  min-width: 112px;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
}

.trustrow div:last-child {
  border-right: 0;
}

.trustrow dt {
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.trustrow dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--paper);
}

/* hero art */
.hero__art {
  position: relative;
}

.frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  overflow: hidden;
  background-color: var(--ink-3);
  display: block;
  text-decoration: none;
}

.frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.frame:hover img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background-color: rgba(20, 10, 17, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--paper);
  backdrop-filter: blur(5px);
  z-index: 2;
}

.badge--tl {
  top: 14px;
  left: 14px;
}

.badge--br {
  bottom: 14px;
  right: 14px;
}

.badge--bl {
  bottom: 14px;
  left: 14px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--sage);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

.dot--amber {
  background-color: var(--amber);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

/* ---------- marquee (top ticker + review strip) ---------- */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--ink-2);
  overflow: hidden;
  padding-block: 11px;
}

.ticker__track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: slide 38s linear infinite;
}

.ticker__item {
  font-family: var(--mono);
  font-size: 0.71rem;
  color: var(--paper-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker__item i {
  color: var(--rose);
  font-style: normal;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.rail {
  overflow: hidden;
  position: relative;
  padding-block: 6px;
}

.rail__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide 56s linear infinite;
}

.rail:hover .rail__track,
.rail:focus-within .rail__track {
  animation-play-state: paused;
}

.rcard {
  width: 310px;
  flex-shrink: 0;
  background-color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rcard__score {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
}

.rcard blockquote {
  margin: 0;
  font-size: 0.89rem;
  color: var(--paper-dim);
  line-height: 1.62;
}

.rcard__who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--ink-3);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--rose-soft);
  flex-shrink: 0;
}

.rcard__name {
  font-weight: 600;
  font-size: 0.84rem;
}

.rcard__meta {
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--muted);
}

/* ---------- generic grids ---------- */

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  background-color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}

.card--edge {
  border-left: 2px solid var(--rose);
}

.card--edge-amber {
  border-left: 2px solid var(--amber);
}

.card--edge-sage {
  border-left: 2px solid var(--sage);
}

.card p:last-child {
  margin-bottom: 0;
}

.card__k {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.card__body {
  color: var(--paper-dim);
  font-size: 0.92rem;
}

/* ---------- alternating feature rows ---------- */

.alt {
  display: grid;
  gap: 26px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.alt:first-of-type {
  border-top: 0;
}

.alt__media {
  position: relative;
}

.alt__media .frame img {
  aspect-ratio: 4 / 5;
}

.speclist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.speclist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.91rem;
  color: var(--paper-dim);
}

.speclist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--rose);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ---------- steps / HowTo ---------- */

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

.steps li {
  counter-increment: s;
  position: relative;
  padding: 20px 20px 20px 62px;
  background-color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.steps li::before {
  content: "0" counter(s);
  position: absolute;
  left: 20px;
  top: 19px;
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--rose);
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.steps p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.9rem;
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery .frame img {
  aspect-ratio: 3 / 4;
}

.gtile__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 12px 10px;
  background-color: rgba(20, 10, 17, 0.82);
  z-index: 2;
}

.gtile__name {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.gtile__role {
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--rose-soft);
  letter-spacing: 0.04em;
}

/* ---------- table ---------- */

.tablewrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
  font-size: 0.88rem;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background-color: var(--ink-2);
}

th,
td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  background-color: var(--ink-3);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
  white-space: nowrap;
}

tbody th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--paper);
  white-space: nowrap;
}

tbody tr:nth-child(even) {
  background-color: rgba(246, 239, 232, 0.022);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.col-hero {
  color: var(--rose-soft) !important;
}

.yes {
  color: var(--sage);
}

.no {
  color: #d2687f;
}

/* ---------- pricing ---------- */

.price {
  display: flex;
  flex-direction: column;
  background-color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}

.price--pick {
  border-color: var(--rose);
}

.price__flag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.price__amt {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.price__amt span {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 400;
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  font-size: 0.88rem;
  color: var(--paper-dim);
}

.price ul li {
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.price ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-family: var(--mono);
}

.price ul li.minus::before {
  content: "-";
  color: var(--muted);
}

.price__for {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.price .btn {
  margin-top: auto;
}

/* ---------- pros / cons ---------- */

.pclist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pclist li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 0.91rem;
  color: var(--paper-dim);
}

.pclist li:last-child {
  border-bottom: 0;
}

.pclist li::before {
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--mono);
  font-size: 0.9rem;
}

.pclist--pro li::before {
  content: "\002B";
  color: var(--sage);
}

.pclist--con li::before {
  content: "\2212";
  color: #d2687f;
}

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat:nth-child(2n) {
  border-right: 0;
}

.stat__n {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 7px;
}

.stat__l {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- fun fact / pro tip ---------- */

.aside {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  padding: 20px 22px;
  background-color: var(--ink-2);
  margin-block: 26px;
}

.aside__k {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aside--tip .aside__k {
  color: var(--sage);
}

.aside p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--paper-dim);
}

/* ---------- verdict scorecard ---------- */

.score {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.score__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background-color: var(--ink-2);
}

.score__row:last-child {
  border-bottom: 0;
}

.score__lbl {
  flex: 1 1 auto;
  font-size: 0.89rem;
  font-weight: 500;
}

.score__bar {
  width: 96px;
  height: 6px;
  background-color: var(--ink-3);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.score__bar i {
  display: block;
  height: 100%;
  background-color: var(--rose);
  width: 0;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.score__v {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--paper-dim);
  width: 38px;
  text-align: right;
  flex-shrink: 0;
}

/* ---------- faq ---------- */

.faq {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.faq details {
  border-bottom: 1px solid var(--line);
  background-color: var(--ink-2);
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  padding: 17px 46px 17px 18px;
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 600;
  position: relative;
  list-style: none;
  line-height: 1.35;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 15px;
  font-family: var(--mono);
  color: var(--rose);
  font-size: 1.1rem;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq__a {
  padding: 0 18px 18px;
  color: var(--paper-dim);
  font-size: 0.92rem;
}

.faq__a p:last-child {
  margin-bottom: 0;
}

/* ---------- final cta ---------- */

.finale {
  text-align: center;
  padding-block: 68px;
}

.finale .btn {
  padding: 17px 34px;
  font-size: 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 22px;
}

.chips span {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

/* ---------- footer ---------- */

.foot {
  border-top: 1px solid var(--line);
  padding-block: 40px 52px;
  background-color: var(--ink-2);
}

.foot__top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-labels {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.legal-labels span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  -webkit-user-select: none;
  user-select: none;
}

.foot__bottom {
  padding-top: 20px;
  display: grid;
  gap: 12px;
}

/* ---------- motion ---------- */

.rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease-out, transform 0.62s ease-out;
  will-change: opacity, transform;
}

.rise.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker__track,
  .rail__track,
  .dot {
    animation: none;
  }
  .frame:hover img,
  .btn:hover {
    transform: none;
  }
  .score__bar i {
    transition: none;
  }
}

/* ---------- responsive ---------- */

@media (min-width: 720px) {
  .band {
    padding-block: 82px;
  }
  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    border-bottom: 0;
  }
  .stat:nth-child(2n) {
    border-right: 1px solid var(--line);
  }
  .stat:last-child {
    border-right: 0;
  }
  .cta-stack {
    flex-direction: row;
    align-items: center;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .foot__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .hero {
    padding-block: 66px 78px;
  }
  .hero__grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 52px;
  }
  .alt {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    padding-block: 46px;
  }
  .alt--flip .alt__media {
    order: 2;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
