/* ============================================================
   MAISON ROBOTO -- Homepage
   $150K agency-level layouts. index.html only.
   ============================================================ */


/* === HERO === */

.hero-v2 {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 8rem) 0 0 0;
}

.hero-v2-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2) brightness(0.35);
}

.hero-v2-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 45%);
  pointer-events: none;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-8) clamp(6rem, 12vh, 10rem);
  max-width: var(--content-edge);
  margin: 0 auto;
  width: 100%;
}

.hero-v2-kicker {
  position: absolute;
  top: clamp(6rem, 12vh, 10rem);
  left: var(--space-8);
  z-index: 3;
}

.hero-v2-origin {
  position: absolute;
  top: clamp(6rem, 12vh, 10rem);
  right: var(--space-8);
  z-index: 3;
}

.hero-v2-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-12);
  text-transform: uppercase;
}

.hero-v2-title .line-maison {
  display: block;
  font-size: clamp(6rem, 20vw, 28rem);
  color: var(--white);
}

.hero-v2-title .line-roboto {
  display: block;
  font-size: clamp(6rem, 20vw, 28rem);
  background: var(--chrome-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-subtitle {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.hero-v2-subtitle hr {
  flex: 0 0 60px;
  height: 1px;
  background: var(--neon);
  opacity: 0.4;
  border: none;
}

.hero-v2-subtitle p {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone);
  max-width: 400px;
}

.hero-v2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-v2-scroll {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
  padding-bottom: var(--space-8);
}

.hero-v2 .hero-wireframe {
  opacity: 0.15;
  right: 2%;
  width: clamp(200px, 30vw, 420px);
}


/* === TRUST BAND === */

.trust-band {
  padding: var(--section-standard) var(--space-8);
  border-top: 1px solid rgba(57,255,20,0.04);
  border-bottom: 1px solid rgba(57,255,20,0.04);
  background: linear-gradient(135deg, rgba(20,18,15,0.95), rgba(30,25,18,0.75));
}

.trust-band-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-12);
}

.trust-logo {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.55;
  white-space: nowrap;
}


/* === STATEMENT === */

.statement-section {
  position: relative;
  padding: var(--section-dramatic) var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  max-width: var(--content-edge);
  margin: 0 auto;
  align-items: end;
}

.statement-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--white);
  max-width: 14ch;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  border-left: 2px solid rgba(57,255,20,0.2);
  padding-left: var(--space-6, 1.5rem);
}

.statement-context {
  max-width: 420px;
  padding-bottom: 0.3em;
}

.statement-context p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--bone-warm);
  margin-bottom: var(--space-6);
}


/* === DUNE DIVIDERS === */

.dune-divider {
  width: 100%;
  height: clamp(60px, 10vw, 160px);
  overflow: hidden;
  position: relative;
}

.dune-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.18) contrast(1.3);
  opacity: 0.5;
}

.dune-divider::before,
.dune-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 1;
}

.dune-divider::before {
  top: 0;
  background: linear-gradient(to bottom, var(--black), transparent);
}

.dune-divider::after {
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
}


/* === PULLQUOTE === */

.pullquote-section {
  padding: clamp(8rem, 18vh, 14rem) var(--space-8);
  text-align: center;
  position: relative;
  background: var(--tonal-cold);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Giant decorative opening quotation mark */
.pullquote-section::before {
  content: '\201C';
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24rem, 50vw, 56rem);
  line-height: 1;
  opacity: 0.06;
  background: linear-gradient(180deg, #d4af37, #c0c0c0, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Vertical accent line, right side */
.pullquote-section::after {
  content: '';
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(57,255,20,0.1) 25%, rgba(57,255,20,0.1) 75%, transparent 100%);
  pointer-events: none;
}

.pullquote-section > div {
  position: relative;
  z-index: 1;
}

.pullquote-section blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ivory);
  max-width: 780px;
  margin: 0 auto var(--space-10);
  text-wrap: balance;
}

/* Horizontal neon accent above attribution */
.pullquote-attribution {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  display: inline-block;
}

.pullquote-attribution::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(57, 255, 20, 0.3);
  margin: 0 auto var(--space-4);
}

/* Corner brackets on the pullquote container */
.pullquote-frame {
  position: absolute;
  inset: clamp(2rem, 5vh, 5rem) clamp(3rem, 6vw, 6rem);
  pointer-events: none;
  z-index: 0;
}

.pullquote-frame::before,
.pullquote-frame::after {
  content: '';
  position: absolute;
  width: clamp(20px, 3vw, 40px);
  height: clamp(20px, 3vw, 40px);
}

.pullquote-frame::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.pullquote-frame::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}


/* === COLLECTIONS HEADER === */

.collections-header {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--space-8) var(--space-16);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.collections-header-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
}

.collections-header-meta {
  text-align: right;
  padding-bottom: 0.3em;
}

.collections-header-count {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  display: block;
  margin-bottom: var(--space-3);
}


/* === EDITORIAL GRID V2 (asymmetric) === */

.editorial-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-3);
}

.editorial-grid-v2 .editorial-card:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 70vh;
}

.editorial-grid-v2 .editorial-card:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  aspect-ratio: 4/5;
}

.editorial-grid-v2 .editorial-card:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
  aspect-ratio: 16/10;
}

.editorial-grid-v2 .editorial-card:nth-child(4) {
  grid-column: 1 / 5;
  aspect-ratio: 3/4;
}

.editorial-grid-v2 .editorial-card:nth-child(5) {
  grid-column: 5 / 9;
  aspect-ratio: 3/4;
}

.editorial-grid-v2 .editorial-card:nth-child(6) {
  grid-column: 9 / 13;
  aspect-ratio: 3/4;
}


/* === EDITORIAL CARD TYPE LABEL === */

.editorial-card-type {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.6;
  margin-bottom: var(--space-2);
  display: block;
}


/* === PHILOSOPHY === */

.philosophy-section {
  position: relative;
  padding: var(--section-spacious) 0;
  overflow: hidden;
}

.philosophy-layout {
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr 5fr 4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 var(--space-4);
}

.philosophy-kicker {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: var(--space-6);
}

.philosophy-headline {
  grid-column: 2 / 4;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--space-10);
  text-transform: uppercase;
}

.philosophy-body {
  grid-column: 2;
  grid-row: 3;
  max-width: 500px;
}

.philosophy-image {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
  position: relative;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.65);
}

.philosophy-image-label {
  position: absolute;
  bottom: var(--space-6);
  left: calc(-1 * var(--space-12));
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.4;
  writing-mode: vertical-rl;
}


/* === METRICS === */

.metrics-section {
  padding: var(--section-standard) 0;
  background: var(--tonal-cold);
  position: relative;
}

.metrics-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: url('../images/world/rock-right.webp') right bottom / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.metrics-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.metric-item {
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(57, 255, 20, 0.06);
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}


/* === THE MAKING -- EDITORIAL PROCESS SHOWCASE === */

.making-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--section-dramatic) 0;
  overflow: hidden;
  background: #010108;
}

/* Ghost typographic watermark */
.making-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 28vw, 42rem);
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Corner bracket frame */
.making-frame {
  position: absolute;
  inset: clamp(1.5rem, 3vh, 3rem) clamp(1.5rem, 3vw, 3rem);
  pointer-events: none;
  z-index: 2;
}

.making-frame::before,
.making-frame::after {
  content: '';
  position: absolute;
  width: clamp(24px, 3.5vw, 56px);
  height: clamp(24px, 3.5vw, 56px);
}

.making-frame::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  border-left: 1px solid rgba(57, 255, 20, 0.1);
}

.making-frame::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  border-right: 1px solid rgba(57, 255, 20, 0.1);
}

/* Main layout -- asymmetric 2-panel */
.making-layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--space-8);
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left visual panel */
.making-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.making-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.45);
}

/* Gradient overlay on image */
.making-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,1,8,0.4) 0%, transparent 30%, transparent 60%, rgba(1,1,8,0.6) 100%),
    linear-gradient(90deg, transparent 70%, rgba(1,1,8,0.8) 100%);
  pointer-events: none;
}

/* Coordinate overlay on the image */
.making-visual-overlay {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-6);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.making-coord {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--neon);
  opacity: 0.35;
}

.making-coord-label {
  font-family: var(--font-mono);
  font-size: 0.4375rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-top: var(--space-2);
}

/* Thin vertical accent line on right edge of image */
.making-visual::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(57,255,20,0.15), transparent);
  z-index: 2;
}

/* Right content panel */
.making-content {
  padding: var(--space-8) 0;
}

/* Hero stat: the big "16 WEEKS" */
.making-hero-stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.making-hero-number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 14rem);
  font-weight: 800;
  line-height: 0.75;
  letter-spacing: -0.05em;
  background: var(--chrome-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.making-hero-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-bottom: 0.4em;
}

.making-hero-unit {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.making-hero-sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
}

/* Neon divider line */
.making-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(57, 255, 20, 0.35), rgba(57, 255, 20, 0.03));
  margin-bottom: var(--space-12);
}

/* Process steps -- 2x2 grid */
.making-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10) var(--space-8);
  margin-bottom: var(--space-12);
}

.making-step {
  position: relative;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.making-step-num {
  font-family: var(--font-mono);
  font-size: 0.4375rem;
  letter-spacing: 0.35em;
  color: var(--neon);
  opacity: 0.5;
  display: block;
  margin-bottom: var(--space-3);
}

.making-step-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-1);
}

.making-step-dur {
  font-family: var(--font-mono);
  font-size: 0.4375rem;
  letter-spacing: 0.25em;
  color: var(--gray);
  display: block;
  margin-bottom: var(--space-3);
}

.making-step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--silver);
}

/* Footer */
.making-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.making-footer-stat {
  font-family: var(--font-mono);
  font-size: 0.4375rem;
  letter-spacing: 0.25em;
  color: var(--gray);
  text-transform: uppercase;
}


/* === MARQUEE TICKER === */

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-band {
  overflow: hidden;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: #010108;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-text {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.25;
  white-space: nowrap;
  flex-shrink: 0;
}


/* === RESPONSIVE -- THE MAKING === */

@media (max-width: 1023px) {
  .making-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .making-visual {
    aspect-ratio: 16/10;
    max-height: 50vh;
  }

  .making-hero-number {
    font-size: clamp(5rem, 20vw, 10rem);
  }

  .making-backdrop {
    font-size: clamp(8rem, 30vw, 18rem);
  }
}

@media (max-width: 639px) {
  .making-section {
    min-height: auto;
    padding: var(--section-spacious) 0;
  }

  .making-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .making-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .making-hero-stat {
    flex-wrap: wrap;
  }

  .making-visual::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}


/* === CONFIGURE CTA === */

.configure-cta {
  position: relative;
  padding: var(--section-dramatic) var(--space-8) var(--section-spacious);
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}

.configure-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.configure-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: grayscale(1) contrast(1.2);
}

.configure-cta-rock-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28%;
  z-index: 1;
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
}

.configure-cta-rock-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22%;
  z-index: 1;
  opacity: 0.12;
  filter: grayscale(1);
  transform: scaleX(-1);
  pointer-events: none;
}

.configure-cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.configure-cta-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--white);
  margin-bottom: var(--space-10);
  text-transform: uppercase;
}

.configure-cta-steps {
  display: flex;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.configure-step {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}

.configure-step-num {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--neon);
  opacity: 0.6;
  letter-spacing: 0.1em;
}

.configure-step-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  text-transform: uppercase;
}


/* === NEWSLETTER === */

.newsletter-section {
  padding: var(--section-spacious) var(--space-8);
  background: var(--tonal-warm);
  text-align: center;
}

.newsletter-section-inner {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.newsletter-subline {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bone);
  font-weight: 300;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.newsletter-form-v2 {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.newsletter-form-v2 .form-input {
  border: none;
  text-align: center;
  flex: 1;
}

.newsletter-form-v2 .form-input:focus {
  box-shadow: inset 0 0 16px rgba(57,255,20,0.04);
  border-color: rgba(57,255,20,0.25);
}

.newsletter-form-v2 button {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon);
  padding: var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--dur) var(--ease);
}

.newsletter-form-v2 button:hover {
  opacity: 0.7;
}


/* === RESPONSIVE -- HOMEPAGE === */

@media (max-width: 1023px) {
  .hero-v2-kicker { display: none; }

  .statement-section {
    grid-template-columns: 1fr;
    padding: var(--section-spacious) var(--space-8);
  }

  .trust-band-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-8);
  }

  .editorial-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid-v2 .editorial-card:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16/10;
    min-height: auto;
  }

  .editorial-grid-v2 .editorial-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .editorial-grid-v2 .editorial-card:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16/10;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
  }

  .philosophy-kicker,
  .philosophy-headline,
  .philosophy-body,
  .philosophy-image {
    grid-column: 1;
    grid-row: auto;
  }

  .philosophy-image {
    margin-top: var(--space-8);
  }

  .philosophy-image-label { display: none; }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }

  .collections-header-meta { text-align: left; }

  .configure-cta-rock-left,
  .configure-cta-rock-right { display: none; }

  .configure-cta { min-height: auto; }
}

@media (max-width: 639px) {
  .hero-v2-title .line-maison,
  .hero-v2-title .line-roboto {
    font-size: clamp(3.5rem, 20vw, 6rem);
  }

  .hero-v2-subtitle { flex-direction: column; align-items: flex-start; }
  .hero-v2-subtitle hr { flex: 0 0 40px; }

  .hero-v2-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-6); }
  .hero-v2-scroll { display: none; }

  .hero-v2-origin { display: none; }

  .trust-band-inner { gap: var(--space-3) var(--space-6); }
  .trust-logo { font-size: 0.5625rem; }

  .editorial-grid-v2 {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .editorial-grid-v2 .editorial-card:nth-child(n) {
    grid-column: 1 / -1;
    aspect-ratio: 3/4;
  }

  .editorial-grid-v2 .editorial-card:nth-child(1) {
    aspect-ratio: 3/4;
    min-height: auto;
  }

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

  .configure-cta-steps { flex-direction: column; gap: var(--space-3); }

  .pullquote-section { padding: var(--section-spacious) var(--space-6); }

  .newsletter-form-v2 { flex-direction: column; border-bottom: none; }
  .newsletter-form-v2 .form-input { border-bottom: 1px solid var(--border); text-align: left; }
}
