:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --terracotta: #C4836A;
  --terracotta-light: #D4A574;
  --sage: #7A9E7E;
  --sage-dark: #5A7A5D;
  --brass: #B8975A;
  --charcoal: #2C2416;
  --charcoal-light: #4A3F2E;
  --warm-grey: #8A7B6A;
  --white: #FDFAF5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 0 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-content {
  padding: 1rem 0;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.hero-sub {
  font-size: 0.9rem;
  color: var(--warm-grey);
  font-style: italic;
  font-family: var(--font-display);
}

/* Problem */
.theproblem {
  background: var(--charcoal);
  color: var(--cream);
  padding: var(--space-2xl) 2rem;
}
.theproblem-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.problem-mark {
  margin-bottom: 2rem;
  opacity: 0.7;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.problem-body {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.problem-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}
.problem-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.5;
}

/* Five Elements */
.thefive {
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}
.thefive-header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-headline {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-lede {
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.75;
}
.elements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.element-card {
  background: var(--cream);
  padding: 2rem 1.5rem;
  text-align: center;
}
.element-sym {
  display: block;
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.element-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.element-card p {
  font-size: 0.82rem;
  color: var(--warm-grey);
  line-height: 1.6;
}

/* How It Works */
.howitworks {
  padding: var(--space-2xl) 2rem;
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.hiw-image-col {
  position: relative;
}
.hiw-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hiw-img-caption {
  font-size: 0.75rem;
  color: var(--warm-grey);
  text-align: center;
  padding: 0.75rem;
  font-style: italic;
  background: var(--cream);
}
.hiw-content {
  padding: 3rem 3rem 3rem 4rem;
}
.hiw-steps {
  margin: 2rem 0;
}
.hiw-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 2.5rem;
}
.hiw-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.hiw-step p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.7;
}
.hiw-output {
  background: var(--charcoal);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.output-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  display: block;
  margin-bottom: 0.5rem;
}
.output-desc {
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.7;
}

/* Your Cycle */
.yourcycle {
  padding: var(--space-2xl) 2rem;
  background: var(--cream);
}
.yourcycle-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cycle-timeline {
  position: relative;
  margin-top: 3rem;
}
.cycle-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
}
.cycle-item-am {
  border-left: 2px solid var(--terracotta);
  padding-left: 2rem;
}
.cycle-item-noon {
  border-left: 2px solid var(--sage);
  padding-left: 2rem;
}
.cycle-item-pm {
  border-left: 2px solid var(--charcoal);
  padding-left: 2rem;
}
.cycle-midrule {
  display: none;
}
.cycle-time {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  padding-top: 0.2rem;
}
.cycle-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.cycle-item p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* Closing */
.closing {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) sepia(0.2);
}
.closing-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.closing-text h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.closing-text p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.closing-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta-light);
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--cream-dark);
  padding: var(--space-xl) 2rem var(--space-lg);
  border-top: 1px solid rgba(44, 36, 22, 0.1);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--warm-grey);
  margin-top: 0.5rem;
  max-width: 420px;
  line-height: 1.7;
}
.footer-elements {
  margin-bottom: 2rem;
}
.footer-elements-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 0.75rem;
}
.footer-elements-list {
  display: flex;
  gap: 1.5rem;
}
.footer-elements-list span {
  font-size: 0.8rem;
  color: var(--charcoal-light);
}
.footer-bottom {
  border-top: 1px solid rgba(44, 36, 22, 0.1);
  padding-top: 1.5rem;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--warm-grey);
  line-height: 1.6;
  max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-img {
    height: 320px;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .elements-grid {
    grid-template-columns: 1fr 1fr;
  }
  .howitworks {
    grid-template-columns: 1fr;
  }
  .hiw-img {
    height: 260px;
  }
  .hiw-content {
    padding: 2rem 1.5rem;
  }
  .closing-inner {
    grid-template-columns: 1fr;
  }
  .closing-img {
    height: 260px;
  }
  .closing-text {
    padding: 3rem 2rem;
  }
  .problem-stat-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cycle-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .elements-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 1.7rem;
  }
}