:root {
  --home-ink: #18191b;
  --home-muted: #62656b;
  --home-line: #e3e4e6;
  --home-surface: #f5f6f7;
  --home-warm: #f8f5f1;
  --home-yellow: #ffc91c;
  --home-yellow-hover: #f2b900;
  --home-radius: 12px;
  --home-shadow: 0 18px 50px rgba(31, 35, 41, .08);
}

html { scroll-behavior: smooth; }
body.home-light {
  margin: 0;
  color: var(--home-ink);
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.home-light *, .home-light *::before, .home-light *::after { box-sizing: border-box; }
.home-light a { color: inherit; }
.home-light .container { width: min(calc(100% - 64px), 1400px); margin-inline: auto; }
.home-light .section { padding: clamp(76px, 7.5vw, 118px) 0; border: 0; }
.home-light h1,
.home-light h2,
.home-light h3,
.home-light p { text-wrap: pretty; }
.home-light h1,
.home-light h2,
.home-light h3 { color: var(--home-ink); }
.home-light h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.home-light .section-heading { margin: 0 0 clamp(38px, 5vw, 68px); }
.home-light .section-heading p {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.45vw, 20px);
}
.home-light .section-heading--center { text-align: center; }
.home-light .section-heading--center p { margin-inline: auto; }

.home-light .header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--home-ink);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--home-line);
  backdrop-filter: blur(16px);
}
.home-light .header__inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 196px 1fr auto auto;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
}
.home-light .brand-logo { display: block; width: 190px; text-decoration: none; }
.home-light .brand-logo img { width: 100%; height: auto; display: block; }
.home-light .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.8vw, 46px);
}
.home-light .nav a {
  position: relative;
  padding: 10px 0;
  color: #33363a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.home-light .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--home-yellow);
  transition: right .25s ease;
}
.home-light .nav a:hover::after { right: 0; }
.home-light .header__phone {
  white-space: nowrap;
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.home-light .menu-button { display: none; }
.home-light .button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  color: var(--home-ink);
  background: transparent;
  border: 1px solid #2b2d30;
  border-radius: 7px;
  font: 700 15px/1.1 Inter, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.home-light .button:hover { transform: translateY(-2px); }
.home-light .button--primary {
  color: #161718;
  background: var(--home-yellow);
  border-color: var(--home-yellow);
  box-shadow: 0 10px 24px rgba(255, 201, 28, .22);
}
.home-light .button--primary:hover {
  background: var(--home-yellow-hover);
  border-color: var(--home-yellow-hover);
  box-shadow: 0 14px 30px rgba(255, 201, 28, .28);
}
.home-light .button--outline { color: var(--home-ink); background: #fff; }
.home-light .button--outline:hover { border-color: var(--home-yellow-hover); }
.home-light .button--link {
  min-height: auto;
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.home-light .button--link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.home-light .header__cta { min-height: 48px; padding-inline: 25px; }

.home-light .hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: var(--home-ink);
  background: #fff;
  border: 0;
}
.home-light .vape-canvas {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  filter: saturate(1.3);
  -webkit-mask-image: linear-gradient(to bottom, transparent 10%, rgba(0,0,0,.18) 30%, #000 56%);
  mask-image: linear-gradient(to bottom, transparent 10%, rgba(0,0,0,.18) 30%, #000 56%);
}
.home-light .hero__grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(560px, .96fr) minmax(600px, 1.04fr);
  align-items: center;
  gap: 18px;
}
.home-light .hero__copy {
  position: relative;
  z-index: 5;
  max-width: 630px;
  padding: 72px 0 56px;
}
.home-light .hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 80px);
  font-weight: 780;
  line-height: .98;
  letter-spacing: -.065em;
}
.home-light .hero::after,
.home-light .business-note::before { display: none; }
.home-light .hero__copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #4f5358;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.45;
}
.home-light .hero .actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}
.home-light .hero .button { min-height: 58px; padding-inline: 30px; font-size: 16px; }
.home-light .hero .button--link { min-height: auto; padding-inline: 0; }
.home-light .hero__trust {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  color: #3f4246;
  font-size: 14px;
  font-weight: 600;
}
.home-light .hero__trust li { padding: 0 16px; border-left: 1px solid #d7d9dc; }
.home-light .hero__trust li:first-child { padding-left: 0; border-left: 0; }
.home-light .hero__media {
  position: relative;
  inset: auto;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  background: none;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.home-light .hero__media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 -2px;
  width: 19%;
  background: linear-gradient(90deg, #fff 10%, rgba(255, 255, 255, 0));
  pointer-events: none;
}
.home-light .hero__media::after { display: none; }
.home-light .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% 50%;
}
.home-light .hero__vapor {
  position: absolute;
  z-index: 2;
  width: 48%;
  height: 22%;
  right: 2%;
  bottom: 3%;
  opacity: .23;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(182, 184, 187, .45), transparent 60%),
    radial-gradient(ellipse at 70% 45%, rgba(198, 199, 201, .55), transparent 62%);
  filter: blur(17px);
  animation: homeVapor 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.home-light .hero__vapor--two {
  right: 16%;
  bottom: 10%;
  width: 34%;
  opacity: .14;
  animation-duration: 13s;
  animation-delay: -4s;
}
@keyframes homeVapor {
  from { transform: translate3d(-7%, 2%, 0) scaleX(.9); }
  to { transform: translate3d(9%, -5%, 0) scaleX(1.12); }
}
.home-light .business-note { background: var(--home-surface); border-block: 1px solid var(--home-line); }
.home-light .business-note__grid {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.home-light .business-note strong { font-size: 15px; }
.home-light .business-note p { margin: 0; color: var(--home-muted); font-size: 14px; }

.home-light .orders-section { background: #fff; }
.home-light .order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-light .order-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 34px;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  clip-path: none;
  box-shadow: 0 8px 28px rgba(31, 35, 41, .045);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-light .order-card:hover {
  transform: translateY(-7px);
  border-color: #d0d3d7;
  box-shadow: var(--home-shadow);
}
.home-light .order-card--primary { border: 2px solid var(--home-yellow); }
.home-light .order-card__label {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 13px;
  color: #171819;
  background: var(--home-yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.home-light .order-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #25272a;
  background: #f4f5f6;
  border-radius: 50%;
}
.home-light .order-card--primary .order-card__icon { background: #fff7d3; }
.home-light .order-card__icon svg,
.home-light .benefit-item svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-light .order-card__copy { flex: 1; }
.home-light .order-card__value {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--home-ink);
  font-size: clamp(31px, 2.6vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.home-light .order-card--primary .order-card__value {
  color: var(--home-ink);
  border: 0;
}
.home-light .order-card h3 { margin: 20px 0 8px; font-size: 20px; line-height: 1.25; }
.home-light .order-card__copy > p:last-child { margin: 0; color: var(--home-muted); font-size: 15px; line-height: 1.5; }
.home-light .order-card__button { width: 100%; min-height: 54px; }

.home-light .assortment-section { background: #fff; border-top: 1px solid #f0f1f2; }
.home-light .assortment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.home-light .assortment-card {
  min-width: 0;
  overflow: hidden;
  color: var(--home-ink);
  background: var(--home-warm);
  border: 1px solid #ece9e5;
  border-radius: var(--home-radius);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.home-light .assortment-card:hover {
  transform: translateY(-5px);
  border-color: #dcd8d2;
  box-shadow: var(--home-shadow);
}
.home-light .assortment-card--lead { min-height: 560px; display: flex; flex-direction: column; }
.home-light .assortment-card--lead .assortment-card__media { height: 430px; }
.home-light .assortment-card__media { display: block; overflow: hidden; }
.home-light .assortment-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}
.home-light .assortment-card:hover .assortment-card__media img { transform: scale(1.035); }
.home-light .assortment-card__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
}
.home-light .assortment-card__body strong { font-size: clamp(20px, 1.8vw, 28px); line-height: 1.15; }
.home-light .assortment-card__body > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #6a6d71;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.home-light .assortment-card__body svg {
  width: 34px;
  height: 18px;
  fill: none;
  stroke: var(--home-yellow-hover);
  stroke-width: 1.6;
}
.home-light .assortment-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--home-line);
}
.home-light .assortment-card--compact {
  grid-column: auto;
  grid-row: auto;
  width: auto;
  min-height: 150px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  border: 0;
  border-right: 1px solid var(--home-line);
  border-radius: 0;
  background: #fff;
}
.home-light .assortment-card--compact:last-child { border-right: 0; }
.home-light .assortment-card--compact:hover { transform: none; box-shadow: none; background: #fafafa; }
.home-light .assortment-card--compact .assortment-card__media { height: 150px; }
.home-light .assortment-card--compact .assortment-card__media img { object-fit: contain; }
.home-light .assortment-card--compact .assortment-card__body {
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 16px 20px 8px;
}
.home-light .assortment-card--compact .assortment-card__body strong { font-size: 17px; }
.home-light .assortment-card--compact .assortment-card__body > span { color: var(--home-muted); }

.home-light .benefits-section { background: var(--home-surface); }
.home-light .benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.home-light .benefit-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  text-align: center;
  border-right: 1px solid #dfe1e3;
}
.home-light .benefit-item:last-child { border-right: 0; }
.home-light .benefit-item svg { width: 48px; height: 48px; }
.home-light .benefit-item strong { font-size: 17px; line-height: 1.35; }

.home-light .delivery-section { background: #fff; }
.home-light .delivery-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(54px, 7vw, 116px);
}
.home-light .delivery-copy h2 { max-width: 600px; }
.home-light .delivery-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.65;
}
.home-light .text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  color: var(--home-ink);
  font-weight: 800;
  text-decoration: none;
}
.home-light .text-link span { color: var(--home-yellow-hover); font-size: 23px; transition: transform .2s ease; }
.home-light .text-link:hover span { transform: translateX(6px); }
.home-light .delivery-links { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 30px; }
.home-light .delivery-links a { color: var(--home-muted); font-size: 14px; text-underline-offset: 4px; }
.home-light .delivery-media {
  overflow: hidden;
  aspect-ratio: 1.5;
  background: var(--home-warm) url('/assets/opt-pods-assortment-wordmark.jpg?v=1') center / cover no-repeat;
  border-radius: var(--home-radius);
}
.home-light .delivery-media img { width: 100%; height: 100%; display: block; object-fit: cover; }

.home-light .reviews-section,
.home-light #reviews { color: var(--home-ink); background: #fff; border-top: 1px solid #f0f1f2; }
.home-light #reviews .section-heading p { color: var(--home-muted); }
.home-light .section-heading--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.home-light .slider-controls { display: flex; gap: 10px; }
.home-light .slider-controls button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.home-light .slider-controls button:hover { background: #fff8d8; border-color: var(--home-yellow); }
.home-light .slider-controls svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.home-light .review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 31.8%);
  gap: 20px;
  overflow-x: auto;
  padding: 3px 3px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--home-yellow) #e9eaec;
}
.home-light .review-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  margin: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  box-shadow: 0 8px 24px rgba(31, 35, 41, .045);
}
.home-light .review-card img { width: 100%; height: 335px; object-fit: contain; border-radius: 6px; }
.home-light .review-card figcaption { padding-top: 16px; color: var(--home-muted); font-size: 13px; }

.home-light .contact-section { background: var(--home-surface); border-block: 1px solid var(--home-line); }
.home-light .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}
.home-light .contact-copy p { max-width: 630px; margin: 22px 0 0; color: var(--home-muted); font-size: 18px; }
.home-light .contact-phone {
  display: inline-block;
  margin: 0 0 24px;
  color: var(--home-ink);
  font-size: clamp(29px, 3.4vw, 48px);
  font-weight: 780;
  letter-spacing: -.045em;
  text-decoration: none;
}
.home-light .contact-actions .actions { display: flex; gap: 12px; }
.home-light .contact-actions .button { flex: 1; min-height: 58px; }
.home-light .button__icon { width: 22px; height: 22px; display: block; }

.home-light .footer {
  padding: 42px 0 24px;
  color: var(--home-ink);
  background: #fff;
}
.home-light .footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.home-light .brand-logo--footer { width: 205px; }
.home-light .footer__nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 34px; }
.home-light .footer__nav a { color: #4f5358; font-size: 14px; text-decoration: none; }
.home-light .footer__nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.home-light .footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  color: #777b82;
  border-top: 1px solid var(--home-line);
  font-size: 13px;
}
.home-light .mobile-contact { background: var(--home-yellow); color: var(--home-ink); }
.home-light .age-gate__panel { border-radius: 14px; }
.home-light .age-gate__mark { color: var(--home-yellow-hover); }

.home-light .js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.home-light .js-reveal[data-reveal-side="left"],
.home-light .js-reveal[data-reveal-side="right"] { transform: translateY(24px); }
.home-light .js-reveal.is-visible { opacity: 1; transform: translate(0); }

@media (max-width: 1180px) {
  .home-light .header__inner { min-height: 82px; grid-template-columns: 170px 1fr auto auto; gap: 24px; }
  .home-light .brand-logo { width: 165px; }
  .home-light .header__phone { display: none; }
  .home-light .hero,
  .home-light .hero__grid { min-height: 560px; }
  .home-light .hero__grid { grid-template-columns: minmax(390px, .9fr) minmax(470px, 1.1fr); }
  .home-light .hero h1 { font-size: clamp(52px, 6.4vw, 72px); }
  .home-light .hero__trust { flex-wrap: wrap; row-gap: 12px; }
  .home-light .order-card { padding: 28px; }
  .home-light .assortment-card--lead { min-height: 500px; }
  .home-light .assortment-card--lead .assortment-card__media { height: 370px; }
  .home-light .assortment-rail { grid-template-columns: 1fr 1fr; }
  .home-light .assortment-card--compact:nth-child(2) { border-right: 0; }
  .home-light .assortment-card--compact:nth-child(-n+2) { border-bottom: 1px solid var(--home-line); }
  .home-light .review-track { grid-auto-columns: minmax(340px, 42%); }
}

@media (max-width: 900px) {
  .home-light .container { width: min(calc(100% - 40px), 1400px); }
  .home-light .header__inner { width: min(calc(100% - 40px), 1400px); grid-template-columns: 160px 1fr auto; }
  .home-light .header__cta { justify-self: end; }
  .home-light .menu-button {
    order: 4;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--home-line);
    border-radius: 7px;
    background: #fff;
  }
  .home-light .menu-button > span:not(.sr-only) { width: 20px; height: 2px; background: var(--home-ink); }
  .home-light .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 22px;
    background: #fff;
    border-bottom: 1px solid var(--home-line);
  }
  .home-light .nav.is-open { display: flex; }
  .home-light .nav a { padding: 13px 0; border-bottom: 1px solid var(--home-line); }
  .home-light .nav a::after { display: none; }
  .home-light .hero,
  .home-light .hero__grid { min-height: auto; }
  .home-light .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .home-light .hero__copy { max-width: 720px; padding: 66px 0 10px; }
  .home-light .hero h1 { max-width: 760px; }
  .home-light .hero__media { min-height: 500px; }
  .home-light .hero__media::before {
    inset: -1px 0 auto 0;
    width: auto;
    height: 17%;
    background: linear-gradient(180deg, #fff 10%, rgba(255, 255, 255, 0));
  }
  .home-light .hero__media img { object-position: 68% 50%; }
  .home-light .business-note__grid { min-height: 96px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 5px; padding-block: 20px; }
  .home-light .order-grid { grid-template-columns: 1fr; }
  .home-light .order-card { min-height: 0; display: grid; grid-template-columns: 64px 1fr 190px; align-items: center; }
  .home-light .order-card__copy { align-self: center; }
  .home-light .order-card__copy > p:last-child { display: none; }
  .home-light .order-card h3 { margin-top: 10px; }
  .home-light .order-card__button { align-self: center; }
  .home-light .assortment-card--lead { min-height: 440px; }
  .home-light .assortment-card--lead .assortment-card__media { height: 320px; }
  .home-light .benefit-grid { grid-template-columns: 1fr 1fr; }
  .home-light .benefit-item:nth-child(2) { border-right: 0; }
  .home-light .benefit-item:nth-child(-n+2) { border-bottom: 1px solid #dfe1e3; }
  .home-light .delivery-layout { grid-template-columns: 1fr; }
  .home-light .delivery-media { order: -1; }
  .home-light .review-track { grid-auto-columns: minmax(320px, 65%); }
  .home-light .contact-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 640px) {
  .home-light .container,
  .home-light .header__inner { width: min(calc(100% - 28px), 1400px); }
  .home-light .section { padding: 68px 0; }
  .home-light .header__inner { min-height: 72px; grid-template-columns: 138px 1fr 44px; gap: 12px; }
  .home-light .brand-logo { width: 138px; }
  .home-light .header__cta { min-height: 42px; padding: 11px 15px; font-size: 13px; }
  .home-light .menu-button { width: 42px; height: 42px; }
  .home-light .nav { top: 72px; }
  .home-light .hero__copy { padding-top: 48px; }
  .home-light .hero h1 { font-size: clamp(44px, 13.2vw, 64px); line-height: .98; }
  .home-light .hero__copy > p { margin-top: 22px; font-size: 17px; }
  .home-light .hero .actions { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 28px; }
  .home-light .hero .button { width: 100%; }
  .home-light .hero .button--link { justify-content: center; }
  .home-light .hero__trust { flex-direction: column; gap: 8px; margin-top: 28px; }
  .home-light .hero__trust li { padding: 0; border: 0; }
  .home-light .hero__trust li::before { content: "—"; margin-right: 9px; color: var(--home-yellow-hover); }
  .home-light .hero__media { min-height: 360px; margin-inline: -14px; background: #fff; }
  .home-light .vape-canvas {
    -webkit-mask-image: linear-gradient(to bottom, transparent 52%, rgba(0,0,0,.2) 62%, #000 76%);
    mask-image: linear-gradient(to bottom, transparent 52%, rgba(0,0,0,.2) 62%, #000 76%);
  }
  .home-light .hero__media img {
    object-fit: contain;
    object-position: center;
    transform: translateX(-9%) scale(1.32);
  }
  .home-light .business-note__grid { padding-inline: 0; }
  .home-light .order-card { display: flex; align-items: stretch; padding: 26px; }
  .home-light .order-card__copy > p:last-child { display: block; }
  .home-light .order-card__button { width: 100%; }
  .home-light .order-card__value { font-size: 32px; }
  .home-light .assortment-grid { grid-template-columns: 1fr; }
  .home-light .assortment-card--lead { min-height: 460px; }
  .home-light .assortment-card--lead .assortment-card__media { height: 340px; }
  .home-light .assortment-card__body { padding: 20px; }
  .home-light .assortment-rail { grid-column: auto; grid-template-columns: 1fr; border: 1px solid var(--home-line); }
  .home-light .assortment-card--compact {
    grid-template-columns: 38% 62%;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }
  .home-light .assortment-card--compact:last-child { border-bottom: 0; }
  .home-light .benefit-item { min-height: 160px; padding-inline: 10px; }
  .home-light .benefit-item strong { font-size: 15px; }
  .home-light .delivery-media { aspect-ratio: 1.18; }
  .home-light .section-heading--row { align-items: flex-start; }
  .home-light .review-track { grid-auto-columns: 88%; }
  .home-light .review-card { min-height: 390px; }
  .home-light .review-card img { height: 300px; }
  .home-light .contact-actions .actions { flex-direction: column; }
  .home-light .footer__top { align-items: flex-start; flex-direction: column; }
  .home-light .footer__nav { justify-content: flex-start; flex-direction: column; gap: 12px; }
  .home-light .footer__bottom { align-items: flex-start; flex-direction: column; }
  .home-light .mobile-contact {
    left: auto;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 58px;
    min-height: 58px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(32, 34, 37, .18);
  }
}

@media (max-width: 400px) {
  .home-light .header__inner { grid-template-columns: 124px 1fr 42px; }
  .home-light .brand-logo { width: 124px; }
  .home-light .header__cta { padding-inline: 12px; }
  .home-light .hero__media { min-height: 330px; }
  .home-light .order-card { padding: 23px; }
  .home-light .benefit-grid { grid-template-columns: 1fr; }
  .home-light .benefit-item { border-right: 0; border-bottom: 1px solid #dfe1e3; }
  .home-light .benefit-item:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-light .hero__vapor { animation: none; }
  .home-light .js-reveal { opacity: 1; transform: none; transition: none; }
}
