:root {
  --ink: #14211f;
  --muted: #5f6d69;
  --paper: #fff9ef;
  --cream: #f5efe2;
  --mist: #eaf7f4;
  --line: #ded8c9;
  --red: #e51d2d;
  --red-dark: #b70f1c;
  --green: #123d31;
  --aqua: #57b4c6;
  --blue: #0b82b5;
  --sun: #f1bd58;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(17, 33, 31, .18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: calc(var(--scroll-progress, 0) * 1%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--sun), var(--aqua));
  transform-origin: left center;
}

.offer-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 249, 239, .88);
  border-bottom: 1px solid rgba(20, 33, 31, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 3px;
  text-decoration: none;
}

.brand span {
  width: max-content;
  padding: 5px 10px 7px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 25px;
  font-weight: 950;
  line-height: .9;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.desktop-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--red);
}

.button,
.header-action,
.sticky-conversion a,
.product-card button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 920;
  cursor: pointer;
  text-decoration: none;
}

.button,
.header-action,
.sticky-conversion a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.button.primary,
.header-action,
.sticky-conversion a {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(229, 29, 45, .2);
}

.button.ghost {
  color: var(--green);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(20, 33, 31, .12);
}

.button.light {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .36);
}

.button:hover,
.header-action:hover,
.product-card button:hover,
.sticky-conversion a:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: clamp(540px, 68vh, 660px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(400px, .9fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 48px) clamp(18px, 5vw, 72px) clamp(28px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(87, 180, 198, .28), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(241, 189, 88, .22), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--mist));
}

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

.eyebrow,
.section-kicker,
.product-card span,
.motion-caption span,
.video-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: .92;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
}

.hero-actions,
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-motion-peek {
  display: none;
}

.comfort-points {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.comfort-points div {
  min-height: 106px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(20, 33, 31, .1);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 33, 31, .08);
}

.comfort-points span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.comfort-points strong {
  color: var(--green);
  font-size: 17px;
  line-height: 1.05;
}

.comfort-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.motion-shell {
  position: relative;
  height: min(46vh, 430px);
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow);
  animation: soft-float 7s ease-in-out infinite;
}

.motion-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.motion-caption {
  position: absolute;
  left: 18px;
  width: min(62%, 430px);
  bottom: 18px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 61, 49, .52), rgba(18, 61, 49, .88));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.motion-caption span {
  color: var(--sun);
}

.motion-caption strong {
  display: block;
  max-width: 520px;
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: .98;
}

.floating-product {
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(30%, 260px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(20, 33, 31, .24);
  animation: product-drift 8s ease-in-out infinite;
}

.section,
.final-cta {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 960px;
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 780px;
}

.section-head p:not(.section-kicker),
.environment-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 19px;
}

.motion-section {
  background: var(--green);
  color: var(--white);
}

.motion-section .section-kicker,
.motion-section .video-card span {
  color: var(--sun);
}

.motion-section .section-head p:not(.section-kicker) {
  color: rgba(255, 255, 255, .72);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: #0b211b;
}

.video-card div {
  padding: 22px;
}

.video-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .96;
}

.video-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.sensation {
  background: var(--paper);
}

.sensation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sensation-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(20, 33, 31, .07);
}

.sensation-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  transition: transform .35s ease;
}

.sensation-grid figure:hover img {
  transform: scale(1.04);
}

.sensation-grid figcaption {
  min-height: 150px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
}

.sensation-grid strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.sensation-grid span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.models {
  background:
    radial-gradient(circle at 15% 12%, rgba(229, 29, 45, .1), transparent 28%),
    linear-gradient(180deg, var(--mist), var(--cream));
}

.product-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(340px, .62fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(20, 33, 31, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-spotlight > img {
  width: 100%;
  min-height: 560px;
  height: 58vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f4eddf;
}

.focus-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper);
  border-radius: var(--radius);
}

.focus-copy > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.focus-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .94;
}

.focus-copy p {
  color: var(--muted);
  font-size: 18px;
}

.focus-copy dl {
  display: grid;
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.focus-copy dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--white);
}

.focus-copy dt {
  color: var(--muted);
  font-weight: 850;
}

.focus-copy dd {
  margin: 0;
  color: var(--red);
  font-weight: 950;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  min-height: 292px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(20, 33, 31, .1);
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--sun), var(--aqua));
}

.product-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(229, 29, 45, .44);
  box-shadow: 0 22px 54px rgba(229, 29, 45, .12);
}

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

.product-card div {
  height: calc(100% - 8px);
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.04;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card strong {
  color: var(--green);
  font-size: 20px;
  line-height: 1;
}

.product-card button {
  margin-top: auto;
  width: 100%;
  color: var(--white);
  background: var(--green);
}

.environments {
  display: grid;
  grid-template-columns: minmax(0, .66fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--paper);
}

.environment-copy {
  max-width: 620px;
}

.environment-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.environment-strip article {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 22px 58px rgba(20, 33, 31, .13);
}

.environment-strip img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: contain;
  background: #f4eddf;
  transition: transform .5s ease;
}

.environment-strip article:hover img {
  transform: scale(1.02);
}

.environment-strip span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(18, 61, 49, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, .45fr);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(241, 189, 88, .26), transparent 28%),
    linear-gradient(135deg, var(--red-dark), var(--red));
}

.final-cta .section-kicker {
  color: var(--sun);
}

.final-cta p {
  color: rgba(255, 255, 255, .84);
}

.final-buttons {
  justify-content: end;
}

.sticky-conversion {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  width: min(calc(100% - 32px), 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  color: var(--white);
  background: rgba(18, 61, 49, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(130%);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(18px);
}

.sticky-conversion.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-conversion strong,
.sticky-conversion span {
  display: block;
}

.sticky-conversion span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 850;
}

.sticky-conversion a {
  min-height: 42px;
  padding: 0 22px;
  background: var(--sun);
  color: var(--green);
  box-shadow: none;
}

.footer {
  padding: 30px clamp(18px, 5vw, 72px) 100px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.campaign-hero {
  position: relative;
  min-height: clamp(570px, 74vh, 730px);
  display: block;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 18, .88) 0%, rgba(7, 22, 18, .68) 43%, rgba(7, 22, 18, .22) 72%, rgba(7, 22, 18, .06) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  padding: clamp(72px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(64px, 7vw, 96px);
}

.hero.campaign-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(7, 22, 18, .5));
}

.campaign-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.campaign-hero .eyebrow,
.campaign-hero .comfort-points span {
  color: var(--sun);
}

.campaign-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 76px);
  text-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.campaign-hero .lead {
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

.campaign-hero .button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .32);
  backdrop-filter: blur(12px);
}

.campaign-hero .comfort-points div {
  background: rgba(18, 61, 49, .44);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.campaign-hero .comfort-points strong {
  color: var(--white);
}

.campaign-hero .comfort-points p {
  color: rgba(255, 255, 255, .78);
}

.campaign-hero .hero-visual,
.campaign-hero .mobile-motion-peek {
  display: none;
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0) rotate(.2deg);
  }
  50% {
    transform: translateY(-12px) rotate(-.2deg);
  }
}

@keyframes product-drift {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1180px) {
  .hero,
  .product-spotlight,
  .environments,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero.campaign-hero {
    min-height: clamp(560px, 72vh, 680px);
  }

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

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

  .final-buttons {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .offer-bar {
    flex-wrap: wrap;
    gap: 8px 14px;
    text-align: center;
    font-size: 11px;
  }

  .site-header {
    min-height: 66px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .brand span {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero.campaign-hero {
    min-height: 570px;
    padding: 46px 18px 58px;
    background:
      linear-gradient(180deg, rgba(7, 22, 18, .86) 0%, rgba(7, 22, 18, .6) 54%, rgba(7, 22, 18, .18) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: var(--hero-mobile-position, var(--hero-position, center));
  }

  .campaign-hero h1 {
    font-size: clamp(36px, 10.2vw, 48px);
  }

  .campaign-hero .lead {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: .95;
  }

  h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .campaign-hero h1 {
    font-size: clamp(36px, 10.2vw, 48px);
  }

  .hero-actions,
  .final-buttons,
  .comfort-points,
  .video-grid,
  .sensation-grid,
  .model-grid,
  .environment-strip {
    grid-template-columns: 1fr;
  }

  .comfort-points {
    display: none;
  }

  .hero-actions,
  .final-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .comfort-points {
    display: grid;
  }

  .campaign-hero .comfort-points {
    display: none;
  }

  .comfort-points div {
    min-height: auto;
    gap: 10px;
  }

  .motion-shell,
  .motion-main {
    height: 340px;
    min-height: 340px;
  }

  .mobile-motion-peek {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    overflow: hidden;
    background: var(--green);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(20, 33, 31, .15);
  }

  .mobile-motion-peek img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .mobile-motion-peek span {
    padding: 0 14px 14px;
    color: var(--white);
    font-weight: 950;
  }

  .motion-caption {
    left: 10px;
    width: auto;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .product-spotlight > img,
  .environment-strip article,
  .environment-strip img {
    min-height: 390px;
    height: 390px;
  }

  .focus-copy {
    padding: 22px;
  }

  .focus-copy dl div {
    display: grid;
    gap: 4px;
  }

  .sticky-conversion {
    align-items: stretch;
  }

  .sticky-conversion a {
    min-width: 116px;
  }
}
