/* ===================================================
   Melkworks — Brand Landing Page Redesign
   Brand: retro-futurist mid-century space-age
   Palette: Navy #1A2B4C, Turquoise #40E0D0, Coral #FF6F61, Cream #FDF6EC
   Fonts: Bebas Neue (display) · DM Sans (body)
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1A2B4C;
  --navy-deep:  #0f1a2e;
  --navy-mid:   #162338;
  --teal:       #40E0D0;
  --teal-dim:   rgba(64, 224, 208, 0.12);
  --coral:      #FF6F61;
  --cream:      #FDF6EC;
  --cream-dk:   #ece3d3;
  --silver:     #b0aaa0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --gutter: clamp(1.5rem, 5vw, 5rem);
  --max-w: 1200px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--white); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

a { color: inherit; }

/* ===================================================
   NAVIGATION — Sticky frosted glass
   =================================================== */
.tl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 64px;
  background: rgba(15, 26, 46, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--teal-dim);
}

.tl-nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
}
.tl-nav__works { color: var(--teal); }

.tl-nav__right { display: flex; align-items: center; gap: 1.25rem; }

.tl-nav__tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.65;
}

.tl-nav__cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
  border: 1px solid rgba(64, 224, 208, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.tl-nav__cta:hover { background: var(--teal); color: var(--navy-deep); }

/* ===================================================
   HERO — Full-bleed Gothic Space Pinup
   =================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__artwork {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__artwork::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.97) 0%,
    rgba(10, 10, 10, 0.70) 30%,
    rgba(10, 10, 10, 0.18) 65%,
    transparent 100%
  );
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem);
}

.hero__content { max-width: 780px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
  opacity: 0.85;
}
.hero__eyebrow-sep { color: rgba(64,224,208,0.4); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11.5vw, 9rem);
  line-height: 0.93;
  letter-spacing: 0.025em;
  color: var(--white);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}
.hero__title-top { color: var(--white); }
.hero__title-mid { color: var(--teal); }
.hero__title-bot { color: var(--cream); opacity: 0.7; font-size: 0.75em; }

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(253, 246, 236, 0.60);
  max-width: 480px;
}

/* Scroll indicator */
.hero__scroll-btn {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 2;
  opacity: 0.45;
  transition: opacity 0.2s;
  text-decoration: none;
  display: block;
}
.hero__scroll-btn:hover { opacity: 0.8; }

/* ===================================================
   MANIFESTO BAR — Teal text strip
   =================================================== */
.manifesto-bar {
  background: var(--navy);
  border-top: 1px solid var(--teal-dim);
  border-bottom: 1px solid var(--teal-dim);
  padding: 0.85rem var(--gutter);
}
.manifesto-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}
.manifesto-bar__sep { color: rgba(64,224,208,0.3); }

/* ===================================================
   PRODUCT DARK — Rocket Rider section
   =================================================== */
.product-dark {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.product-dark__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: stretch;
  min-height: 600px;
}

.product-dark__art-col {
  position: relative;
  overflow: hidden;
  background: var(--cream-dk);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-dark__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  min-height: 500px;
}
.product-dark__art-col:hover .product-dark__art { transform: scale(1.03); }
.product-dark__art-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(253,246,236,0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
}

.product-dark__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  background: var(--navy-mid);
  border-left: 1px solid var(--teal-dim);
}

.product-dark__num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
  letter-spacing: 0.05em;
  margin-bottom: -0.75rem;
  margin-left: -0.1rem;
}

.product-dark__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.product-dark__tagline {
  font-size: 0.875rem;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.product-dark__desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.72;
  color: rgba(253, 246, 236, 0.62);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.product-dark__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(64, 224, 208, 0.1);
}
.product-dark__detail { display: flex; flex-direction: column; gap: 0.2rem; }
.product-dark__detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
}
.product-dark__detail-val {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
}
.product-dark__detail-val--accent { color: var(--coral); }

.product-dark__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
  border: 1px solid rgba(64, 224, 208, 0.35);
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.product-dark__cta:hover { background: var(--teal); color: var(--navy-deep); }

/* ===================================================
   PRODUCT LIGHT — Colony Pilot section (inverted)
   =================================================== */
.product-light {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.product-light__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: stretch;
  min-height: 600px;
}

.product-light__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  background: var(--cream);
  border-right: 1px solid rgba(26, 43, 76, 0.08);
  order: -1;
}

.product-light__num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.08;
  letter-spacing: 0.05em;
  margin-bottom: -0.75rem;
  margin-left: -0.1rem;
}

.product-light__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.product-light__tagline {
  font-size: 0.875rem;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.product-light__desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.72;
  color: rgba(26, 43, 76, 0.55);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.product-light__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 43, 76, 0.08);
}
.product-light__detail { display: flex; flex-direction: column; gap: 0.2rem; }
.product-light__detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
}
.product-light__detail-val {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.product-light__detail-val--accent { color: var(--coral); }

.product-light__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid rgba(26, 43, 76, 0.25);
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.product-light__cta:hover { background: var(--navy); color: var(--cream); }

.product-light__art-col {
  position: relative;
  overflow: hidden;
  background: var(--cream-dk);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-light__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  min-height: 500px;
}
.product-light__art-col:hover .product-light__art { transform: scale(1.03); }
.product-light__art-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(253,246,236,0.8);
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
}

/* ===================================================
   BRAND STORY — Deep navy, large quote
   =================================================== */
.brand-story {
  background: var(--navy-deep);
  padding: clamp(6rem, 13vw, 10rem) var(--gutter);
  text-align: center;
}
.brand-story__inner { max-width: 840px; margin: 0 auto; }

.brand-story__label {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 2rem;
}

.brand-story__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--teal);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.brand-story__divider {
  width: 60px;
  height: 1px;
  background: var(--teal);
  opacity: 0.2;
  margin: 0 auto 2.5rem;
}

.brand-story__body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: rgba(253, 246, 236, 0.58);
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.brand-story__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(64, 224, 208, 0.08);
}
.brand-story__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 3rem;
}
.brand-story__stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(64, 224, 208, 0.12);
}
.brand-story__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1;
}
.brand-story__stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
}

/* ===================================================
   COLLECTION GRID — Cream background
   =================================================== */
.collection {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.collection__header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 7vw, 5rem);
}
.collection__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.collection__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.collection__sub {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.5;
  font-style: italic;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.collection__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(26, 43, 76, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.collection__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(26, 43, 76, 0.12);
}

.collection__card-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-dk);
  position: relative;
}
.collection__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.collection__card:hover .collection__card-img { transform: scale(1.06); }

.collection__card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.collection__card-num {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.collection__card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}
.collection__card-type {
  font-size: 0.72rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  margin-bottom: 1.25rem;
  flex: 1;
}
.collection__card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.collection__card-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--teal);
  padding: 0.3rem 0.75rem;
  border-radius: 1px;
  font-weight: 600;
}

/* ===================================================
   WAITLIST — Split with background image
   =================================================== */
.waitlist {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.waitlist__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.waitlist__art {
  position: relative;
  overflow: hidden;
}
.waitlist__art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.45;
  filter: saturate(0.8) brightness(0.6);
}
.waitlist__art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,43,76,0.85) 0%, rgba(26,43,76,0.2) 100%);
}

.waitlist__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.waitlist__eyebrow { margin-bottom: 1.25rem; }
.waitlist__badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--teal);
  padding: 0.28rem 0.8rem;
  border-radius: 1px;
  font-weight: 600;
}

.waitlist__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
}
.waitlist__headline-accent { color: var(--coral); }

.waitlist__sub {
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  color: rgba(253, 246, 236, 0.62);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.waitlist-form { width: 100%; max-width: 460px; }

.waitlist-form__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.waitlist-form__input {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 1.15rem;
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(253, 246, 236, 0.18);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.waitlist-form__input::placeholder { color: rgba(253, 246, 236, 0.32); }
.waitlist-form__input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(253, 246, 236, 0.1);
}

.waitlist-form__btn {
  padding: 0.85rem 1.6rem;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.waitlist-form__btn:hover { background: #ff8577; }
.waitlist-form__btn:active { transform: scale(0.98); }
.waitlist-form__btn:disabled { opacity: 0.55; cursor: not-allowed; }

.waitlist-form__error {
  font-size: 0.78rem;
  color: var(--coral);
  margin-top: 0.6rem;
  padding: 0.45rem 0.75rem;
  border-left: 2px solid var(--coral);
  background: rgba(255, 111, 97, 0.08);
  width: 100%;
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--teal);
  margin-top: 0.9rem;
  font-weight: 500;
}

.waitlist__fine {
  font-size: 0.72rem;
  color: var(--silver);
  opacity: 0.4;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* ===================================================
   PREMIUM — Cream section, premium-tier capture
   =================================================== */
.premium {
  background: var(--cream);
  padding: clamp(5rem, 9vw, 7rem) var(--gutter);
  border-top: 1px solid rgba(26, 43, 76, 0.08);
  border-bottom: 1px solid rgba(26, 43, 76, 0.08);
}
.premium__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}

.premium__copy {
  display: flex;
  flex-direction: column;
}

.premium__eyebrow { margin-bottom: 0.6rem; }
.premium__badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--coral);
  padding: 0.28rem 0.8rem;
  border-radius: 1px;
  font-weight: 600;
}

.premium__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}
.premium__headline-accent {
  color: var(--coral);
  font-style: italic;
  font-size: 1.05em;
  margin-top: 0.15em;
}

.premium__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--navy);
  opacity: 0.62;
  line-height: 1.65;
  max-width: 460px;
}

.premium__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 43, 76, 0.1);
}
.premium__spec { display: flex; flex-direction: column; gap: 0.35rem; }
.premium__spec-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.42;
}
.premium__spec-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.1;
}
.premium__spec-val--accent { color: var(--coral); }

.premium__form-widget {
  max-width: 480px;
  width: 100%;
}
.premium-form { width: 100%; }

.premium-form__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.premium-form__input {
  flex: 1;
  min-width: 130px;
  padding: 0.85rem 1.15rem;
  background: var(--white);
  border: 1px solid rgba(26, 43, 76, 0.18);
  border-radius: 2px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.premium-form__input::placeholder { color: rgba(26, 43, 76, 0.42); }
.premium-form__input:focus {
  outline: none;
  border-color: var(--coral);
}

.premium-form__btn {
  padding: 0.85rem 1.6rem;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.premium-form__btn:hover { background: var(--navy-deep); }
.premium-form__btn:active { transform: scale(0.98); }
.premium-form__btn:disabled { opacity: 0.55; cursor: not-allowed; }

.premium-form__error {
  font-size: 0.78rem;
  color: var(--coral);
  margin-top: 0.6rem;
  padding: 0.45rem 0.75rem;
  border-left: 2px solid var(--coral);
  background: rgba(255, 111, 97, 0.06);
  width: 100%;
}

.premium-success {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--navy);
  background: rgba(64, 224, 208, 0.18);
  padding: 0.75rem 1rem;
  border-left: 2px solid var(--coral);
  font-weight: 500;
}

.premium__fine {
  font-size: 0.72rem;
  color: var(--navy);
  opacity: 0.42;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--navy-deep);
  padding: 2rem var(--gutter);
  border-top: 1px solid rgba(64, 224, 208, 0.08);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 0.3rem; }
.site-footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
}
.site-footer__works { color: var(--teal); }
.site-footer__tagline {
  font-size: 0.75rem;
  color: var(--silver);
  font-style: italic;
  opacity: 0.45;
}
.site-footer__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-footer__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}
.site-footer__status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.site-footer__copy {
  font-size: 0.7rem;
  color: var(--silver);
  opacity: 0.3;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .product-dark__inner,
  .product-light__inner {
    grid-template-columns: 1fr;
  }
  .product-dark__art-col,
  .product-light__art-col { min-height: 340px; }
  .product-light__text-col { order: 0; border-right: none; border-left: 1px solid rgba(26, 43, 76, 0.08); }
  .product-dark__text-col { border-left: none; }

  .waitlist__inner { grid-template-columns: 1fr; }
  .waitlist__art { min-height: 280px; }
  .waitlist__art-overlay { background: linear-gradient(to bottom, rgba(26,43,76,0.3) 0%, rgba(26,43,76,0.85) 100%); }

  .premium__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .tl-nav__tag { display: none; }
  .collection__grid { grid-template-columns: 1fr 1fr; }
  .collection__card:last-child { display: none; }
  .brand-story__stat { padding: 0 2rem; }
  .brand-story__stat-sep { height: 40px; }
}

@media (max-width: 480px) {
  .waitlist-form__row { flex-direction: column; }
  .waitlist-form__input { min-width: unset; }
  .waitlist-form__btn { width: 100%; }

  .collection__grid { grid-template-columns: 1fr; }
  .collection__card:last-child { display: flex; }

  .product-dark__details { grid-template-columns: 1fr; }
  .product-light__details { grid-template-columns: 1fr; }

  .premium-form__row { flex-direction: column; }
  .premium-form__input { min-width: unset; }
  .premium-form__btn { width: 100%; }
  .premium__specs { grid-template-columns: 1fr; }

  .brand-story__stats { gap: 0; }
  .brand-story__stat { padding: 0 1.5rem; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__right { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}