/* ============================================================
   La pure — HOME PAGE (SK-II-style architecture, own content)
   ============================================================ */

.home-2026 {
  padding-top: 72px;
  background: #FFF;
}

/* Keep header readable over hero image */
.site-header.header--transparent {
  background: rgba(13, 13, 13, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.header--transparent .nav-links a,
.site-header.header--transparent .nav-links a:hover,
.site-header.header--transparent .nav-links a.active {
  color: #FFF;
}

.site-header.header--transparent .nav-links a::after,
.site-header.header--transparent .nav-toggle span {
  background: #FFF;
}

/* ============================================================
   Shared
   ============================================================ */

.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #A33B38;
  margin-bottom: 0.85rem;
}

.section-lead {
  max-width: 760px;
  color: #4E4B47;
  font-size: 1.02rem;
  line-height: 1.7;
}

.btn--sk-red {
  background: #E11A2B;
  color: #FFF;
  border-color: #E11A2B;
}

.btn--sk-red:hover {
  background: #B90F22;
  border-color: #B90F22;
  color: #FFF;
}

.btn--hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.66);
}

.btn--hero-outline:hover {
  background: #FFF;
  color: #1B1B1B;
  border-color: #FFF;
}

.btn--compact {
  padding: 0.78rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

/* ============================================================
   Promo Carousel Strip
   ============================================================ */

.promo-carousel {
  background: #F8F4ED;
  border-bottom: 1px solid #E9E0D2;
}

.promo-carousel__track {
  min-height: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1rem;
}

.promo-carousel__item {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2A2520;
  padding: 0.9rem 0.5rem;
  border-right: 1px solid #E8DDCD;
}

.promo-carousel__item:last-child {
  border-right: none;
}

/* ============================================================
   Hero Banner
   ============================================================ */

.hero-banner {
  position: relative;
  min-height: min(92vh, 860px);
  overflow: hidden;
  background: #181511;
}

.hero-carousel {
  isolation: isolate;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero__image-wrap,
.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(92deg, rgba(18, 14, 11, 0.82) 0%, rgba(18, 14, 11, 0.72) 34%, rgba(18, 14, 11, 0.28) 64%, rgba(18, 14, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 48%);
}

.hero-banner__content {
  position: relative;
  z-index: 3;
  min-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
}

.hero-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #F4E4D2;
  margin-bottom: 1rem;
}

.hero-banner__title {
  margin: 0;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: clamp(2.95rem, 7.7vw, 5.95rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-banner__desc {
  margin-top: 1.25rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
}

.hero-banner__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-carousel__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(14, 14, 14, 0.22);
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.hero-carousel__nav:hover {
  background: rgba(14, 14, 14, 0.55);
}

.hero-carousel__nav--prev {
  left: 1.25rem;
}

.hero-carousel__nav--next {
  right: 1.25rem;
}

.hero-carousel__dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: transparent;
  cursor: pointer;
}

.hero-carousel__dot.is-active {
  background: #FFF;
}

/* ============================================================
   Tabbed Product Carousel Section
   ============================================================ */

.tabbed-product-carousel {
  padding: 5.2rem 0;
  background: #FFF;
}

.tabbed-product-carousel__head {
  margin-bottom: 1.7rem;
}

.tabbed-product-carousel__head h2 {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  margin-bottom: 0.85rem;
}

.tabbed-product-carousel__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.tabbed-product-carousel__tab {
  border: 1px solid #DAD1C7;
  background: #FFF;
  color: #4C4741;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.tabbed-product-carousel__tab.is-active {
  border-color: #1C1C1C;
  color: #1C1C1C;
}

.product-carousel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.product-hero-card,
.product-mini-card {
  background: #FFF;
  border: 1px solid #E9E2DA;
}

.product-hero-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 520px;
}

.product-hero-card__image-wrap {
  background: #F4EFE7;
  overflow: hidden;
}

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

.product-hero-card__content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-hero-card__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #9A3A35;
  margin-bottom: 0.65rem;
}

.product-hero-card__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.1;
}

.product-hero-card__text {
  margin-top: 0.95rem;
  color: #47423D;
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 1.45rem;
}

.product-mini-card {
  display: grid;
  grid-template-rows: 300px auto;
}

.product-mini-card__image-wrap {
  overflow: hidden;
  background: #F4EFE7;
}

.product-mini-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-mini-card__content {
  padding: 1.2rem 1.2rem 1.25rem;
}

.product-mini-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-mini-card__text {
  margin-top: 0.6rem;
  font-size: 0.96rem;
  color: #4F4942;
  line-height: 1.64;
}

.product-mini-card__link {
  display: inline-block;
  margin-top: 0.85rem;
  color: #1E1E1E;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid #1E1E1E;
  padding-bottom: 0.1rem;
}

/* ============================================================
   Shop Nav Strip
   ============================================================ */

.shop-nav-strip {
  border-top: 1px solid #E9E2DA;
  border-bottom: 1px solid #E9E2DA;
  background: #FCFAF7;
}

.shop-nav-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.shop-nav-strip__item {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #EBE2D8;
}

.shop-nav-strip__item:last-child {
  border-right: none;
}

.shop-nav-strip__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #222;
}

.shop-nav-strip__sub {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: #6A635A;
}

/* ============================================================
   Science Spotlight
   ============================================================ */

.science-spotlight {
  padding: 5.4rem 0;
  background: #F8F4ED;
}

.science-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.science-spotlight__media {
  background: #FFF;
  border: 1px solid #E7DED1;
  overflow: hidden;
}

.science-spotlight__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.science-spotlight__content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.85rem;
}

.science-spotlight__content p {
  color: #4E4A45;
  font-size: 1.03rem;
  line-height: 1.72;
}

.science-spotlight__list {
  margin: 1.1rem 0 1.5rem 1rem;
  color: #2E2B27;
}

.science-spotlight__list li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}

/* ============================================================
   Campaign Posters
   ============================================================ */

.campaign-posters {
  padding: 5.4rem 0;
  background: #FFF;
}

.campaign-posters__head {
  margin-bottom: 1.5rem;
}

.campaign-posters__head h2 {
  font-size: clamp(1.9rem, 3.9vw, 3.1rem);
  margin-bottom: 0.8rem;
}

.campaign-posters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.campaign-poster {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.campaign-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.campaign-poster:hover img {
  transform: scale(1.03);
}

.campaign-poster__overlay {
  position: absolute;
  inset: 0;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.62) 8%, rgba(8, 8, 8, 0.12) 54%, rgba(8, 8, 8, 0.01) 100%);
}

.campaign-poster__kicker {
  color: #F0DECB;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  margin-bottom: 0.55rem;
}

.campaign-poster__title {
  color: #FFF;
  font-size: 2rem;
  line-height: 1.02;
  margin: 0 0 0.65rem;
}

.campaign-poster__link {
  color: #FFF;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  width: max-content;
}

/* ============================================================
   Story Split
   ============================================================ */

.story-split {
  padding: 5.5rem 0;
  background: #F7F2EA;
}

.story-split__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.story-split__content {
  background: #FFF;
  border: 1px solid #E7DDD0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-split__content h2 {
  font-size: clamp(2rem, 3.9vw, 3.1rem);
  margin-bottom: 0.85rem;
}

.story-split__content p {
  color: #4E4943;
  font-size: 1.03rem;
  line-height: 1.72;
}

.story-split__actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.story-split__media {
  overflow: hidden;
  min-height: 420px;
}

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

.story-split .btn--hero-outline {
  border-color: #25211C;
  color: #25211C;
  background: transparent;
}

.story-split .btn--hero-outline:hover {
  background: #25211C;
  color: #FFF;
}

/* ============================================================
   Newsletter
   ============================================================ */

.newsletter {
  padding: 5.4rem 0 6rem;
  background: #0F0F10;
  color: #FFF;
}

.newsletter__inner {
  text-align: center;
  max-width: 760px;
}

.newsletter h2 {
  color: #FFF;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  margin-bottom: 0.85rem;
}

.newsletter__lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.newsletter .section-kicker {
  color: #E9D3BA;
}

.newsletter__form {
  max-width: 620px;
  margin: 0 auto;
}

.newsletter__input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFF;
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.newsletter__btn {
  border: none;
  background: #E11A2B;
  color: #FFF;
  padding: 0.95rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter__btn:hover {
  background: #B90F22;
}

.newsletter__success {
  margin-top: 1rem;
  color: #F1E0C6;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1200px) {
  .product-carousel {
    grid-template-columns: 1fr;
  }

  .product-hero-card {
    min-height: 0;
  }

  .product-mini-card {
    grid-template-rows: 280px auto;
  }

  .campaign-posters__grid {
    grid-template-columns: 1fr;
  }

  .campaign-poster {
    min-height: 420px;
  }

  .shop-nav-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .promo-carousel__track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .promo-carousel__item {
    border-right: none;
    border-bottom: 1px solid #E8DDCD;
  }

  .promo-carousel__item:last-child {
    border-bottom: none;
  }

  .hero-banner {
    min-height: 78vh;
  }

  .hero-banner__content {
    min-height: 78vh;
  }

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

  .hero-carousel__nav {
    width: 36px;
    height: 36px;
  }

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

  .product-hero-card__image-wrap {
    min-height: 360px;
  }

  .science-spotlight__inner,
  .story-split__inner {
    grid-template-columns: 1fr;
  }

  .shop-nav-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-nav-strip__item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .home-2026 {
    padding-top: 64px;
  }

  .hero-banner__overlay {
    background:
      linear-gradient(0deg, rgba(18, 14, 11, 0.8) 0%, rgba(18, 14, 11, 0.44) 44%, rgba(18, 14, 11, 0.2) 100%),
      linear-gradient(90deg, rgba(18, 14, 11, 0.7) 0%, rgba(18, 14, 11, 0.2) 60%, rgba(18, 14, 11, 0.05) 100%);
  }

  .hero-banner__content {
    align-items: center;
    text-align: center;
  }

  .hero-banner__title {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .hero-banner__actions {
    justify-content: center;
  }

  .hero-carousel__nav {
    display: none;
  }

  .hero-carousel__dots {
    bottom: 1rem;
  }

  .btn,
  .btn--compact {
    width: 100%;
    justify-content: center;
  }

  .product-mini-card {
    grid-template-rows: 240px auto;
  }

  .campaign-poster {
    min-height: 320px;
  }

  .campaign-poster__title {
    font-size: 1.6rem;
  }

  .shop-nav-strip__grid {
    grid-template-columns: 1fr;
  }

  .shop-nav-strip__item {
    border-right: none;
    border-bottom: 1px solid #EBE2D8;
  }

  .shop-nav-strip__item:last-child {
    border-bottom: none;
  }
}
