/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #0d1b2a;
  --bg-cream: #f7f4ef;
  --text-light: #f0ebe1;
  --text-dark: #0d1b2a;
  --text-muted: #8a9ab0;
  --accent: #c4a35a;
  --accent-dim: rgba(196, 163, 90, 0.15);
  --border: rgba(196, 163, 90, 0.2);
  --border-dark: rgba(255,255,255,0.08);
}

html { font-size: 16px; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-eyebrow.light { color: var(--accent); }
.section-eyebrow.dark { color: var(--accent); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 6vw 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(196,163,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  padding-bottom: 4rem;
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--text-light);
  display: block;
  margin-top: 1rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.75;
  margin-top: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-stat {
  text-align: right;
  border-left: 1px solid var(--border);
  padding-left: 3rem;
  padding-top: 0.5rem;
}

.hero-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.hero-bottom-strip {
  border-top: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 2.5rem 0;
  gap: 2rem;
}

.hero-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strip-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
}

/* === SPREAD SECTION === */
.spread-section {
  background: var(--bg-cream);
  padding: 7rem 6vw;
}

.spread-inner { max-width: 1100px; margin: 0 auto; }

.spread-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1rem;
}

.spread-step {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid rgba(13,27,42,0.12);
}
.spread-step:first-child { padding-left: 0; }
.spread-step:last-child { border-right: none; padding-right: 0; }
.spread-step:nth-child(2) { padding-left: 2.5rem; }

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(13,27,42,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.step-body {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.75;
}

/* === PRICE COMPARISON === */
.price-comparison {
  background: var(--bg-dark);
  padding: 7rem 6vw;
}

.pc-inner { max-width: 1100px; margin: 0 auto; }

.pc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.comparison-table {
  border: 1px solid var(--border-dark);
}

.ct-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.875rem;
  align-items: center;
}
.ct-row:last-child { border-bottom: none; }

.ct-header {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.ct-total {
  background: var(--accent-dim);
  font-weight: 500;
}

.ct-watch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.ct-brand {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.2em 0.5em;
  flex-shrink: 0;
}

.ct-retail { color: var(--text-muted); }
.ct-secondary { color: var(--text-light); font-weight: 400; }

.ct-spread {
  color: var(--accent);
  font-weight: 500;
}

.spread-high {
  color: #e8c96a;
  font-weight: 600;
}

.pc-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === POSITIONING === */
.positioning-section {
  background: var(--bg-cream);
  padding: 7rem 6vw;
}

.pos-inner { max-width: 1100px; margin: 0 auto; }

.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pos-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pos-body {
  font-size: 0.95rem;
  color: #4a5a6a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pos-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(13,27,42,0.12);
  padding-left: 3rem;
}

.pos-stat {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(13,27,42,0.1);
}
.pos-stat:last-child { border-bottom: none; }

.ps-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ps-label {
  display: block;
  font-size: 0.78rem;
  color: #7a8a9a;
  line-height: 1.4;
}

/* === MISSION === */
.mission-section {
  background: var(--bg-dark);
  padding: 7rem 6vw;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.mission-inner { max-width: 1100px; margin: 0 auto; }

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.3;
  border-left: 2px solid var(--accent);
  padding-left: 3rem;
  max-width: 28ch;
  margin: 0 auto;
}

/* === CLOSING === */
.closing-section {
  background: var(--bg-dark);
  padding: 7rem 6vw 8rem;
}

.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.closing-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.site-footer {
  background: #080f18;
  padding: 2rem 6vw;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.footer-divider { color: var(--border-dark); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat { text-align: left; border-left: none; border-top: 1px solid var(--border-dark); padding-left: 0; padding-top: 2rem; }
  .hero-bottom-strip { grid-template-columns: 1fr 1fr; }
  .spread-grid { grid-template-columns: 1fr; }
  .spread-step { border-right: none; border-bottom: 1px solid rgba(13,27,42,0.12); padding: 2rem 0; }
  .spread-step:last-child { border-bottom: none; }
  .pos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pos-stats { border-left: none; padding-left: 0; }
  .ct-row { grid-template-columns: 2fr 1fr 1fr 1fr; font-size: 0.78rem; }
  .hero { padding-top: 3rem; }
  .mission-quote { padding-left: 1.5rem; }
}

@media (max-width: 480px) {
  .ct-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .ct-header .ct-watch { display: none; }
  .hero-bottom-strip { grid-template-columns: 1fr; }
}