* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --cream: #f4efe6;
  --muted: rgba(244, 239, 230, 0.72);
  --line: rgba(244, 239, 230, 0.18);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--cream);
}

body {
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 27% 49%, rgba(255, 255, 255, 0.055), transparent 22%),
    linear-gradient(90deg, #050505 0%, #050505 36%, #070707 100%);
}

/* Brighter, larger hoodie placement to match the reference image */
.hoodie-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 62vw;
  min-width: 760px;
  height: 100%;
  background-image: url("assets/hoodie-crop.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: contrast(1.28) brightness(1.22) saturate(1.03);
  z-index: 1;
}

.hoodie-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 35%, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,0.07), transparent 24%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.98) 29%, rgba(5,5,5,0.55) 48%, rgba(5,5,5,0.05) 100%),
    radial-gradient(circle at 72% 50%, transparent 0%, rgba(0,0,0,0.10) 64%);
  z-index: 2;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 5;
  height: 138px;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  padding: 36px 44px 0;
}

.logo {
  color: var(--cream);
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  line-height: .78;
  letter-spacing: -.055em;
  font-size: clamp(36px, 4vw, 58px);
  display: inline-flex;
  flex-direction: column;
  width: max-content;
}

.logo i {
  font-family: Georgia, serif;
  font-style: normal;
  font-size: .48em;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0;
  margin-top: 8px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(38px, 5.6vw, 76px);
  padding-top: 18px;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .32em;
  opacity: .9;
}

/* Reference-style layout: left column wider so COMING SOON stays one line */
.hero-content {
  position: relative;
  z-index: 5;
  width: min(760px, 50vw);
  margin-left: clamp(80px, 8.8vw, 145px);
  margin-top: clamp(66px, 10.2vh, 112px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: clamp(12px, 0.98vw, 16px);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(88px, 8.45vw, 132px);
  letter-spacing: .055em;
  line-height: .88;
  white-space: nowrap;
  color: var(--cream);
  text-shadow: 0 0 18px rgba(255,255,255,.08);
}

.spark {
  font-family: Georgia, serif;
  font-size: clamp(42px, 3.7vw, 58px);
  line-height: 1;
  margin: 28px 0 22px;
}

.copy {
  margin: 0 auto;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.5;
  letter-spacing: .035em;
  color: rgba(244,239,230,.92);
}

.waitlist-button {
  margin-top: 38px;
  width: min(560px, 83%);
  height: 68px;
  border: 1px solid rgba(255,255,255,.25);
  background: linear-gradient(180deg, #fbf6ed, #e6ded2);
  color: #080808;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  transition: transform .18s ease, filter .18s ease;
}

.waitlist-button:hover {
  transform: translateY(-2px);
  filter: brightness(.94);
}

.micro {
  margin: 26px 0 0;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: clamp(10px, .82vw, 13px);
  font-weight: 700;
  color: rgba(244,239,230,.86);
}

.footer {
  position: absolute;
  z-index: 5;
  left: 46px;
  right: 46px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.socials {
  display: flex;
  gap: 30px;
  align-items: center;
}

.socials a {
  color: var(--cream);
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
}

.footer p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 600;
  color: rgba(244,239,230,.72);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(13,13,13,.97), rgba(0,0,0,.97));
  box-shadow: 0 30px 90px rgba(0,0,0,.75);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 30px;
  cursor: pointer;
  opacity: .75;
}

.modal-eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.modal-box h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
}

.modal-copy {
  margin: 18px auto 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.popup-form {
  display: grid;
  grid-template-columns: 1fr 130px;
  height: 58px;
  border: 1px solid rgba(244,239,230,.22);
}

.popup-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: .12em;
}

.popup-form input::placeholder {
  color: rgba(244,239,230,.46);
}

.popup-form button {
  border: 0;
  background: var(--cream);
  color: #080808;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.popup-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.hidden-field {
  display: none;
}

.success-message {
  display: none;
  margin: 22px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.success-message.show {
  display: block;
}


/* Vision page */
.vision-page {
  background:
    radial-gradient(circle at 74% 24%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(135deg, #050505 0%, #090909 48%, #000 100%);
}

.vision-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 120px;
}

.vision-hoodie-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hoodie-crop.png");
  background-size: cover;
  background-position: 74% center;
  background-repeat: no-repeat;
  filter: contrast(1.35) brightness(.86) saturate(1.02);
  opacity: .50;
  z-index: 1;
}

.vision-hoodie-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.14) 100%);
}

.vision-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.84) 100%),
    radial-gradient(circle at 31% 43%, rgba(244,239,230,.06), transparent 30%);
}

.vision-content {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100vw - 88px));
  margin: clamp(44px, 7vh, 76px) auto 0;
}

.vision-content .eyebrow,
.vision-content .spark {
  text-align: center;
}

.vision-content h1 {
  text-align: center;
  font-size: clamp(86px, 12vw, 176px);
  line-height: .82;
}

.vision-kicker {
  margin: 0 auto 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 900;
  color: rgba(244,239,230,.78);
}

.vision-lead {
  width: min(800px, 100%);
  margin: 0 auto;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3.1vw, 45px);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: rgba(244,239,230,.95);
}

.vision-statement {
  width: min(800px, 100%);
  margin: 34px auto 46px;
  padding: 24px 28px;
  border: 1px solid rgba(244,239,230,.15);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}

.vision-statement p {
  margin: 0;
  color: rgba(244,239,230,.78);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.vision-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(244,239,230,.15);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.vision-grid span {
  display: block;
  margin-bottom: 34px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .30em;
  color: rgba(244,239,230,.48);
}

.vision-grid h2 {
  margin: 0 0 16px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vision-grid p {
  margin: 0;
  color: rgba(244,239,230,.72);
  font-size: 14px;
  line-height: 1.72;
}

.vision-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.vision-cta {
  width: min(430px, 100%);
  margin-top: 0;
}

.ghost-link {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  border-bottom: 1px solid rgba(244,239,230,.42);
  padding-bottom: 8px;
  opacity: .88;
}

@media (max-width: 1100px) {
  .hero-content {
    width: min(700px, 56vw);
    margin-left: clamp(44px, 6vw, 90px);
  }

  h1 {
    font-size: clamp(78px, 8vw, 112px);
  }

  .hoodie-bg {
    width: 64vw;
    min-width: 640px;
  }
}

@media (max-width: 1100px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid article {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  body {
    overflow-y: auto;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding-bottom: 90px;
  }

  .hoodie-bg {
    width: 100%;
    min-width: 0;
    opacity: .52;
    background-size: cover;
    background-position: 70% center;
  }

  .hoodie-bg::after {
    background:
      radial-gradient(circle at 55% 35%, rgba(255,255,255,0.10), transparent 36%),
      linear-gradient(90deg, rgba(255,255,255,0.04), transparent 26%);
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(5,5,5,.70) 0%, rgba(5,5,5,.92) 58%, rgba(5,5,5,.98) 100%),
      linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.70) 52%, rgba(5,5,5,.38) 100%);
  }

  .nav {
    grid-template-columns: 155px 1fr;
    height: auto;
    padding: 24px 22px 0;
    gap: 16px;
  }

  .logo {
    font-size: clamp(34px, 7vw, 46px);
  }

  .nav-links {
    gap: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 14px 0 8px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: .24em;
    white-space: nowrap;
  }


  .hero-content {
    width: min(700px, calc(100vw - 44px));
    margin: 92px auto 0;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: .32em;
  }

  h1 {
    white-space: normal;
    font-size: clamp(76px, 17vw, 126px);
    line-height: .86;
  }

  .copy {
    font-size: 17px;
  }

  .waitlist-button {
    width: min(520px, 92%);
    height: 66px;
  }

  .footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 82px 22px 0;
  }

  .vision-hero {
    min-height: 100svh;
    padding-bottom: 86px;
  }

  .vision-hoodie-bg {
    opacity: .34;
    background-position: 66% center;
  }

  .vision-content {
    width: min(760px, calc(100vw - 44px));
    margin-top: 74px;
  }
}


@media (max-width: 620px) {
  .hero {
    padding-bottom: 70px;
  }

  .hoodie-bg {
    opacity: .38;
    background-position: 69% center;
  }

  .nav {
    grid-template-columns: 1fr;
    padding: 22px 18px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    gap: 18px;
    padding-top: 18px;
  }

  .hero-content {
    width: calc(100vw - 34px);
    margin-top: 70px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 10px;
    letter-spacing: .24em;
  }

  h1 {
    font-size: clamp(68px, 23vw, 104px);
    letter-spacing: .045em;
  }

  .spark {
    margin: 22px 0 18px;
    font-size: 42px;
  }

  .copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .waitlist-button {
    width: 100%;
    height: 62px;
    margin-top: 32px;
    font-size: 13px;
    letter-spacing: .18em;
  }

  .micro {
    font-size: 10px;
    letter-spacing: .22em;
    line-height: 1.6;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-top: 70px;
  }

  .socials {
    gap: 24px;
  }

  .footer p {
    font-size: 9px;
    letter-spacing: .18em;
    line-height: 1.7;
  }

  .vision-content {
    width: calc(100vw - 34px);
    margin-top: 58px;
  }

  .vision-content h1 {
    font-size: clamp(70px, 22vw, 104px);
  }

  .vision-kicker {
    letter-spacing: .22em;
    line-height: 1.7;
  }

  .vision-lead {
    font-size: 25px;
  }

  .vision-statement {
    padding: 22px 18px;
    margin-bottom: 28px;
  }

  .vision-grid {
    gap: 14px;
  }

  .vision-grid article {
    padding: 24px 20px;
  }

  .vision-grid span {
    margin-bottom: 24px;
  }

  .ghost-link {
    font-size: 10px;
  }

  .modal-box {
    padding: 34px 22px;
  }

  .popup-form {
    grid-template-columns: 1fr;
    height: auto;
  }

  .popup-form input,
  .popup-form button {
    height: 56px;
  }
}

@media (max-width: 380px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 9px;
    letter-spacing: .18em;
  }

  h1 {
    font-size: 64px;
  }
}


/* Countdown timer - lives inside .hero-content so it stays above the hoodie image */
.countdown-wrapper {
  position: relative;
  z-index: 6;
  margin: 34px auto 0;
  width: min(560px, 92%);
  text-align: center;
}

.countdown-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: clamp(9px, .72vw, 11px);
  font-weight: 900;
  color: rgba(244,239,230,.76);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.time-box {
  min-width: 0;
  height: 82px;
  border: 1px solid rgba(244,239,230,.16);
  background: rgba(5,5,5,.52);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.time-box span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(31px, 3vw, 44px);
  line-height: .9;
  color: var(--cream);
  letter-spacing: .04em;
}

.time-box small {
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  color: rgba(244,239,230,.62);
}

.countdown-live {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: .08em;
}

@media (max-width: 620px) {
  .countdown-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .countdown {
    gap: 8px;
  }

  .time-box {
    height: 72px;
  }

  .time-box small {
    font-size: 8px;
    letter-spacing: .14em;
  }
}


/* Lookbook page */
.lookbook-page {
  background: #050505;
  color: var(--cream);
  overflow-x: hidden;
}

.active-link {
  border-bottom: 1px solid rgba(244,239,230,.68);
  padding-bottom: 8px;
}

.lookbook-hero {
  position: relative;
  min-height: 680px;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 42%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #020202 0%, #070707 58%, #000 100%);
}

.lookbook-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/lookbook-main-mock.png");
  background-size: cover;
  background-position: center top;
  filter: brightness(1.12) contrast(1.08) saturate(1.05);
  z-index: 1;
}

.lookbook-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.22) 70%, #050505 100%);
  pointer-events: none;
}

.lookbook-nav {
  position: relative;
  z-index: 5;
}

.lookbook-hero-content {
  position: relative;
  z-index: 5;
  width: min(680px, calc(100vw - 72px));
  margin-left: clamp(42px, 8vw, 150px);
  margin-top: clamp(70px, 12vh, 128px);
  text-align: center;
}

.lookbook-hero-content h1,
.lookbook-final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(72px, 10vw, 150px);
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 0 30px rgba(255,255,255,.08);
}

.lookbook-date {
  margin: 22px 0 0;
  text-transform: uppercase;
  letter-spacing: .44em;
  font-size: clamp(13px, 1.25vw, 20px);
  font-weight: 500;
  color: rgba(244,239,230,.88);
}

.lookbook-button {
  width: min(430px, 90%);
  background: transparent;
  border: 1px solid rgba(244,239,230,.52);
  color: var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,.36);
}

.lookbook-button:hover {
  background: rgba(244,239,230,.08);
}

.lookbook-section {
  position: relative;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 52px);
  border-top: 1px solid rgba(244,239,230,.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.045), transparent 35%),
    #050505;
}

.section-kicker {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: clamp(18px, 2vw, 32px);
  color: rgba(244,239,230,.88);
}

.section-spark {
  margin: 8px 0 28px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 28px;
  color: rgba(244,239,230,.78);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.product-card {
  min-height: 390px;
  border: 1px solid rgba(244,239,230,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
  padding: 18px 18px 24px;
  text-align: center;
}

.product-image {
  height: 270px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.55));
}

.product-hoodie { background-image: url("assets/hoodie-back.png"); }
.product-tee { background-image: url("assets/tee-collection.png"); background-size: 175%; background-position: 49% 58%; }
.product-shorts { background-image: url("assets/shorts-collection.png"); background-size: 182%; background-position: 48% 26%; }
.product-shades { background-image: url("assets/shades-collection.png"); background-size: 115%; background-position: center center; }

.product-card h2 {
  margin: 14px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 18px;
}

.product-card p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 10px;
  font-weight: 800;
  color: rgba(244,239,230,.62);
}

.full-art-section {
  display: grid;
  gap: 28px;
  padding-top: 34px;
}

.collection-card {
  display: grid;
  grid-template-columns: .36fr .64fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(244,239,230,.13);
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}

.collection-card h2 {
  margin: 16px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: clamp(40px, 5vw, 84px);
  line-height: .88;
  font-weight: 400;
}

.collection-card .section-kicker {
  text-align: left;
  font-size: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
}

.collection-card img {
  display: block;
  width: 100%;
  border: 1px solid rgba(244,239,230,.12);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.reverse-card {
  grid-template-columns: .64fr .36fr;
}

.reverse-card div {
  order: 2;
}

.reverse-card img {
  order: 1;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.details-grid article {
  min-height: 260px;
  text-align: center;
}

.details-grid img,
.detail-texture,
.detail-label {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244,239,230,.13);
  background: #080808;
}

.detail-star {
  background:
    radial-gradient(circle at 58% 45%, rgba(255,255,255,.12), transparent 18%),
    url("assets/hoodie-crop.png") center / cover;
}

.detail-star::before {
  content: "✧";
  font-family: Georgia, serif;
  font-size: 78px;
  color: rgba(244,239,230,.82);
}

.detail-fabric {
  background-image: url("assets/hoodie-crop.png");
  background-size: 175%;
  background-position: 70% 45%;
  filter: contrast(1.25) brightness(.78);
}

.detail-label {
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: .04em;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    #050505;
}

.detail-label span {
  display: block;
  margin-top: 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  line-height: 1.5;
  color: rgba(244,239,230,.72);
}

.details-grid p {
  margin: 16px 0 0;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 800;
  color: rgba(244,239,230,.74);
}

.lookbook-final-cta {
  padding: clamp(70px, 9vw, 130px) 22px;
  text-align: center;
  border-top: 1px solid rgba(244,239,230,.12);
  background:
    linear-gradient(180deg, rgba(0,0,0,.40), #050505),
    url("assets/hoodie-crop.png") center / cover;
}

.lookbook-final-cta .section-kicker {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.lookbook-final-cta h2 {
  margin-top: 26px;
  font-size: clamp(54px, 8vw, 118px);
}

.lookbook-final-cta p:not(.section-kicker) {
  margin: 16px 0 0;
  text-transform: uppercase;
  letter-spacing: .34em;
}

.lookbook-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 44px;
  border-top: 1px solid rgba(244,239,230,.12);
  background: #040404;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 10px;
  font-weight: 800;
  opacity: .82;
}

@media (max-width: 1050px) {
  .featured-grid,
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card,
  .reverse-card {
    grid-template-columns: 1fr;
  }

  .reverse-card div,
  .reverse-card img {
    order: initial;
  }

  .lookbook-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .lookbook-hero {
    min-height: 760px;
    height: auto;
  }

  .lookbook-hero-bg {
    background-position: 62% top;
    opacity: .72;
  }

  .lookbook-hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.78) 54%, #050505 100%),
      linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.36));
  }

  .lookbook-hero-content {
    width: calc(100vw - 34px);
    margin: 96px auto 0;
  }

  .lookbook-hero-content h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .lookbook-date {
    letter-spacing: .26em;
    font-size: 12px;
  }

  .featured-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 330px;
  }

  .product-image {
    height: 230px;
  }

  .collection-card {
    padding: 18px;
  }

  .section-kicker {
    letter-spacing: .22em;
  }

  .lookbook-footer {
    padding: 32px 22px;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


/* UI upgrades: smooth reveal animations */
.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Product card hover effects */
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244,239,230,.12), transparent 42%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,239,230,.34);
  box-shadow: 0 34px 90px rgba(0,0,0,.48);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover .product-image {
  transform: scale(1.045);
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.70));
}

.product-image {
  transition: transform .35s ease, filter .35s ease;
}

/* Sticky glass nav for lookbook page */
.lookbook-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5,5,5,.78), rgba(5,5,5,.22));
  border-bottom: 1px solid rgba(244,239,230,.08);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244,239,230,.22);
  background: rgba(5,5,5,.38);
  color: var(--cream);
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--cream);
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 760px) {
  .nav,
  .lookbook-nav {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .menu-toggle {
    display: block;
    margin-top: 6px;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border: 1px solid rgba(244,239,230,.12);
    background: rgba(5,5,5,.86);
    backdrop-filter: blur(16px);
    transition: max-height .32s ease, padding .32s ease;
  }

  .nav-links.is-open {
    max-height: 320px;
    padding: 10px 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 11px;
    letter-spacing: .24em;
  }

  .active-link {
    border-bottom: 0;
    color: #fff;
  }
}


/* Thank you page */
.thank-you-page { background: #050505; color: var(--cream); }
.thank-you-hero { position: relative; min-height: 100vh; overflow: hidden; padding-bottom: 80px; background: #050505; }
.thank-you-bg { position: absolute; inset: 0; background-image: url("assets/lookbook-main-mock.png"); background-size: cover; background-position: center top; filter: brightness(.68) contrast(1.12) saturate(1.03); z-index: 1; }
.thank-you-shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 48%, rgba(0,0,0,.30) 100%), linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.58) 72%, #050505 100%); pointer-events: none; }
.thank-you-nav { position: relative; z-index: 5; }
.thank-you-content { position: relative; z-index: 5; width: min(760px, calc(100vw - 44px)); margin: clamp(72px, 10vh, 120px) auto 0; text-align: center; }
.thank-you-content h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(58px, 9vw, 132px); letter-spacing: .02em; line-height: .9; white-space: normal; }
.thank-you-card { width: min(620px, 100%); margin: 34px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(244,239,230,.16); background: rgba(5,5,5,.58); backdrop-filter: blur(14px); }
.thank-you-card p { margin: 0; padding: 22px 12px; border-right: 1px solid rgba(244,239,230,.12); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 900; color: rgba(244,239,230,.78); }
.thank-you-card p:last-child { border-right: 0; }
.thank-you-button { display: inline-grid; place-items: center; text-decoration: none; margin-top: 34px; }
.thank-you-ghost { display: block; width: max-content; margin: 24px auto 0; }

@media (max-width: 760px) {
  .thank-you-card { grid-template-columns: 1fr 1fr; }
  .thank-you-card p:nth-child(2) { border-right: 0; }
  .thank-you-card p { border-bottom: 1px solid rgba(244,239,230,.12); }
  .thank-you-card p:nth-child(3), .thank-you-card p:nth-child(4) { border-bottom: 0; }
}
@media (max-width: 420px) {
  .thank-you-card { grid-template-columns: 1fr; }
  .thank-you-card p { border-right: 0; }
  .thank-you-card p:nth-child(3) { border-bottom: 1px solid rgba(244,239,230,.12); }
}


/* Waitlist Counter */
.waitlist-counter{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.counter-number{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:clamp(32px,3vw,46px);
  line-height:1;
  color:var(--cream);
}
.counter-text{
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:11px;
  font-weight:800;
  color:rgba(244,239,230,.72);
  text-align:center;
}
