*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F5F0E8;
  --dark: #1A1A18;
  --warm: #C4974A;
  --muted: #7A7065;
  --light-muted: #E8E2D8;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-muted);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-cta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  text-decoration: none;
  border-bottom: 1px solid var(--warm);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.6;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  gap: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 151, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 100%;
  z-index: 1;
}

.hero-image {
  position: relative;
  height: calc(100vh + 80px);
  min-height: 500px;
  margin-top: -120px;
  margin-right: -48px;
  margin-bottom: -80px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--warm);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-cta {
  display: inline-block;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-cta:hover {
  background: var(--warm);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

/* DIVIDER */
.section-divider {
  height: 1px;
  background: var(--light-muted);
  margin: 0 48px;
}

/* SECTIONS */
section {
  padding: 100px 48px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 24px;
}

/* =====================
   SECTION 2 — PAIN POINTS (Center aligned, 2x2 grid with icons)
===================== */
.relatable {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 48px;
  text-align: center;
}

.relatable-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.relatable-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.relatable-heading em {
  font-style: italic;
  color: var(--warm);
}

.relatable-intro {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pain-point {
  padding: 36px 32px;
  border: 1px solid rgba(245, 240, 232, 0.1);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.pain-point:hover {
  border-color: rgba(196, 151, 74, 0.4);
  background: rgba(196, 151, 74, 0.05);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196, 151, 74, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  flex-shrink: 0;
}

.pain-icon svg {
  width: 22px;
  height: 22px;
}

/* =====================
   SECTION 3 — ABOUT
===================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1000px;
  align-items: start;
}

.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-left h2 em {
  font-style: italic;
  color: var(--warm);
}

.about-right p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-right p strong {
  color: var(--dark);
  font-weight: 500;
}

/* =====================
   SECTION 4 — PROCESS with Diagram
===================== */
.process {
  background: var(--light-muted);
}

.process-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process>.section-label {
  text-align: center;
}

/* DIAGRAM */
.belief-diagram {
  margin: 48px auto 60px;
  max-width: 860px;
}

.diagram-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.diagram-chain {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
}

.diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 110px;
}

.diagram-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.3;
  padding: 8px;
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.diagram-circle.highlight {
  background: var(--warm);
  color: var(--cream);
  border-color: var(--warm);
}

.diagram-node-label {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.diagram-arrow {
  font-size: 1.3rem;
  color: var(--warm);
  padding: 0 4px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.diagram-result-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--warm);
  padding-left: 16px;
  max-width: 560px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.step {
  background: var(--cream);
  padding: 40px 32px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--light-muted);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================
   SECTION 5 — WHO THIS IS FOR (Center aligned)
===================== */
.forwho-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.forwho-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.forwho-inner h2 em {
  font-style: italic;
  color: var(--warm);
}

.forwho-inner .sub {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 1rem;
}

.who-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.who-list li {
  font-size: 0.97rem;
  color: var(--dark);
  padding: 20px 24px;
  border-left: 2px solid var(--warm);
  background: var(--light-muted);
  line-height: 1.6;
}

/* =====================
   SECTION 6 — CREDIBILITY (right-leaning layout)
===================== */
.cred {
  background: var(--dark);
  color: var(--cream);
}

/* CREDIBILITY IMAGE */
.cred-image {
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
}

.cred-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.cred-inner {
  display: grid;
  grid-template-columns: 25% 33% 42%;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.cred-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cred-left h2 em {
  color: var(--warm);
  font-style: italic;
}

.cred-left p {
  font-size: 0.97rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
}

.cred-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.cred-item {
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  padding-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cred-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--warm);
  margin-top: 2px;
}

.cred-icon svg {
  width: 100%;
  height: 100%;
}

.cred-item-text h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
  font-weight: 500;
}

.cred-item-text p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 120px 48px;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--warm);
}

.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: var(--warm);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 48px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 20px;
}

.cta-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.cta-handle {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 16px;
}

/* FOOTER */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--light-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
  .cred-inner {
    grid-template-columns: 30% 35% 35%;
    gap: 32px;
  }

  .hero {
    grid-template-columns: 55% 45%;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 16px 20px;
  }

  .nav-logo img {
    height: 36px;
  }

  /* SECTIONS */
  section {
    padding: 60px 20px;
  }

  .section-divider {
    margin: 0 20px;
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-image {
    display: none;
  }

  .hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-scroll {
    left: 20px;
  }

  /* PAIN POINTS */
  .relatable {
    padding: 60px 20px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ABOUT */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* PROCESS */
  .process {
    padding: 60px 20px;
  }

  .process-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .belief-diagram {
    margin: 32px auto 40px;
    overflow-x: auto;
  }

  .diagram-chain {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .diagram-node {
    min-width: 80px;
  }

  .diagram-circle {
    width: 70px;
    height: 70px;
    font-size: 0.6rem;
  }

  .diagram-arrow {
    font-size: 1rem;
  }

  /* WHO LIST */
  .who-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .forwho-inner {
    max-width: 100%;
  }

  /* CREDIBILITY */
  .cred-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cred-image {
    width: 100%;
    min-height: 280px;
    max-height: 360px;
    border-radius: 10px;
  }

  .cred-image img {
    object-position: center top;
  }

  .cred-right {
    gap: 16px;
  }

  /* CTA */
  .cta-section {
    padding: 72px 20px;
  }

  .cta-btn {
    padding: 16px 32px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* FOOTER */
  footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}