/* Path to Freedom — Trailhead design system (Direction A) */

:root {
  --forest: #3A5F48;
  --forest-dark: #22422F;
  --stone: #6B6558;
  --amber: #C98A3E;
  --amber-light: #E3AE6E;
  --cream: #F1ECE0;
  --ink: #1C1A16;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
}

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 500; }

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

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

/* ---------- Nav ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
  background: var(--cream);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 2px;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
}

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

.nav-menu a {
  font-size: 14px;
  color: var(--stone);
  transition: color 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--forest);
}

.btn-schedule {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-schedule:hover { background: var(--forest-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--forest);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 48px 90px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--forest-dark) 0%, var(--forest) 100%);
  color: var(--cream);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--forest-dark) 5%, rgba(18, 36, 27, 0.55) 55%, var(--forest) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(241, 236, 224, 0.8);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--forest-dark);
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
}

.btn-primary:hover { background: var(--amber-light); }

.btn-ghost {
  display: inline-block;
  color: var(--cream);
  font-size: 15px;
  border-bottom: 1px solid rgba(241, 236, 224, 0.4);
  padding-bottom: 3px;
}

.btn-ghost:hover { border-color: var(--cream); }

.ridge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
}

/* ---------- Program / journey ---------- */
.journey {
  padding: 90px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.journey-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.journey-head .eyebrow { color: var(--amber); }

.journey-head h2 {
  font-size: 34px;
  color: var(--forest);
  margin-bottom: 14px;
}

.journey-head p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.6;
}

.path-svg {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

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

.waypoint { text-align: center; }

.wp-num {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--amber);
  margin-bottom: 10px;
}

.wp-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.wp-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
}

/* ---------- Grace Model values ---------- */
.values {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 90px 48px;
}

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

.values-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.values-head h2 { font-size: 30px; }

.values-head p {
  font-size: 15px;
  color: rgba(241, 236, 224, 0.65);
  max-width: 320px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(241, 236, 224, 0.12);
  border: 1px solid rgba(241, 236, 224, 0.12);
}

.value-card {
  background: var(--forest-dark);
  padding: 32px 26px;
}

.value-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--amber-light);
}

.value-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(241, 236, 224, 0.7);
}

/* ---------- Story teaser ---------- */
.story {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.story-img {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story h2 {
  font-size: 30px;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.2;
}

.story p {
  font-size: 16px;
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 16px;
}

.story .btn-ghost {
  color: var(--forest);
  border-bottom-color: rgba(28, 26, 22, 0.3);
}

.story .btn-ghost:hover { border-color: var(--forest); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 64px 48px 56px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--forest-dark) 0%, var(--forest) 100%);
  color: var(--cream);
  text-align: center;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(241, 236, 224, 0.8);
}

.ridge-sm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  z-index: 1;
}

/* ---------- Bio / My Story ---------- */
.bio {
  padding: 90px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.bio-head .eyebrow { color: var(--amber); }

.bio-head h2 {
  font-size: 34px;
  color: var(--forest);
  margin-bottom: 10px;
}

.bio-subhead {
  font-size: 17px;
  color: var(--stone);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.bio-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 18px;
}

.bio-photo {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Differentiators (light section, no card container) ---------- */
.differentiators {
  padding: 90px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.differentiators-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.differentiators-head h2 {
  font-size: 30px;
  color: var(--forest);
}

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

.diff-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone);
}

/* ---------- About CTA ---------- */
.about-cta {
  padding: 90px 48px;
  text-align: center;
}

.about-cta h2 {
  font-size: 30px;
  color: var(--forest);
  margin-bottom: 14px;
}

.about-cta p {
  font-size: 16px;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 64px 48px 32px;
}

.footer .container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(241, 236, 224, 0.12);
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241, 236, 224, 0.65);
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--amber-light);
}

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

.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(241, 236, 224, 0.5);
}

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

  .story,
  .bio-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 38px; }

  .page-hero h1 { font-size: 32px; }

  .navbar, .hero, .journey, .values, .story, .footer,
  .page-hero, .bio, .differentiators, .about-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    box-shadow: 0 8px 16px rgba(28, 26, 22, 0.08);
    display: none;
    gap: 0;
    border-bottom: 1px solid rgba(28, 26, 22, 0.08);
    z-index: 1000;
  }

  .nav-menu.active { display: flex; }

  .nav-menu li { width: 100%; }

  .nav-menu a {
    display: block;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(28, 26, 22, 0.06);
  }

  .nav-menu li:last-child a { border-bottom: none; }

  .btn-schedule {
    display: block !important;
    text-align: center;
    margin-top: 8px;
  }

  .navbar { position: relative; }
}

@media (max-width: 600px) {
  .waypoints, .value-grid, .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 20px; }
}
