/* Lensora — 1600px container, 32px side padding, 12 columns, 24px gutter.
   Desktop follows the Figma frame; tablet and mobile are built on the same grid. */

:root {
  --ink: #252525;
  --ink-2: #68727d;
  --ink-3: #979aa0;
  --black: #181818;
  --bg: #ffffff;
  --bg-2: #f8f9fa;
  --bg-3: #f7f7f9;
  --bg-4: #f1f2f5;
  --bg-banner: #f9f7f8;
  --line: #eaecf0;
  --tab-off: #dfe2e8;

  --container: 1600px;
  --side: 32px;
  --gutter: 24px;
  --block-pad: 160px;
  --section-pad: 128px;

  --f-head: "Oswald", "Arial Narrow", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.16, .84, .44, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }

.icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon { width: 24px; height: 24px; flex: none; color: currentColor; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side);
}

.header,
.hero,
.section,
.banner { padding-inline: clamp(16px, 8.33vw, var(--block-pad)); }

/* ---------------- header ---------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg-3);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-block: var(--gutter);
}

.header__nav { display: flex; flex: 1 0 0; min-width: 0; align-items: center; }
.header__nav--end { justify-content: flex-end; }

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.menu-item:hover::after,
.menu-item:focus-visible::after { transform: scaleX(1); }

.menu-item--icon .icon { transition: transform .35s var(--ease); }
.menu-item--icon:hover .icon { transform: translateY(-2px); }

.header__logo {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}

.mobile-nav__inner { display: flex; flex-direction: column; padding-block: 8px 24px; }

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-head);
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.mobile-nav__sep { height: 16px; }

/* ---------------- hero ---------------- */

.hero { background: var(--bg-3); }

.hero__inner {
  position: relative;
  padding-top: 0;
  padding-bottom: 64px;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

/* Same crop as the Figma fill: shifted 12.63% left, 123% of the block height. */
.hero__media img {
  position: absolute;
  left: -12.63%;
  top: 0;
  width: 100%;
  height: 123%;
  max-width: none;
  object-fit: fill;
  animation: hero-media 1.2s var(--ease) both;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  min-height: 736px;
  align-items: stretch;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.quicklinks { width: 229px; max-width: 100%; }

.quicklink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 56px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: padding-left .35s var(--ease), background-color .35s var(--ease);
}

.quicklink .icon { transition: transform .35s var(--ease); }
.quicklink:hover { padding-left: 24px; background: rgba(255, 255, 255, .55); }
.quicklink:hover .icon { transform: translateX(4px); }

.facts { display: flex; flex-direction: column; gap: 24px; margin: 0; }

.fact dt {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.fact dd {
  margin: 4px 0 0;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 64px;
}

.hero__title {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 300;
  font-size: clamp(40px, 6.2vw, 100px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.hero__title .line { display: block; animation: rise-in .9s var(--ease) both; }
.hero__title .line:nth-child(1) { animation-delay: .05s; }
.hero__title .line:nth-child(2) { animation-delay: .13s; }
.line--accent { font-weight: 600; }

.hero__lead {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  animation: rise-in .9s var(--ease) .3s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 64px;
  animation: rise-in .9s var(--ease) .4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding-inline: 24px;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; }

.btn--ghost { border: 1px solid var(--ink); color: #18181b; background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* ---------------- sections ---------------- */

.section { padding-block: var(--section-pad); }

.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.section__label {
  grid-column: span 4;
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.split__main {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section__head { display: flex; flex-direction: column; gap: 4px; }

.section__title {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.section__sub {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--ink);
}

.section__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  border-top: 1px solid var(--line);
  padding-top: 40px;
  padding-bottom: var(--gutter);
}

.stat__value {
  display: block;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  display: block;
  margin-top: 4px;
  font-family: var(--f-body);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--ink);
}

/* face tiles */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.tile { display: flex; flex-direction: column; text-decoration: none; color: inherit; }

.tile__media {
  display: block;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 236 / 240;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft);
}

.tile:hover .tile__media img { transform: scale(1.04); }

.tile__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  transition: border-color .6s var(--ease-soft);
}

.tile:hover .tile__row { border-color: var(--ink); }

.tile__title {
  display: block;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.tile__meta { display: block; font-size: 12px; line-height: 1.5; color: var(--ink-2); }

.tile__arrow { transition: transform .6s var(--ease-soft); }
.tile:hover .tile__arrow { transform: translate(4px, -4px); }

/* ---------------- products ---------------- */

.products { margin-top: 64px; }

.tabs { display: flex; justify-content: flex-end; border-bottom: 1px solid var(--line); }

.tab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 16px 24px;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--tab-off);
  cursor: pointer;
  transition: color .45s var(--ease-soft), border-color .45s var(--ease-soft);
}

.tab:hover { color: var(--ink-2); }
.tab.is-active { color: var(--ink); border-bottom-color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: var(--gutter);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 0 rgba(16, 24, 40, 0);
  transition: box-shadow .85s var(--ease-soft), transform .85s var(--ease-soft);
  animation: rise-in .7s var(--ease-soft) both;
  animation-delay: var(--d, 0ms);
}

.card:hover,
.card:focus-within { transform: translateY(-4px); box-shadow: 0 18px 44px -12px rgba(16, 24, 40, .18); }

.card__media {
  position: relative;
  background: #fff;
  border-radius: 1px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* Photos are already cropped — shown as they are, no zoom on hover. */
.card__media img { width: 100%; height: 100%; object-fit: cover; }

.card__actions {
  position: absolute;
  right: 8px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translate(10px, -50%);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.card:hover .card__actions,
.card:focus-within .card__actions { opacity: 1; transform: translate(0, -50%); }

.card__action {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 1px;
  background: var(--bg-2);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.card__action:hover { background: var(--ink); color: #fff; }

.card__info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
}

.card__text { flex: 1 0 0; min-width: 0; }

.card__category {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

.card__name {
  display: block;
  margin-top: 4px;
  font-family: var(--f-head);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}

.price--old {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  text-decoration: line-through;
}

.price--new {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------------- banners ---------------- */

.banner {
  position: relative;
  background: var(--bg-banner);
  isolation: isolate;
}

.banner__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.banner__media img { height: 100%; object-fit: cover; }

.banner--edit .banner__media img { position: absolute; left: 0; top: 0; width: 74.03%; }
.banner--arrives .banner__media img { position: absolute; left: -12.87%; top: 0; width: 83.89%; }

.banner__inner { padding-bottom: 64px; }

.banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}

.banner--edit .banner__grid { min-height: 736px; }
.banner--arrives .banner__grid { min-height: 836px; }

.banner__aside { display: flex; flex-direction: column; justify-content: center; }

.banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 64px;
}

.chip {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 8px;
  padding: 8px;
  border-radius: 1px;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--ink);
}

.chip--sm { margin-bottom: 8px; }

.banner__title {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 300;
  font-size: clamp(38px, 6.2vw, 100px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.banner__title .line { display: block; }
.banner__title--sm { font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -0.02em; }
.banner__title--sm .line--accent { font-weight: 700; }

.banner__lead {
  margin: 16px 0 0;
  max-width: 700px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--ink);
}

.banner__actions { margin-top: 64px; }

.points {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.point--indent { padding-left: 64px; }

.point__title {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.point__text {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--ink);
}

/* ---------------- animation ---------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in { opacity: 1; transform: none; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-media {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: none; }
}

/* ---------------- laptop ---------------- */

@media (max-width: 1400px) {
  .menu-item { padding: 16px 14px; font-size: 16px; }
  .menu-item::after { left: 14px; right: 14px; }
  .header__inner { gap: 24px; }
  .hero__content { padding-left: 40px; }
  .banner__content { padding-left: 40px; }
}

@media (max-width: 1200px) {
  :root { --section-pad: 96px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .banner--edit .banner__grid,
  .banner--arrives .banner__grid { min-height: 640px; }
}

/* ---------------- tablet ---------------- */

@media (max-width: 1023px) {
  :root { --side: 24px; --section-pad: 80px; }

  /* header collapses into a burger */
  .burger { display: inline-flex; }
  .header__inner { justify-content: space-between; gap: 16px; }
  .header__nav { display: none; }
  .header__nav--end {
    display: flex;
    flex: 0 0 auto;
  }
  .header__nav--end .menu-item { padding: 10px; }
  .header__nav--end .menu-item span { display: none; }
  .header__nav--end .menu-item:not(:last-child) { display: none; }
  .header__logo { flex: 1 0 auto; text-align: center; }

  /* hero stacks: words, picture, then the small print */
  .hero__inner { padding-bottom: 40px; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 32px; }
  .hero__media { position: static; order: 2; height: 420px; margin-inline: calc(var(--side) * -1); }
  .hero__media img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
  }
  .hero__content { order: 1; padding-left: 0; padding-top: 48px; }
  .hero__title { white-space: normal; }
  .hero__actions { margin-top: 32px; }
  .hero__aside { order: 3; flex-direction: column; gap: 32px; align-items: stretch; }
  .quicklinks { width: 100%; }
  .facts { flex-direction: row; flex-wrap: wrap; gap: 32px 48px; }

  /* section head above content */
  .section__label { grid-column: span 12; }
  .split__main { grid-column: span 12; gap: 32px; }

  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .products { margin-top: 40px; }

  /* banners stack: picture first, words under it */
  .banner__media { position: static; height: 380px; margin-inline: calc(clamp(16px, 8.33vw, var(--block-pad)) * -1); }
  .banner__media img { position: static !important; width: 100% !important; left: auto !important; height: 100%; object-fit: cover; object-position: 50% 30%; }
  .banner__inner { padding-block: 40px 64px; }
  .banner__grid { grid-template-columns: 1fr; min-height: 0 !important; gap: 32px; }
  .banner__aside { order: 2; }
  .banner--arrives .banner__aside { display: none; }
  .banner__content { order: 1; padding-left: 0; }
  .banner__actions { margin-top: 32px; }
  .points { margin-top: 40px; }
  .point--indent { padding-left: 32px; }
  .facts { flex-direction: row; gap: 32px; }
}

/* ---------------- mobile ---------------- */

/* Mobile follows its own Figma frame: 390px wide, 358px container, carousels instead of grids. */
@media (max-width: 767px) {
  :root { --side: 16px; --section-pad: 96px; --gutter: 16px; }

  /* the only side padding on mobile is the container's 16px — 358px of content in a 390px screen */
  .header,
  .hero,
  .section,
  .banner { padding-inline: 0; }

  /* header: burger — logo — search + bag, 80px tall */
  .header__inner { padding-block: 16px; gap: 8px; }
  .header__logo { font-size: 32px; }
  .header__nav--end .menu-item { display: flex; padding: 12px 8px; }
  .header__nav--end .menu-item:nth-child(2),
  .header__nav--end .menu-item:nth-child(3) { display: none; }

  /* hero: words on top, photo bleeding across the lower half */
  .hero__inner { padding-bottom: 0; }
  .hero__grid { display: block; min-height: 800px; position: relative; }
  .hero__media {
    position: absolute;
    inset: 0;
    height: auto;
    margin-inline: 0;
    overflow: hidden;
    z-index: -1;
  }
  .hero__media img {
    position: absolute;
    left: -64.4%;
    top: 42%;
    width: 228.7%;
    height: auto;
    object-fit: fill;
  }
  .hero__content { padding: 49px 0 0; }
  .hero__title { font-size: 48px; letter-spacing: -0.02em; white-space: normal; }
  .hero__lead { font-size: 20px; }
  .hero__actions { flex-direction: row; gap: 16px; margin-top: 64px; }
  .btn { width: auto; }
  .hero__aside { display: none; }

  /* type does not shrink on mobile — the Figma frame keeps the desktop scale */
  .section__title { font-size: 36px; }
  .section__sub { font-size: 20px; }
  .stat__value { font-size: 28px; }
  .stat__label { font-size: 18px; }
  .card__name { font-size: 20px; }
  .price--old { font-size: 18px; }
  .price--new { font-size: 20px; }
  .banner__lead { font-size: 20px; }
  .point__text { font-size: 18px; }

  /* stats: two by two */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 32px; padding-bottom: 0; border-top: 0; }
  .split__main { gap: 32px; }

  /* face tiles and products scroll sideways, bleeding to the screen edges */
  .tiles,
  .grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--side);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--side);
    margin-inline: calc(var(--side) * -1);
  }
  .tiles::-webkit-scrollbar,
  .grid::-webkit-scrollbar { display: none; }

  .tiles { gap: 24px; }
  .tile { flex: 0 0 236px; scroll-snap-align: start; }

  .grid { gap: 16px; margin-top: 16px; }
  .card { flex: 0 0 288px; scroll-snap-align: start; }
  .card__info { padding: 12px 8px; gap: 8px; }
  .tile__row { padding: 12px 8px; }
  .card__actions { opacity: 1; transform: translate(0, -50%); }
  .card__action { width: 40px; height: 40px; }

  .products { margin-top: 40px; }
  .tabs { justify-content: flex-end; }
  .tab { padding: 16px 12px; }

  /* banners keep the photo as a background in the lower half, exactly like the mobile frame */
  .banner__media {
    position: absolute;
    inset: 0;
    order: 0;
    height: auto;
    margin: 0;
    overflow: hidden;
    z-index: -1;
  }
  .banner__media img { height: auto !important; max-width: none !important; object-fit: fill !important; }
  .banner--edit .banner__media img {
    position: absolute !important;
    left: -16.94% !important;
    top: 54.6%;
    width: 168.57% !important;
  }
  .banner--arrives .banner__media img {
    position: absolute !important;
    left: -53.83% !important;
    top: 57.45%;
    width: 235.67% !important;
  }

  .banner__grid { display: block; gap: 0; }
  .banner__aside { display: none; }
  .banner__content { padding-left: 0; }

  .banner--edit .banner__inner { padding-block: 0 64px; }
  .banner--edit .banner__grid { min-height: 736px !important; }
  /* a 600px block of words, centred in the free space, text aligned to its top */
  .banner--edit .banner__grid { display: flex; flex-direction: column; justify-content: center; }
  .banner--edit .banner__content { min-height: 600px; justify-content: flex-start; }
  .banner--arrives .banner__inner { padding-block: 64px; }
  .banner--arrives .banner__grid { min-height: 1087px !important; }

  .chip { font-size: 16px; }
  .banner--arrives .chip { font-size: 14px; }
  .banner__title { font-size: 48px; }
  .banner__title--sm { font-size: 36px; }
  .banner__actions { margin-top: 48px; }
  .points { gap: 23px; margin-top: 64px; }
  .point__title { font-size: 20px; }
  .point--indent { padding-left: 64px; }
}

@media (hover: none) {
  .card__actions { opacity: 1; transform: translate(0, -50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
