/* ═══════════════════════════════════════════════════════
   HIMOTHY — Home Page Styles
   Loaded only by index.html.
   Global styles live in style.css.
   ═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
.space-grotesk-normal-400 {
  font-family: "Space Grotesk";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaW1Roman";
  src: url("../fonts/Helvetica-W01-Bold/helvetica-w01-roman.woff2")
    format("woff2");
}

@font-face {
  font-family: "HelveticaW1Bold";
  src: url("../fonts/Helvetica-W01-Bold/Helvetica W01 Bold.woff2")
    format("woff2");
}

/* ═══════════════════════════════════════════════════════
   LAYER 3 — HERO SECTION
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 93vh !important;
  min-height: 560px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* adjust as needed */
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* ─── Hero transparent nav ───────────────────────────── */

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 10;
}

.hero-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 var(--section-px);
}

.hero-nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.hero-nav-logo-link {
  display: flex;
  align-items: center;
}

.hero-nav-logo-img {
  height: 57px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* ─── LOGIN LINK (hero nav) ──────────────────────────── */

.header-login {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 10px;
  height: 42px;
  display: flex;
  align-items: center;
  transition: opacity var(--dur-fast) ease;
}

.header-login:hover {
  opacity: 0.55;
}

.hero-nav :focus-visible {
  outline-color: var(--white);
}

/* ─── Hero background + imagery ─────────────────────── */

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #141414;
  background-image: radial-gradient(
    ellipse at 65% 35%,
    #2e2924 0%,
    #181410 55%,
    #0b0b0b 100%
  );
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.55) 0%,
    rgba(11, 11, 11, 0.1) 50%,
    rgba(11, 11, 11, 0.05) 100%
  );
}

/* ─── Hero content — bottom-left text box ────────────── */

.hero-content {
  position: absolute;
  bottom: 56px;
  left: var(--section-px);
  z-index: 2;
  animation: hero-enter 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-eyebrow {
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.6);
  margin-bottom: 14px;
}

.hero-headline {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-family: "HelveticaW1Roman";
  font-size: clamp(13px, 1.1vw, 19px);
  line-height: 1.65;
  color: rgba(250, 250, 248, 0.82);
  max-width: 480px;
  margin-bottom: 20px;
}

.hero-desc--sub {
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: 1.5px solid var(--white);
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: transparent;
  transition:
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}

.hero-cta:hover {
  background-color: var(--white);
  color: var(--black);
}

/* ─── Scroll hint ────────────────────────────────────── */

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: hint-fade 3s ease 1.5s both;
}

@keyframes hint-fade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  30% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(250, 250, 248, 0.5));
  animation: scroll-drop 1.8s ease infinite 2s;
}

@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0.3;
  }
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
}

/* ═══════════════════════════════════════════════════════
   SPLIT COLLECTION SECTION
   ═══════════════════════════════════════════════════════ */

.split-section {
  padding-top: 7%;
  padding-right: 3.5%;
  padding-left: 3.5%;
  padding-bottom: 7%;
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: 620px;
  background-color: var(--white);
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  background-color: var(--white);
}

.split-heading {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 78px);
  color: var(--black);
  line-height: 78px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.split-sub {
  font-family: "HelveticaW1Roman";
  font-size: clamp(13px, 1vw, 19px);
  font-weight: 400;
  color: var(--black);
  line-height: 22px;
  /* max-width: 360px; */
}

.split-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 52px;
  border: 1.5px solid var(--black);
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background-color: transparent;
  transition:
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}

.split-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ═══════════════════════════════════════════════════════
   KNOW WHO YOU ARE — Full-bleed scroll zoom section
   ═══════════════════════════════════════════════════════ */

.home-zoom-section {
  position: relative;
  height: 110vh;
  min-height: 560px;
  overflow: hidden;
}

.home-zoom-bg {
  position: absolute;
  inset: 0;
  background-color: #0b0b0b;
}

.home-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 480px) {
  .home-zoom-sub {
    max-width: 362px;
  }
  article.product-card.reveal.visible {
    padding: 0px !important;
  }
  #zoomSection2 .home-zoom-img {
    object-position: -52em center;
  }
}

.home-zoom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 11, 0.72) 0%,
    rgba(11, 11, 11, 0.28) 45%,
    rgba(11, 11, 11, 0.05) 100%
  );
}

.home-zoom-content {
  position: absolute;
  bottom: 60px;
  left: var(--section-px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-zoom-heading {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 65px;
  letter-spacing: -0.02em;
}

.home-zoom-sub {
  font-weight: 400;
  font-family: "HelveticaW1Roman", sans-serif;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 16px;
  max-width: 650px;
  width: 100%;
  color: var(--white);
}

.home-zoom-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 52px;
  border: 1.5px solid var(--white);
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: transparent;
  align-self: flex-start;
  transition:
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}

.home-zoom-cta:hover {
  background-color: var(--white);
  color: var(--black);
}

/* ═══════════════════════════════════════════════════════
   BRIEFS BY DESIGN — split section
   ═══════════════════════════════════════════════════════ */

.inner-briefs-text {
  gap: 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.briefs-section {
  display: grid;
  background: white;
  grid-template-columns: 1fr 1fr;
  min-height: 840px;
  padding-left: 10.5%;
  padding-bottom: 3%;
  padding-right: 10.5%;
  padding-top: 3%;
}

.briefs-text {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.briefs-heading {
  font-family: "HelveticaW1Bold";
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.briefs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 52px;
  border: 1.5px solid var(--black);
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background-color: transparent;
  transition:
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}

.briefs-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.briefs-image {
  position: relative;
  background-color: #ebebeb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.briefs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 900px) {
  article.product-card.reveal.visible {
    padding: 5px;
  }
  .briefs-section {
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    padding-left: 3.5%;
    padding-bottom: 5%;
    padding-right: 3.5%;
    padding-top: 5%;
  }
  .briefs-image {
    min-height: 420px;
  }
}

/* ═══════════════════════════════════════════════════════
   BRAND MARQUEE STRIP
   ═══════════════════════════════════════════════════════ */

.brand-marquee {
  background-color: #282828;
  overflow: hidden;
  height: clamp(64px, 10vw, 135px);
  display: flex;
  align-items: center;
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  animation: brand-scroll 50s linear infinite;
  will-change: transform;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-item {
  font-family: arial, sans-serif;
  font-size: clamp(32px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 clamp(14px, 2.5vw, 36px);
  flex-shrink: 0;
}

.brand-marquee-sep {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-marquee-sep img {
  width: clamp(20px, 2.5vw, 27.7px);
  height: clamp(20px, 2.5vw, 27.7px);
  object-fit: contain;
  display: block;
}

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

/* ═══════════════════════════════════════════════════════
   REWARDS SECTION
   ═══════════════════════════════════════════════════════ */

.rewards-section {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.rewards-section picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.rewards-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.rewards-text {
  position: absolute;
  top: clamp(48px, 7vh, 80px);
  right: var(--section-px);
  z-index: 2;
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.rewards-heading {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 42px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 42px;
  letter-spacing: -0.01em;
}

.rewards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rewards-list li {
  font-family: "HelveticaW1Roman", sans-serif;
  font-size: 16px;
  color: var(--white);
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}

.rewards-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--white);
  font-size: 13px;
  top: 1px;
}

.rewards-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.rewards-btn:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: #0878a0;
}

.arrow-class {
  transition: inherit;
  margin: 0px 4px 0px 0px;
  display: initial;
  fill: #282828;
  margin-right: 0px;
  width: 16px;
  height: 16px;
  margin-left: 3px;
}

.view-more-btn {
  transition: inherit;
  letter-spacing: 0em;
  margin: 0px 0px 0px 4px;
  line-height: unset;
  display: initial;
  color: #282828;
  margin-left: 0px;
  font-family: helvetica-w01-bold, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  margin-right: 3px;
}

@media (max-width: 900px) {
  .rewards-text {
    width: 45%;
    padding: 56px var(--section-px);
  }
}

@media (max-width: 480px) {
  .briefs-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 20px;
  }
  .inner-briefs-text {
    align-items: center;
  }
  .briefs-text.reveal-left.visible {
    order: 2;
  }
  section.newsletter-section {
    padding-top: 70px;
  }
  .rewards-heading {
    line-height: 33px;
    font-size: 27px;
  }
  .rewards-text {
    width: 57%;
    padding: 0px;
  }
  .rewards-btn {
    padding: 16px 35px;
  }
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER — Stay in the Loop
   ═══════════════════════════════════════════════════════ */

.newsletter-section {
  display: none !important;
  background-color: var(--white);
  padding-top: 3.5%;
  padding-right: 3.5%;
  padding-left: 3.5%;
  padding-bottom: 4%;
  display: flex;
  justify-content: center;
}

.newsletter-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.newsletter-heading {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.newsletter-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 18px;
  margin-bottom: 18px;
}

.newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nf-field-wrap {
  width: 100%;
  margin-bottom: 2px;
}

.nf-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background-color: #d8d8d8;
  border: 1.5px solid transparent;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.nf-input::placeholder {
  color: #888888;
  font-size: 12px;
}

.nf-input:focus {
  background-color: #ebebeb;
  border-color: var(--black);
}

.nf-input.error {
  border-color: #e03030;
  background-color: #fff0f0;
}

.nf-checkbox-wrap {
  margin: 12px 0 20px;
}

.nf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.nf-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.nf-checkbox-box {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid #aaaaaa;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.nf-checkbox:checked + .nf-checkbox-box {
  background-color: var(--black);
  border-color: var(--black);
}

.nf-checkbox:checked + .nf-checkbox-box::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.nf-checkbox-wrap.error .nf-checkbox-box {
  border-color: #e03030;
}

.nf-checkbox-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
}

.nf-error {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #e03030;
  min-height: 16px;
  padding-top: 4px;
}

.nf-submit {
  width: 100%;
  height: 48px;
  background-color: #1a1a2e;
  color: var(--white);
  font-family: "HelveticaW1Bold";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    transform 0.22s var(--ease-spring),
    box-shadow 0.22s ease;
  border-radius: 0;
}

.nf-submit:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: black;
}

.nf-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.nf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.nf-success {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #2a7a2a;
  text-align: center;
  margin-top: 12px;
  min-height: 18px;
}

/* ═══════════════════════════════════════════════════════
   WELCOME POPUP
   ═══════════════════════════════════════════════════════ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.38s ease,
    visibility 0.38s ease;
}

.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  position: relative;
  background-color: #181818;
  color: var(--white);
  width: 100%;
  max-width: 420px;
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transform: translateY(18px);
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup-overlay.visible .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition:
    color var(--dur-fast) ease,
    background-color var(--dur-fast) ease;
}

.popup-close:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}

.popup-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.popup-heading {
  font-family: var(--font-hero);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.popup-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 13px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition:
    background-color var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.popup-btn:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — home-page specific breakpoints
   ═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .home-zoom-heading {
    line-height: 45px;
  }
  .split-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto 290px;
  }
  .split-text {
    padding: 56px var(--section-px);
  }
  .split-image {
    height: 100%;
  }
}

@media (max-width: 560px) {
  .hero-content {
    bottom: 32px;
    left: var(--section-px);
    right: var(--section-px);
  }
  .hero-text-box {
    padding: 20px 24px 24px;
    gap: 14px;
  }
  .hero-headline {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  .hero-desc--sub {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   PAGE TRANSITIONS — hero entry & scroll reveal
   ═══════════════════════════════════════════════════════ */

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.product-card:nth-child(1) {
  transition-delay: 0s;
}

.product-card:nth-child(2) {
  transition-delay: 0.15s;
}

.product-card:nth-child(3) {
  transition-delay: 0.3s;
}

.product-card:nth-child(4) {
  transition-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content {
    animation: none;
  }
}
