/* === BASE === */
:root {
  --bg: #FAF7F2;
  --charcoal: #2C2825;
  --charcoal-light: #4A4440;
  --terracotta: #C4704B;
  --terracotta-light: #D4896A;
  --sage: #6B7C6F;
  --sage-light: #8A9E90;
  --cream-dark: #F0EBE3;
  --white: #FFFFFF;
  --border: rgba(44,40,37,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
}

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.section-tag--light {
  color: var(--cream-dark);
  border-color: rgba(240,235,227,0.3);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,112,75,0.18) 0%, transparent 65%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,124,111,0.2) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,112,75,0.12) 0%, transparent 70%);
  bottom: 15%;
  left: 20%;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 80px 100px;
  max-width: 900px;
}

.hero__eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero__sub {
  font-size: 19px;
  color: rgba(240,235,227,0.72);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 64px;
  font-weight: 300;
}

.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__stat { display: flex; flex-direction: column; gap: 6px; }

.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--terracotta-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(240,235,227,0.5);
  line-height: 1.4;
  max-width: 160px;
}

.hero__stat-div {
  width: 1px;
  height: 60px;
  background: rgba(240,235,227,0.15);
  flex-shrink: 0;
}

/* === THE TRANSITION === */
.transition {
  background: var(--bg);
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
}

.transition__inner { max-width: 860px; }

.transition__label { margin-bottom: 32px; }

.transition__heading {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--charcoal);
  margin-bottom: 32px;
  font-weight: 400;
}

.transition__text {
  font-size: 18px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.transition__symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
}

.transition__symptom {
  font-size: 13px;
  color: var(--charcoal-light);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* === VOICES === */
.voices {
  background: var(--charcoal);
  padding: 120px 80px;
}

.voices__inner { max-width: 1100px; }

.voices__heading {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 56px;
}

.voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.voices__card {
  background: rgba(240,235,227,0.05);
  border: 1px solid rgba(240,235,227,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.voices__card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,112,75,0.3);
}

.voices__card--1 { margin-top: 0; }
.voices__card--2 { margin-top: 48px; }
.voices__card--3 { margin-top: 24px; }

.voices__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--terracotta);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
  opacity: 0.6;
}

.voices__quote {
  font-size: 16px;
  color: rgba(240,235,227,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.voices__attr {
  font-size: 13px;
  color: rgba(240,235,227,0.4);
  letter-spacing: 0.04em;
}

/* === THE GAP === */
.gap {
  background: var(--bg);
  padding: 120px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gap__inner { max-width: 960px; }

.gap__heading {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 64px;
  line-height: 1.2;
}

.gap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.gap__item {}

.gap__icon {
  color: var(--terracotta);
  margin-bottom: 20px;
  display: flex;
}

.gap__item-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.gap__item-text {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-weight: 300;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--charcoal);
  padding: 120px 80px;
}

.manifesto__inner { max-width: 800px; }

.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 40px;
  font-weight: 400;
  border-left: 3px solid var(--terracotta);
  padding-left: 32px;
}

.manifesto__text {
  font-size: 17px;
  color: rgba(240,235,227,0.6);
  line-height: 1.8;
  font-weight: 300;
  padding-left: 35px;
}

/* === CLOSING === */
.closing {
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--bg) 100%);
  padding: 120px 80px;
  text-align: center;
}

.closing__inner { max-width: 700px; margin: 0 auto; }

.closing__heading {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.15;
}

.closing__sub {
  font-size: 18px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  padding: 48px 80px;
  border-top: 1px solid rgba(240,235,227,0.08);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(240,235,227,0.4);
}

.footer__copy {
  font-size: 13px;
  color: rgba(240,235,227,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero__content { padding: 80px 28px 60px; }
  .hero__stat-row { flex-direction: column; gap: 28px; align-items: flex-start; }
  .hero__stat-div { display: none; }
  .transition { padding: 80px 28px; }
  .voices { padding: 80px 28px; }
  .voices__grid { grid-template-columns: 1fr; }
  .voices__card--1, .voices__card--2, .voices__card--3 { margin-top: 0; }
  .gap { padding: 80px 28px; }
  .gap__grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 80px 28px; }
  .closing { padding: 80px 28px; }
  .footer { padding: 40px 28px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 42px; }
  .hero__sub { font-size: 16px; }
}

/* === SUNSET BANNER === */
.sunset-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--terracotta);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid var(--cream-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  transition: opacity 180ms ease;
  min-height: 48px;
}

.sunset-banner__msg {
  margin: 0;
  flex: 0 1 auto;
}

.sunset-banner__msg strong {
  font-weight: 600;
}

.sunset-banner__cta {
  display: inline-block;
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid var(--cream-dark);
  white-space: nowrap;
  transition: background 160ms ease;
}

.sunset-banner__cta:hover {
  background: var(--cream-dark);
}

.sunset-banner__dismiss {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 160ms ease;
}

.sunset-banner__dismiss:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
  .sunset-banner {
    flex-wrap: wrap;
    padding: 8px 14px;
    gap: 10px;
    font-size: 13px;
  }
  .sunset-banner__msg { text-align: center; }
}