:root {
  --bg: #050505;
  --panel: #101111;
  --panel-2: #171818;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f8f7f2;
  --muted: #cfc9bd;
  --soft: #948b7e;
  --accent: #f4a000;
  --accent-2: #ffbd26;
  --accent-dark: #8b4a00;
  --magenta: #d9367f;
  --cyan: #22a7f2;
  --green: #7bb64a;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(244, 160, 0, 0.12), transparent 31rem),
    linear-gradient(180deg, #020202 0%, #111213 45%, #050505 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  min-height: 4.6rem;
  padding: 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand sup {
  margin-left: 0.12rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.45rem;
  font-weight: 700;
}

.brand-drop {
  position: relative;
  display: inline-block;
  width: 1.12em;
  color: transparent;
}

.brand-drop::before {
  content: "";
  position: absolute;
  left: 0.12em;
  top: -0.15em;
  width: 0.65em;
  height: 0.88em;
  border: 0.16em solid #fff;
  border-radius: 50% 50% 55% 55%;
  transform: rotate(45deg);
}

.brand-drop::after {
  content: "";
  position: absolute;
  left: 0.46em;
  top: 0.24em;
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  background: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 1.8rem 0 1.55rem;
  color: #f8f8f5;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.18rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--accent);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #fff;
}

.icon-button svg,
.socials svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-button,
.button,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  border-radius: 999px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.shop-button {
  padding: 0 1.65rem;
  background: var(--accent);
  color: #050505;
}

.shop-button:hover,
.button-primary:hover,
.email-field button:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.28rem auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 0.75fr) minmax(30rem, 1.25fr);
  min-height: 39rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 42%, rgba(244, 160, 0, 0.22), transparent 30rem),
    linear-gradient(90deg, #010101 0%, #060606 42%, #100904 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 37%, rgba(0, 0, 0, 0.04) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 26%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(32rem, 100%);
  padding: 4.8rem 0 4.2rem 5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.why h2,
.nature h2,
.journey h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.hero h1 span,
.nature h2 span {
  display: block;
  color: var(--accent);
}

.hero-lede {
  width: min(22rem, 100%);
  margin: 1.4rem 0 1.8rem;
  color: #ece7df;
  font-size: 1.08rem;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  padding: 0 1.45rem;
}

.button-primary {
  background: var(--accent);
  color: #060606;
}

.button-ghost,
.outline-link {
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
}

.button-ghost:hover,
.outline-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(4.3rem, 1fr));
  gap: 1rem;
  width: min(32rem, 100%);
  margin: 2.65rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: #fff;
  text-align: center;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-badges svg {
  width: 2.1rem;
  height: 2.1rem;
  padding: 0.38rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 39rem;
  object-fit: cover;
  object-position: center center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.slider-prev {
  left: 0.8rem;
}

.slider-next {
  right: 1.4rem;
}

.collection {
  padding: 2rem 3.6rem 1.25rem;
  background:
    radial-gradient(circle at 32% 30%, rgba(214, 54, 127, 0.08), transparent 25rem),
    linear-gradient(180deg, #141515 0%, #0d0e0e 100%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto 1.1rem;
  max-width: 75rem;
}

.section-heading h2 {
  position: relative;
  font-size: 1.85rem;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.65rem;
  width: 3.1rem;
  height: 3px;
  background: var(--accent);
}

.outline-link {
  min-height: 2.45rem;
  padding: 0 2.35rem;
  font-size: 0.78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 75rem;
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(244, 160, 0, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 160, 0, 0.08), rgba(244, 160, 0, 0.02)),
    #0a0a0a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:nth-child(2),
.product-card:nth-child(4) {
  border-color: rgba(217, 54, 127, 0.28);
  background:
    linear-gradient(180deg, rgba(217, 54, 127, 0.12), rgba(217, 54, 127, 0.02)),
    #0a0a0a;
}

.product-card:nth-child(3) {
  border-color: rgba(34, 167, 242, 0.26);
  background:
    linear-gradient(180deg, rgba(34, 167, 242, 0.12), rgba(34, 167, 242, 0.02)),
    #0a0a0a;
}

.product-card:hover,
.product-card.active {
  transform: translateY(-4px);
  border-color: rgba(244, 160, 0, 0.58);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: 0.45rem;
  min-height: 7.1rem;
  padding: 0.9rem 1rem 1rem;
  text-align: center;
}

.product-info h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.product-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  color: var(--accent);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why {
  max-width: 75rem;
  margin: 1.25rem auto 1.9rem;
  padding: 1.25rem 1.45rem 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 20rem),
    rgba(15, 16, 16, 0.92);
}

.why h2 {
  margin-bottom: 1.1rem;
  text-align: center;
  font-size: 1.72rem;
}

.why h2 span {
  color: var(--accent);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.benefit-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 4.8rem;
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-item:first-child {
  border-left: 0;
}

.benefit-item svg,
.proof-strip svg {
  width: 2.9rem;
  height: 2.9rem;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item p {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.nature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 0.45fr) minmax(26rem, 0.95fr);
  align-items: stretch;
  min-height: 15rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

.nature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.88) 32%, rgba(8, 8, 8, 0.1) 68%, rgba(8, 8, 8, 0.62) 100%);
}

.nature-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 2.6rem 0 2.6rem 5rem;
}

.nature h2 {
  width: min(20rem, 100%);
  font-size: 2rem;
}

.nature p {
  width: min(24rem, 100%);
  margin: 1rem 0 1.25rem;
  color: #f1eee8;
  line-height: 1.45;
}

.nature-image {
  min-height: 15rem;
}

.nature-image img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 2.05rem 4.4rem;
  background: linear-gradient(180deg, #151717, #111212);
}

.proof-strip article {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 5.8rem;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-strip article:first-child {
  border-left: 0;
}

.proof-strip h3 {
  margin: 0 0 0.38rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-strip p {
  margin: 0;
  color: #e7e0d5;
  font-size: 0.84rem;
  line-height: 1.35;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr 1.2fr;
  align-items: center;
  min-height: 11.6rem;
  overflow: hidden;
  padding: 1.6rem 4.3rem 1.5rem;
  background:
    radial-gradient(circle at 24% 30%, rgba(244, 160, 0, 0.18), transparent 18rem),
    linear-gradient(90deg, #150d06 0%, #6f4a26 38%, #18100b 100%);
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.26) 32%, rgba(0, 0, 0, 0.54) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 55%);
}

.journey-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 34%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.journey-copy,
.signup-form {
  position: relative;
  z-index: 1;
}

.journey-copy {
  grid-column: 2;
  padding: 0 2rem 0 0;
}

.journey h2 {
  font-size: 2.05rem;
}

.journey p {
  margin: 0.45rem 0 0;
  color: #f4efe6;
  line-height: 1.4;
}

.signup-form {
  grid-column: 3;
  justify-self: end;
  width: min(31rem, 100%);
}

.signup-form h2 {
  font-size: 1.28rem;
}

.signup-form p {
  font-size: 0.9rem;
}

.email-field {
  display: grid;
  grid-template-columns: 1fr 3.45rem;
  height: 3rem;
  margin: 1rem 0 0;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.email-field input {
  min-width: 0;
  border: 0;
  padding: 0 1.35rem;
  color: #111;
  outline: none;
}

.email-field button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--accent);
  color: #fff;
}

.email-field svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-state {
  min-height: 1.1rem;
  color: var(--accent-2);
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0.45rem 0 0;
  padding: 0;
  color: #eee5d8;
  font-size: 0.78rem;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 1.1rem;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 5.1rem;
  padding: 1.1rem 2.6rem;
  background: #040404;
}

.footer-brand {
  font-size: 1.45rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  color: #d8d4ce;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--accent);
}

.socials {
  justify-self: end;
  display: flex;
  gap: 1.2rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 1.6rem;
  }

  .main-nav {
    gap: 1.2rem;
  }

  .hero-copy {
    padding-left: 3rem;
  }

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

  .collection {
    padding-inline: 2rem;
  }

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

  .benefit-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
  }

  .benefit-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
  }

  .benefit-item:nth-child(-n + 3) {
    border-top: 0;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.8rem 2rem;
  }

  .proof-strip article:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 4.4rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 1rem;
    right: 1rem;
    display: none;
    background: rgba(7, 7, 7, 0.98);
  }

  .main-nav {
    top: 5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .main-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    top: 23.5rem;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.88) 56%, #050505 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent);
  }

  .hero-visual {
    order: 1;
    min-height: 25rem;
  }

  .hero-visual img {
    min-height: 25rem;
  }

  .hero-copy {
    order: 2;
    padding: 1.2rem 1.35rem 2.4rem;
  }

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

  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .why {
    margin-inline: 1rem;
    border-radius: var(--radius);
  }

  .benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .nature::after {
    background: linear-gradient(0deg, #080808 0%, rgba(8, 8, 8, 0.84) 42%, rgba(8, 8, 8, 0.22) 100%);
  }

  .nature-copy {
    padding: 2rem 1.35rem;
  }

  .nature-image {
    order: -1;
    min-height: 12rem;
  }

  .nature-image img {
    min-height: 12rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .proof-strip article,
  .proof-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1.25rem 1.35rem;
  }

  .proof-strip article:first-child {
    border-top: 0;
  }

  .journey {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    min-height: auto;
    padding: 2rem 1.35rem;
  }

  .journey-image {
    width: 100%;
    opacity: 0.32;
  }

  .journey-copy,
  .signup-form {
    grid-column: auto;
    justify-self: stretch;
    padding: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .socials {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 1rem;
  }

  .brand {
    font-size: 1.5rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 21rem;
  }

  .slider-arrow {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.55rem;
  }

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

  .hero-lede {
    font-size: 1rem;
  }

  .collection {
    padding-inline: 1rem;
  }

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

  .product-card img {
    aspect-ratio: 1.2 / 1;
    object-position: center 32%;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .benefit-item:nth-child(-n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefit-item:first-child {
    border-top: 0;
  }

  .service-points {
    gap: 0.7rem;
  }

  .site-footer nav {
    gap: 1rem;
  }
}
