:root {
  --bg: #ffffff;
  --bg-alt: #f4f0e9;
  --surface: #ffffff;
  --text: #191816;
  --text-soft: #77716a;
  --accent: #a86f45;
  --accent-soft: #d7b38f;
  --line: #ddd7cf;
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 65px rgba(46, 37, 28, 0.11);
  --font: "Inter", Arial, sans-serif;
  --display: "Outfit", Arial, sans-serif;
}

:root[data-theme="dark"] {
  --bg: #121212;
  --bg-alt: #1b1a19;
  --surface: #181817;
  --text: #f5f2ed;
  --text-soft: #aaa59e;
  --accent: #d6a77c;
  --accent-soft: #b9906b;
  --line: rgba(255, 255, 255, 0.14);
  --header: rgba(18, 18, 18, 0.9);
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 240ms ease, color 240ms ease;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

small {
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 9px 13px;
  background: var(--text);
  color: var(--bg);
  font-size: 16.1px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.demo-bar {
  position: relative;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 clamp(20px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--text);
  color: var(--bg);
}

.demo-bar > a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-bar > a span {
  font-size: 18.7px;
}

.demo-status {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  color: color-mix(in srgb, var(--bg), transparent 28%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.demo-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8b44e;
  box-shadow: 0 0 0 4px rgba(232, 180, 78, 0.16);
  animation: status-pulse 1.3s ease-in-out infinite;
}

.demo-status[data-state="ready"] i {
  background: #45c878;
  box-shadow: 0 0 0 4px rgba(69, 200, 120, 0.16);
  animation: none;
}

.demo-status[data-state="error"] i {
  background: #ef6b63;
  box-shadow: 0 0 0 4px rgba(239, 107, 99, 0.16);
  animation: none;
}

@keyframes status-pulse {
  50% { opacity: 0.42; }
}

.theme-switcher {
  display: flex;
  align-items: center;
  gap: 9px;
}

.theme-switcher > span {
  color: color-mix(in srgb, var(--bg), transparent 35%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 78px;
  height: 26px;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--bg), transparent 72%);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg), transparent 4%);
  color: var(--text-soft);
  cursor: pointer;
  isolation: isolate;
  transition: border-color 180ms ease, background 180ms ease;
}

.theme-toggle::before {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: -1;
  width: 36px;
  height: 20px;
  border-radius: 0;
  background: var(--text);
  content: "";
  transition: background 220ms ease, transform 220ms ease;
}

:root[data-theme="dark"] .theme-toggle::before {
  transform: translateX(38px);
}

.theme-toggle svg {
  z-index: 1;
  width: 13px;
  height: 13px;
  fill: currentColor;
  transition: color 180ms ease, opacity 180ms ease;
}

.theme-toggle-sun {
  color: var(--bg);
}

.theme-toggle-moon {
  color: color-mix(in srgb, var(--text), transparent 42%);
}

:root[data-theme="dark"] .theme-toggle-sun {
  color: color-mix(in srgb, var(--text), transparent 48%);
}

:root[data-theme="dark"] .theme-toggle-moon {
  color: var(--bg);
}

.theme-toggle:hover {
  border-color: color-mix(in srgb, var(--bg), transparent 48%);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

[sc-product]:disabled {
  cursor: wait;
  opacity: 0.56;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.studio-logo {
  width: max-content;
  font-family: var(--display);
  font-size: 29.4px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-logo span {
  color: var(--accent);
}

.studio-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
}

.studio-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 13.3px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.studio-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--text);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.studio-nav a:hover,
.studio-nav a.active {
  color: var(--text);
}

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

.cart-trigger {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 13px 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.cart-trigger span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-trigger svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(510px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
  min-height: calc(100svh - 118px);
  padding: clamp(72px, 8vw, 118px) max(5vw, calc((100vw - 1400px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--accent), transparent 85%), transparent 27%),
    var(--bg-alt);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 20px 0 25px;
  font-family: var(--display);
  font-size: clamp(77.4px, 8vw, 122.9px);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.94;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--text-soft);
  font-size: clamp(20.1px, 1.7vw, 24.1px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.button:hover {
  opacity: 0.84;
  transform: translateY(-2px);
}

.button-dark {
  background: var(--text);
  color: var(--bg);
}

.button-light {
  background: var(--bg);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.text-link span {
  color: var(--accent);
  font-size: 21.3px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-meta span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
}

.hero-meta strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-gallery {
  position: relative;
  min-height: 650px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  background: #cab8a5;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  top: 0;
  right: 0;
  width: 84%;
  height: 570px;
}

.hero-photo-small {
  bottom: 0;
  left: 0;
  width: 39%;
  height: 300px;
  border: 8px solid var(--bg-alt);
}

.hero-card {
  position: absolute;
  right: -18px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 30px;
  min-width: 240px;
  padding: 18px 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 21.3px;
  font-weight: 600;
}

.hero-card i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--text-soft);
  font-size: 14.7px;
  font-style: normal;
}

.ticker {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.ticker-track,
.ticker-group {
  display: flex;
  align-items: center;
  width: max-content;
}

.ticker-track {
  flex: 0 0 auto;
  animation: ticker-loop 26s linear infinite;
  will-change: transform;
}

.ticker-group {
  justify-content: space-around;
  min-width: 100vw;
  gap: clamp(18px, 3vw, 44px);
}

.ticker span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes ticker-loop {
  to { transform: translateX(-50%); }
}

.section {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-header h2,
.story h2 {
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(54.7px, 5.9vw, 82.8px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-header > p {
  color: var(--text-soft);
  font-size: 18.7px;
  line-height: 1.75;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-alt);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-badge-dark {
  background: #1b1b1b;
  color: #fff;
}

.product-badge-muted {
  background: #746f68;
  color: #fff;
}

.product-badge-sale {
  background: #a04f3e;
  color: #fff;
}

.product-body {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: start;
  gap: 10px 18px;
  padding: 18px 2px 0;
}

.product-body h3 {
  font-family: var(--display);
  font-size: 22.7px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.product-body p {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 13.3px;
  line-height: 1.55;
}

.product-price {
  padding-top: 2px;
  font-family: var(--display);
  font-size: 21.3px;
  font-weight: 600;
  white-space: nowrap;
}

.product-price s {
  margin-right: 5px;
  color: var(--text-soft);
  font-size: 14.7px;
  font-weight: 400;
}

.product-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 43px;
  margin-top: 4px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.product-button:hover {
  background: var(--text);
  color: var(--bg);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(65px, 9vw, 140px);
  padding: 105px max(6vw, calc((100vw - 1320px) / 2));
  background: var(--bg-alt);
}

.story-image {
  position: relative;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #d1c1b0;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 23px;
  color: var(--text-soft);
  font-size: 18.7px;
  line-height: 1.8;
}

.story-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 33px;
  border-top: 1px solid var(--line);
}

.story-copy dl div {
  padding: 18px 13px 0 0;
}

.story-copy dt {
  font-family: var(--display);
  font-size: 26.7px;
  font-weight: 600;
}

.story-copy dd {
  max-width: 110px;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.5;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 95px;
}

.benefits article {
  position: relative;
  min-height: 245px;
  padding: 25px 35px;
  border-right: 1px solid var(--line);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits svg {
  width: 38px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.benefits article > span {
  position: absolute;
  top: 27px;
  right: 30px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
}

.benefits h3 {
  margin: 65px 0 9px;
  font-family: var(--display);
  font-size: 25.4px;
  font-weight: 600;
}

.benefits p {
  max-width: 290px;
  color: var(--text-soft);
  font-size: 14.7px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--text-soft);
  font-size: 13.3px;
  text-align: center;
}

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

.site-footer > span {
  justify-self: end;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 1000;
  display: none;
  width: min(370px, calc(100% - 44px));
  padding: 23px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 9px 28px 17px 0;
  color: var(--text-soft);
  font-size: 16.1px;
  line-height: 1.6;
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--text-soft);
  font-size: 26.7px;
  line-height: 1;
}

.cookie-accept {
  min-height: 38px;
  padding: 0 21px;
  border: 0;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 85px 48px 95px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(88.1px, 12vw, 125.5px);
  }

  .hero-gallery {
    width: min(760px, 100%);
    margin: 8px auto 0;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-header > p {
    max-width: 690px;
  }

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

  .story-image {
    width: min(760px, 100%);
  }

  .story-copy {
    max-width: 720px;
  }

}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 118px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 11px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .studio-nav {
    position: fixed;
    top: 118px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 26px 27px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .studio-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .studio-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .section {
    width: calc(100% - 48px);
    padding: 86px 0;
  }

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

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

  .benefits article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 40px;
    text-align: center;
  }

  .site-footer .studio-logo,
  .site-footer > span {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 110px;
  }

  .demo-bar {
    min-height: 42px;
    padding-inline: 14px;
  }

  .demo-bar > a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .demo-status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .theme-switcher > span {
    display: none;
  }

  .theme-toggle {
    width: 74px;
    height: 26px;
  }

  .theme-toggle::before {
    width: 34px;
    height: 20px;
  }

  :root[data-theme="dark"] .theme-toggle::before {
    transform: translateX(36px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 17px;
  }

  .studio-logo {
    font-size: 25.4px;
  }

  .nav-toggle,
  .cart-trigger {
    width: 39px;
    height: 39px;
    min-height: 39px;
  }

  .cart-trigger {
    justify-content: center;
    padding: 0;
  }

  .cart-trigger span {
    display: none;
  }

  .cart-trigger svg {
    width: 18px;
  }

  .studio-nav {
    top: 110px;
    padding-inline: 19px;
  }

  .hero {
    gap: 48px;
    padding: 64px 20px 74px;
  }

  .hero h1 {
    margin-block: 17px 21px;
    font-size: clamp(68.1px, 20.1vw, 93.5px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 18.7px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: stretch;
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-meta div {
    flex-direction: row;
    gap: 10px;
  }

  .hero-gallery {
    min-height: 480px;
  }

  .hero-photo-main {
    width: 91%;
    height: 425px;
  }

  .hero-photo-small {
    width: 42%;
    height: 210px;
    border-width: 6px;
  }

  .hero-card {
    right: 0;
    bottom: 5px;
    min-width: 185px;
    padding: 14px;
  }

  .ticker {
    justify-content: flex-start;
    overflow-x: hidden;
  }

  .section {
    width: calc(100% - 40px);
    padding: 72px 0;
  }

  .section-header h2,
  .story h2 {
    font-size: clamp(50.7px, 14.7vw, 66.8px);
  }

  .section-header {
    margin-bottom: 38px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story {
    gap: 50px;
    padding: 72px 20px;
  }

  .story-copy dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-copy dl div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-bottom: 1px solid var(--line);
  }

  .story-copy dl div:last-child {
    border-bottom: 0;
  }

  .story-copy dd {
    max-width: none;
  }

  .benefits {
    padding-block: 58px;
  }

  .benefits article {
    min-height: auto;
    padding: 28px 19px 36px;
  }

  .benefits h3 {
    margin-top: 48px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }
}

@media (max-width: 360px) {
  .hero-copy,
  .hero-gallery {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(53.5px, 17.5vw, 62.3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-status i {
    animation: none;
  }

  .ticker-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
