/* The Drip District — monochrome luxury */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #ffffff;
  --cream: #f7f5f2;
  --warm-white: #faf8f5;
  --sand: #efeae4;
  --stone: #e5e0d8;
  --taupe: #ddd6cc;
  --off-white: #f3f1ed;
  --gray: #7a7a7a;
  --gray-light: #c8c4bc;
  --border: rgba(255, 255, 255, 0.15);
  --border-dark: rgba(20, 18, 16, 0.1);
  --shadow-soft: 0 12px 48px rgba(20, 16, 12, 0.06);
  --shadow-lift: 0 20px 60px rgba(20, 16, 12, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --wrap-narrow: 40rem;
  --wrap-wide: 72rem;
  --space-section: clamp(4rem, 10vw, 7rem);
  --space-block: clamp(2.5rem, 6vw, 4rem);
  --aspect-product: 3 / 4;
  --aspect-gallery: 3 / 4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--black);
  color: var(--white);
  z-index: 10000;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ── Layout wrappers ── */
.wrap {
  width: min(var(--wrap-wide), calc(100% - 3rem));
  margin-inline: auto;
}

.section--narrow {
  width: min(var(--wrap-narrow), calc(100% - 3rem));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wrap {
    width: min(var(--wrap-wide), calc(100% - 6rem));
  }

  .section--narrow {
    width: min(var(--wrap-narrow), calc(100% - 6rem));
  }
}

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header--hero:not(.is-scrolled):not(.is-open) {
  color: var(--white);
}

.site-header--hero:not(.is-scrolled):not(.is-open) .site-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.site-header--hero:not(.is-scrolled):not(.is-open) .site-nav a:hover,
.site-header--hero:not(.is-scrolled):not(.is-open) .logo__wordmark {
  color: var(--white);
}

.site-header--hero:not(.is-scrolled):not(.is-open) .nav-toggle__bar {
  background: var(--white);
}

.site-header--hero:not(.is-scrolled):not(.is-open) .site-nav__cta {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 245, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-dark);
  color: var(--black);
}

.site-header__inner {
  height: 100%;
  width: min(var(--wrap-wide), calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 1002;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--black);
  transition: transform 0.35s var(--ease);
}

.site-header.is-open .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

@media (min-width: 768px) {
  .site-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }
}

.site-header.is-open .site-nav {
  opacity: 1;
  visibility: visible;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-nav__list {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.site-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--black);
}

.site-nav__cta {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--border-dark);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(5rem, 14vh, 8rem);
  overflow: hidden;
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
}

.hero__media.is-placeholder {
  background: linear-gradient(160deg, #2a2a2a 0%, #0a0a0a 100%);
}

.hero__media.is-placeholder .hero__img {
  opacity: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-inline: 1.5rem;
  max-width: 38rem;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero__tagline {
  margin: 0 0 2.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 1.05rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--luxury {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--luxury:hover {
  background: var(--white);
  color: var(--black);
}

.btn--dark,
.btn--luxury-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover,
.btn--luxury-dark:hover {
  background: transparent;
  color: var(--black);
}

/* ── Sections (shared) ── */
.section {
  padding-block: var(--space-section);
  position: relative;
  isolation: isolate;
}

.section__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.section>.wrap,
.section>.about__inner,
.section>.contact__band {
  position: relative;
  z-index: 1;
}

.section__intro,
.section__head--center {
  text-align: center;
}

.section__label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 1rem;
}

.section__label--light {
  color: rgba(255, 255, 255, 0.55);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--black);
}

.section__title--center {
  text-align: center;
  max-width: 20ch;
  margin-inline: auto;
}

.section__title--light {
  color: var(--white);
}

.section__rule {
  width: 3rem;
  height: 1px;
  background: var(--black);
  margin: 1.75rem auto 0;
}

.section__rule--left {
  margin: 1.75rem 0 0;
}

.section__rule--light {
  background: rgba(255, 255, 255, 0.35);
}

.section__desc {
  margin: 1.25rem auto 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.02em;
  max-width: 28rem;
}

.section__head {
  margin-bottom: clamp(3rem, 7vw, 4.5rem);
}

.section__head--center {
  text-align: center;
}

.section__note {
  margin: clamp(3rem, 6vw, 4rem) 0 0;
  padding: 1.75rem 2rem 0;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  background: transparent;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.section__note a {
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.1em;
  transition: opacity 0.2s ease;
}

.section__note a:hover {
  opacity: 0.5;
}

/* ── About — DARK ── */
.section--about {
  background: var(--black);
}

.section--about .section__label {
  color: rgba(255, 255, 255, 0.45);
}

.section--about .section__title {
  color: var(--white);
}

.section--about .section__rule--left {
  background: rgba(255, 255, 255, 0.25);
}

.section--about .about__text {
  color: rgba(255, 255, 255, 0.75);
}

.section--about .about__grid {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section--about .about__values {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section--about .about__values li {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--about .about__value-title {
  color: var(--white);
}

.section--about .about__value-num {
  color: rgba(255, 255, 255, 0.2);
}

.about__inner {
  max-width: var(--wrap-wide);
}

.about__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: clamp(3rem, 8vw, 5rem);
    padding: clamp(3rem, 6vw, 4.5rem);
  }
}

.about__lead .section__label {
  text-align: left;
}

.about__lead .section__title {
  max-width: 14ch;
}

.about__text {
  margin: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
}

.about__values {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  border-top: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 540px) {
  .about__values {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__lead .section__label,
  .about__text {
    text-align: center;
  }

  .section__rule--left {
    margin-inline: auto;
  }
}

.about__value-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about__value-title {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
}

.about__values li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ── Featured / Shop ── */
.section--featured {
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 50%, var(--sand) 100%);
}

/* Panel is now invisible — grid floats freely */
.featured__panel {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.featured__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--wrap-wide);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .featured__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 420px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
}

.product__link {
  display: block;
}

.product {
  background: var(--white);
  padding: 0.65rem;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.product:hover {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 24px 56px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

.product__media {
  position: relative;
  aspect-ratio: var(--aspect-product);
  overflow: hidden;
  background: var(--stone);
  margin-bottom: 0;
}

.product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s ease;
}

.product__link:hover .product__media::after {
  border-color: rgba(0, 0, 0, 0.2);
}

.product__hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0);
  transition: background 0.45s var(--ease);
}

.product__link:hover .product__hover {
  background: rgba(0, 0, 0, 0.45);
}

.product__media .img-cover {
  filter: grayscale(100%);
  transition: transform 1.1s var(--ease), filter 0.6s ease;
}

.product__link:hover .img-cover {
  transform: scale(1.04);
  filter: grayscale(20%);
}

.product__media.is-placeholder {
  background: #ddd;
}

.product__media.is-placeholder .img-cover {
  opacity: 0;
}

.product__info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 0.35rem 0.5rem;
  border-top: 1px solid var(--border-dark);
  margin-top: 0.65rem;
}

.product__index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray);
  flex-shrink: 0;
}

.product__name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: var(--black);
  text-align: right;
}

/* ── Lookbook / Gallery ── */
.section--lookbook {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: 1fr;
  max-width: 58rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: end;
  }
}

/* Editorial Instax tilt */
.gallery__item:nth-child(1) {
  transform: rotate(-1.5deg) translateY(12px);
}

.gallery__item:nth-child(2) {
  transform: rotate(1deg);
}

.gallery__item:nth-child(3) {
  transform: rotate(-0.8deg) translateY(20px);
}

.gallery__item:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  z-index: 2;
}

@media (max-width: 639px) {

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3) {
    transform: none;
  }
}

.gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0.75rem 2.5rem;
  background: var(--white);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0.75rem 0.75rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s ease;
}

.gallery__item:hover::before {
  border-color: rgba(0, 0, 0, 0.2);
}

.gallery__item .img-cover {
  aspect-ratio: var(--aspect-gallery);
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: transform 1.1s var(--ease), filter 0.6s ease;
}

.gallery__item:hover .img-cover {
  transform: scale(1.03);
  filter: grayscale(15%);
}

.gallery__item.is-placeholder {
  background: #e0e0e0;
}

.gallery__item.is-placeholder .img-cover {
  opacity: 0;
}

/* ── Marquee Band ── */
.marquee-band {
  overflow: hidden;
  background: var(--black);
  padding-block: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-text {
    animation: none;
  }
}

/* ── Social ── */
.section--social {
  background: linear-gradient(165deg, #121212 0%, var(--black) 45%, #0d0d0d 100%);
  color: var(--white);
  padding-block: clamp(5rem, 12vw, 7rem);
}

.section--social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section--social>.wrap {
  position: relative;
  z-index: 1;
}

.section--social .section__label {
  color: rgba(255, 255, 255, 0.45);
}

.section--social .section__title {
  color: var(--white);
}

.section--social .section__rule {
  background: rgba(255, 255, 255, 0.25);
}

.social-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  max-width: 48rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .social-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.25rem 1.5rem;
  background: var(--black);
  text-align: center;
  transition: background 0.35s var(--ease);
}

.social-card:hover {
  background: var(--black-soft);
}

.social-card__platform {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.social-card__handle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: letter-spacing 0.35s var(--ease);
}

.social-card:hover .social-card__handle {
  letter-spacing: 0.08em;
}

/* ── Contact / Order ── */
.section--contact {
  padding: 0;
  background: var(--cream);
}

.contact__band {
  background: linear-gradient(180deg, var(--stone) 0%, var(--black) 18%, var(--black) 100%);
  padding-block: clamp(5rem, 14vw, 8rem);
  position: relative;
}

.contact__band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.contact {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact__text {
  margin: 1.75rem auto 0;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact__action {
  margin-top: 2.75rem;
}

/* ── Footer ── */
.site-footer {
  padding-block: 2.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black);
  color: var(--white);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.site-footer__nav a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: var(--white);
}

.site-footer__copy {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Tighten Selected Pieces spacing ── */
.section--featured .section__head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section--featured {
  padding-block: clamp(3rem, 7vw, 5rem);
}

/* ── Tighten Lookbook spacing ── */
.section--lookbook {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.section--lookbook .section__head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

/* ── Fix Instax card — reduce bottom border thickness ── */
.gallery__item {
  padding: 0.75rem 0.75rem 1.25rem;
}

.gallery__item::before {
  inset: 0.75rem 0.75rem 1.25rem;
}
/* ── Section dividers ── */
.section--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(72rem, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  z-index: 1;
}

.section--lookbook::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(72rem, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  z-index: 1;
}

/* ── Cursor upgrade — luxury feel ── */
a,
button {
  cursor: pointer;
}

.product__link {
  cursor: none;
}

/* ── Hero scroll indicator ── */
.hero::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  z-index: 2;
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scaleY(1);
    transform-origin: top;
  }
}

/* ── Make the second marquee slightly different speed ── */
.marquee-band:last-of-type .marquee-text {
  animation-duration: 28s;
  animation-direction: reverse;
}

/* ── Footer brand larger ── */
.site-footer__brand {
  font-size: 1.5rem;
  opacity: 0.9;
}