/* Home page — gallery showroom (no card frames) */

.page-home {
  --home-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home main {
  padding-top: var(--header-offset);
}

/* ——— Hero: centered brand moment over slideshow ——— */
.home-hero {
  position: relative;
  box-sizing: border-box;
  min-height: 0;
  height: min(58dvh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  overflow: hidden;
  background: var(--surface-low);
}

@media (min-width: 768px) {
  .home-hero {
    height: min(78vh, 860px);
  }
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__slides {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--home-ease), visibility 0.9s var(--home-ease);
}

.home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transform: scale(1.02);
  filter: brightness(0.72) saturate(0.9) contrast(1.05);
}

.home-hero__slide.is-active img {
  animation: home-hero-ken 14s var(--home-ease) both;
}

@keyframes home-hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 48%,
      rgb(22 40 57 / 0.42) 0%,
      rgb(22 40 57 / 0.18) 55%,
      rgb(22 40 57 / 0.5) 100%
    ),
    linear-gradient(
      180deg,
      rgb(22 40 57 / 0.35) 0%,
      rgb(22 40 57 / 0.12) 38%,
      rgb(22 40 57 / 0.55) 100%
    );
}

.home-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: 48px var(--margin-m) 64px;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .home-hero__content {
    padding: 56px var(--margin) 72px;
  }
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
}

.home-hero__brand {
  font-family: var(--font-logo, var(--font-sans));
  font-size: clamp(32px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 2px 28px rgb(22 40 57 / 0.35);
}

.home-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: 28ch;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__lead {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
  margin: 0 auto 28px;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.home-hero .btn {
  font-family: var(--font-sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.home-hero .btn-primary {
  background: #fff;
  color: var(--primary);
}

.home-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
}

.home-hero .btn-primary:active,
.home-hero .btn-ghost-light:active {
  transform: translateY(1px);
}

.home-hero .btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero .btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.home-hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.home-hero__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s var(--home-ease);
}

.home-hero__dot:hover,
.home-hero__dot:focus-visible {
  background: rgb(255 255 255 / 0.7);
  outline: none;
}

.home-hero__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide {
    transition: none;
  }

  .home-hero__slide.is-active img {
    animation: none;
    transform: none;
  }

  .home-hero__dot,
  .home-hero__dot.is-active {
    transition: none;
    transform: none;
  }
}

/* ——— Soft proof strip ——— */
.home-proof {
  padding: 24px var(--margin-m);
  background: var(--surface-lowest);
}

@media (min-width: 768px) {
  .home-proof {
    padding: 44px var(--margin);
  }
}

.home-proof__inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 12px;
}

@media (min-width: 640px) {
  .home-proof__inner {
    gap: 14px 18px;
  }
}

@media (min-width: 1024px) {
  .home-proof__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 32px;
    align-items: start;
  }
}

.home-proof__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

@media (min-width: 768px) {
  .home-proof__item {
    gap: 14px;
  }
}

.home-proof__mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--surface-low);
}

@media (min-width: 768px) {
  .home-proof__mark {
    width: 52px;
    height: 52px;
  }
}

.home-proof__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .home-proof__icon {
    width: 26px;
    height: 26px;
  }
}

.home-proof__text {
  min-width: 0;
}

.home-proof__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 2px;
}

.home-proof__text span {
  display: block;
  font-size: var(--text-meta);
  color: var(--on-surface-variant);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .home-proof__text strong {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .home-proof__text span {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* ——— Section rhythm ——— */
.home-section {
  padding: 88px var(--margin-m);
}

@media (min-width: 768px) {
  .home-section {
    padding: 112px var(--margin);
  }
}

.home-section__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
}

.home-section__title {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 12px;
}

.home-section__lead {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--on-surface-variant);
  max-width: 48ch;
  margin-bottom: 48px;
}

.home-section__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
}

.home-section__top .home-section__lead {
  margin-bottom: 0;
}

.home-link {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  transition: opacity var(--ease);
}

.home-link:hover {
  opacity: 0.65;
}

/* ——— Series: editorial, borderless ——— */
.home-series {
  display: grid;
  gap: 64px;
}

@media (min-width: 960px) {
  .home-series {
    gap: 96px;
  }
}

.home-series__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 960px) {
  .home-series__row {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }

  .home-series__row--flip {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .home-series__row--flip .home-series__copy {
    order: -1;
  }
}

.home-series__media {
  overflow: hidden;
  background: var(--surface-low);
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-media);
}

.home-series__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--home-ease);
}

.home-series__row:hover .home-series__media img {
  transform: scale(1.04);
}

.home-series__copy h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 14px;
}

.home-series__copy p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--on-surface-variant);
  max-width: 38ch;
  margin-bottom: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .home-series__media img {
    transition: none;
  }
  .home-series__row:hover .home-series__media img {
    transform: none;
  }
}

/* ——— Category mosaic (no card frames) ——— */
.home-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 900px) {
  .home-cats {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
  }

  .home-cats__hero {
    grid-row: 1 / 3;
  }

  .home-cats__tile--wide {
    grid-column: 2 / 4;
  }
}

.home-cats__hero,
.home-cats__tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 200px;
  height: 100%;
  background: var(--surface-low);
  color: #fff;
  border-radius: var(--radius-media);
}

.home-cats__hero img,
.home-cats__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--home-ease);
}

.home-cats__hero:hover img,
.home-cats__tile:hover img {
  transform: scale(1.04);
}

.home-cats__hero::after,
.home-cats__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(22, 40, 57, 0.72) 100%
  );
  pointer-events: none;
}

.home-cats__caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 20px 22px;
}

.home-cats__caption h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.home-cats__caption span {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .home-cats__hero img,
  .home-cats__tile img {
    transition: none;
  }
  .home-cats__hero:hover img,
  .home-cats__tile:hover img {
    transform: none;
  }
}

/* ——— Styled scenes (lookbook preview) ——— */
.home-scenes {
  background: var(--surface-lowest);
}

.home-scenes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 900px) {
  .home-scenes__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 420px;
    gap: 16px;
  }
}

.home-scenes__hero,
.home-scenes__tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 240px;
  height: 100%;
  background: var(--surface-low);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-media);
}

@media (min-width: 900px) {
  .home-scenes__hero,
  .home-scenes__tile {
    min-height: 0;
  }
}

.home-scenes__hero img,
.home-scenes__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--home-ease);
}

.home-scenes__hero:hover img,
.home-scenes__tile:hover img {
  transform: scale(1.04);
}

.home-scenes__hero::after,
.home-scenes__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(22, 40, 57, 0.72) 100%
  );
  pointer-events: none;
}

.home-scenes__caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 20px 22px;
}

.home-scenes__caption h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.home-scenes__caption span {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .home-scenes__hero img,
  .home-scenes__tile img {
    transition: none;
  }
  .home-scenes__hero:hover img,
  .home-scenes__tile:hover img {
    transform: none;
  }
}

/* Product list styles live in site.css (.product-grid / .product-card) */
.home-gallery {
  background: var(--surface);
}

.home-gallery .home-section__top {
  margin-bottom: 48px;
}

.home-gallery .home-section__lead {
  margin-bottom: 0;
}

.home-gallery__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 55%, transparent);
  max-width: 36rem;
  margin-inline: auto;
}

.home-gallery__more-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--primary);
  max-width: 18ch;
}

.home-gallery__more-lead {
  margin: 0 0 24px;
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--on-surface-variant);
  max-width: 40ch;
}

.home-gallery__more .home-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ——— Immersive feature: fixed bg, clipped to this section only ——— */
.home-feature {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: #c4a8a8;
  background-image: url("../img/studio/feature-sculptural.png");
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: cover;
  background-attachment: fixed;
}

.home-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 72% 58% at 50% 48%,
      rgb(22 40 57 / 0.28) 0%,
      rgb(22 40 57 / 0.42) 55%,
      rgb(22 40 57 / 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgb(22 40 57 / 0.22) 0%,
      rgb(22 40 57 / 0.36) 100%
    );
}

.home-feature__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  padding: 72px var(--margin-m);
  color: var(--on-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .home-feature__content {
    padding: 96px var(--margin);
  }
}

.home-feature__content h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 16ch;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--on-primary);
}

.home-feature__lead {
  font-size: var(--text-body);
  line-height: 1.65;
  color: color-mix(in srgb, var(--on-primary) 82%, transparent);
  margin: 0 0 28px;
  max-width: 32ch;
}

.home-feature .btn-primary {
  min-width: 10rem;
  justify-content: center;
  background: var(--on-primary);
  color: var(--primary);
}

.home-feature .btn-primary:hover {
  background: color-mix(in srgb, var(--on-primary) 92%, transparent);
}

/* iOS / reduced-motion: fixed attachment is unreliable */
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .home-feature {
    background-attachment: scroll;
  }
}

/* ——— Follow / story band ——— */
.home-follow {
  position: relative;
  isolation: isolate;
  background: var(--surface-lowest);
  padding: 88px var(--margin-m) 100px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-follow {
    padding: 112px var(--margin) 120px;
  }
}

.home-follow__bg,
.home-follow__veil {
  display: none;
}

.home-follow__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: 0;
  background: none;
  border-radius: var(--radius);
  box-shadow: none;
}

.home-follow__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary) 72%, transparent);
}

.home-follow__title {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: none;
}

.home-follow__rule {
  width: 40px;
  height: 1px;
  border: 0;
  background: color-mix(in srgb, var(--primary) 40%, transparent);
  margin: 0 auto 20px;
}

.home-follow__lead {
  max-width: 46ch;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-style: normal;
  color: var(--on-surface-variant);
  margin: 0 auto 16px;
}

.home-follow__byline {
  max-width: 40ch;
  margin: 0 auto 36px;
  font-size: var(--text-caption);
  line-height: 1.5;
  font-style: italic;
  color: color-mix(in srgb, var(--on-surface-variant) 85%, transparent);
}

.home-follow__shops {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: left;
}

@media (max-width: 700px) {
  .home-follow__shops {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
  }
}

.home-follow__shot {
  margin: 0;
  min-width: 0;
}

.home-follow__shot img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  background: var(--surface-high);
  border-radius: var(--radius-media);
}

@media (min-width: 701px) {
  .home-follow__shot img {
    height: 280px;
  }

  .home-follow__shot--hero img {
    height: 320px;
  }
}

.home-follow__shot figcaption {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--on-surface-variant) 88%, transparent);
}

.home-follow__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-follow__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 75%, transparent);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--surface-lowest);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.home-follow__chip:hover {
  background: var(--surface-low);
  border-color: var(--primary);
  color: var(--primary);
  opacity: 1;
}

.home-follow__chip:active {
  transform: scale(0.98);
}

.home-follow__ornament,
.home-follow__wave,
.home-follow__accent {
  display: none;
}

/* ——— Home FAQ ——— */
.home-faq {
  background: transparent;
  padding: 72px var(--margin-m) 88px;
}

@media (min-width: 768px) {
  .home-faq {
    padding: 96px var(--margin) 112px;
  }
}

.home-faq__inner {
  max-width: 720px;
  margin-inline: auto;
}

.home-faq__title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin: 0 0 14px;
  line-height: 1.15;
}

.home-faq__inner > .home-section__lead {
  margin: 0 0 28px;
  max-width: 58ch;
}

.home-faq__list details {
  border-bottom: 1px solid color-mix(in srgb, var(--outline-variant) 70%, transparent);
  padding-block: 18px;
}

.home-faq__list details:first-child {
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 70%, transparent);
}

.home-faq__list summary {
  font-weight: 500;
  font-size: var(--text-body);
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.home-faq__list summary::-webkit-details-marker {
  display: none;
}

.home-faq__list summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--outline);
  flex-shrink: 0;
}

.home-faq__list details[open] summary::after {
  content: "-";
}

.home-faq__list details p {
  margin-top: 12px;
  color: var(--on-surface-variant);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: 58ch;
}

.home-faq__list + .home-section__lead {
  margin: 28px 0 10px;
}

.home-faq__link {
  display: inline-flex;
  margin-top: 0;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-faq__link:hover {
  opacity: 0.72;
}

/* ——— New series drops: dual editorial tiles ——— */
.home-drops {
  padding: 56px var(--margin-m) 0;
  background: var(--surface-lowest);
}

@media (min-width: 768px) {
  .home-drops {
    padding: 72px var(--margin) 0;
  }
}

.home-drops__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
}

.home-drops__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.home-drops__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--primary);
}

.home-drops__lead {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-surface-variant);
}

.home-drops__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 900px) {
  .home-drops__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.home-drops__card {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  background: #12181e;
  color: #fff;
  isolation: isolate;
  border-radius: var(--radius-media);
}

@media (min-width: 900px) {
  .home-drops__card {
    min-height: 360px;
  }
}

.home-drops__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.home-drops__card:hover .home-drops__media {
  transform: scale(1.06);
}

.home-drops__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(12, 18, 24, 0.08) 0%,
      rgba(12, 18, 24, 0.12) 42%,
      rgba(12, 18, 24, 0.55) 72%,
      rgba(12, 18, 24, 0.78) 100%
    );
}

.home-drops__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  padding: 22px 20px 26px;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .home-drops__copy {
    padding: 28px 32px 32px;
  }
}

.home-drops__date {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-sans);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: var(--radius-sm);
}

.home-drops__name {
  margin: 0 0 6px;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.home-drops__sku {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.home-drops__rule {
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin: 0 0 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
}

.home-drops__copy > p:not(.home-drops__sku) {
  margin: 0;
  max-width: 38ch;
  font-size: var(--text-body);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.home-drops__badge {
  --drops-badge: clamp(72px, 8vw, 96px);
  position: absolute;
  right: 18px;
  top: 50%;
  bottom: auto;
  z-index: 3;
  width: var(--drops-badge);
  height: var(--drops-badge);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(12, 18, 24, 0.28);
  pointer-events: none;
  transform: translateY(-50%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 900px) {
  .home-drops__badge {
    right: 28px;
  }
}

.home-drops__card:hover .home-drops__badge {
  transform: translateY(-50%) scale(1.06);
}

.home-drops__badge-ring {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  animation: home-drops-spin 18s linear infinite;
}

.home-drops__badge-text {
  fill: var(--primary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-drops__badge-arrow {
  position: relative;
  z-index: 1;
  width: 28%;
  height: 28%;
  display: grid;
  place-items: center;
  color: var(--primary);
}

.home-drops__badge-arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes home-drops-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-drops__media {
    transition: none;
    transform: none;
  }

  .home-drops__card:hover .home-drops__media {
    transform: none;
  }

  .home-drops__badge-ring {
    animation: none;
  }

  .home-drops__card:hover .home-drops__badge {
    transform: translateY(-50%);
  }
}

/* ——— Reveal on scroll ——— */
.home-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--home-ease), transform 0.7s var(--home-ease);
}

.home-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Footer style is owned by site.css (.site-footer) — do not override here. */
