/* ===== Crescere, LLC — stylesheet ===== */
/* LIGHT theme: warm cream background, teal-green accent, near-black text */

:root {
  --bg: #F7F5F0;
  --bg-soft: #EFEBE2;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #2E2A24;
  --muted: #5C564C;
  --line: #E3DDD1;
  --accent: #0D9488;
  --accent-strong: #0F766E;
  --accent-bright: #14B8A6;
  --accent-deep: #115E59;
  --tint: #DCEFEB;
  --cream-text: #F7F5F0;
  --cream-dim: #E9E4DA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Split navigation: CTA on the left, links center, logo right ===== */
.split-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-cta {
  order: 1;
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--cream-text);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--accent-strong);
}

.nav-links {
  order: 2;
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.brand {
  order: 3;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-dot {
  color: var(--accent);
}

.nav-toggle {
  order: 4;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Band hero: full-width background band with overlay text ===== */
.band-hero {
  position: relative;
  margin-top: 73px;
  background-image:
    radial-gradient(circle at 85% 15%, var(--accent-bright) 0%, transparent 42%),
    radial-gradient(circle at 12% 90%, var(--accent-deep) 0%, transparent 46%),
    linear-gradient(130deg, var(--accent-deep) 0%, var(--accent-strong) 48%, var(--accent) 100%);
  color: var(--cream-text);
  overflow: hidden;
}

.band-overlay {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 28px 88px;
}

.hero-kicker {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-text);
  margin-bottom: 26px;
}

.band-hero h1 {
  max-width: 15ch;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream-text);
  margin-bottom: 24px;
}

.hero-lede {
  max-width: 62ch;
  font-size: 19px;
  line-height: 1.7;
  color: var(--cream-text);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-solid {
  background-color: var(--cream-text);
  color: var(--accent-deep);
}

.btn-solid:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--cream-text);
  border: 2px solid var(--cream-text);
}

.btn-ghost:hover {
  background-color: var(--cream-text);
  color: var(--accent-deep);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--cream-text);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--cream-text);
  letter-spacing: 0.02em;
}

/* ===== Section scaffolding ===== */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-kicker {
  display: inline-block;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-lede {
  font-size: 18px;
  color: var(--muted);
}

/* ===== Why section: numbered list with big numerals ===== */
.why-section {
  background-color: var(--bg);
}

.numeral-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.numeral-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.numeral-item:last-child {
  border-bottom: 1px solid var(--line);
}

.numeral {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.numeral-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.numeral-body p {
  color: var(--muted);
  max-width: 68ch;
}

/* ===== Comparison section: table ===== */
.comparison-section {
  background-color: var(--bg-soft);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--surface);
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table thead th {
  background-color: var(--accent-deep);
  color: var(--cream-text);
  font-weight: 700;
  font-size: 15px;
}

.comparison-table tbody th {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.comparison-table tbody td {
  color: var(--muted);
}

.comparison-table tbody td:last-child {
  color: var(--ink);
  font-weight: 500;
  background-color: var(--tint);
}

.comparison-note {
  margin-top: 28px;
  max-width: 72ch;
  color: var(--muted);
  font-size: 17px;
}

/* ===== Process section: timeline ===== */
.process-section {
  background-color: var(--surface);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 220px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-left: 2px solid var(--line);
  margin-left: 12px;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  left: -13px;
  top: 36px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 5px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item h3 {
  font-size: 22px;
  color: var(--accent-strong);
}

.timeline-item p {
  color: var(--muted);
}

/* ===== Quote slider ===== */
.quote-slider {
  background-color: var(--bg);
}

.slider {
  position: relative;
  min-height: 240px;
}

.slide {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.slide.is-active {
  display: block;
}

.slide blockquote {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.slide cite {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-strong);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background-color: var(--surface);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
  background-color: var(--accent);
  color: var(--cream-text);
  border-color: var(--accent);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--line);
  cursor: pointer;
  padding: 0;
}

.slider-dot.is-active {
  background-color: var(--accent);
}

/* ===== Stats band ===== */
.stats-band {
  background-color: var(--accent-deep);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.stat-num, .stat-suffix {
  font-size: 52px;
  font-weight: 800;
  color: var(--cream-text);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 15px;
  color: var(--cream-dim);
}

/* ===== Contact section ===== */
.contact-section {
  background-color: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 18px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 50ch;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-list a {
  color: var(--ink);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--accent-strong);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  border-radius: 16px;
  background-color: var(--bg);
  border: 1px solid var(--line);
}

.contact-form label {
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
  font-size: 16px;
  font-family: inherit;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background-color: var(--surface);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.contact-form .btn {
  margin-top: 20px;
}

.contact-form .btn-solid {
  background-color: var(--accent);
  color: var(--cream-text);
}

.contact-form .btn-solid:hover {
  background-color: var(--accent-strong);
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent-strong);
}

/* ===== Footer: multi-column ===== */
.footer-cols {
  background-color: var(--ink);
  color: var(--cream-dim);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #33302a;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--cream-text);
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--accent-bright);
}

.footer-tagline {
  color: var(--cream-dim);
  max-width: 34ch;
  font-size: 15px;
}

.footer-col h4 {
  color: var(--cream-text);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--cream-dim);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-bright);
}

.footer-col li {
  color: var(--cream-dim);
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  font-size: 14px;
  color: var(--cream-dim);
}

/* ===== Scroll reveal ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

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

@media (max-width: 720px) {
  .split-nav {
    flex-wrap: wrap;
  }

  .nav-cta {
    order: 2;
  }

  .brand {
    order: 1;
    margin-right: auto;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .nav-links {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 300px;
    padding: 8px 0 16px;
  }

  .numeral-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .numeral {
    font-size: 44px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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