:root {
  --bg: #F9F7F2;         
  --text: #4A4A4A;        
  --accent-1: #B8C1B0;    
  --accent-2: #D2B48C; 
  --ui: #E5E0D8;          
  --white: #ffffff;
}

* { 
  box-sizing: border-box; 
}

html, body { 
  margin: 0; 
  padding: 0; 
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { 
  width: min(1100px, 92%); 
  margin: 0 auto; 
  padding: 2rem 0; 
}

.container.narrow { 
  width: min(800px, 92%); 
}

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--ui);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.6rem; 
  text-decoration: none; 
  color: var(--text); 
}

.logo { 
  height: 40px; 
  width: auto; 
}

.site-title { 
  font-weight: 700; 
  letter-spacing: 0.3px; 
}

.nav-toggle {
  display: none; 
  background: transparent; 
  border: none; 
  padding: 0.4rem; 
  cursor: pointer;
}
.nav-toggle .bar { 
  display: block; 
  width: 22px;
  height: 2px; 
  margin: 4px 0; 
  background: var(--text); 
}

.site-nav ul { 
  display: flex; 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  gap: 1rem; 
}

.site-nav a {
  text-decoration: none; 
  color: var(--text);
  padding: 0.5rem 0.6rem; 
  border-radius: 6px;
}
.site-nav a:hover { 
  background: var(--ui); 
}

.site-nav a.active { 
  background: var(--accent-1); 
  color: #233225; 
}

.hero {
  background: linear-gradient(160deg, var(--ui), var(--bg));
  border: 1px solid var(--ui);
  border-radius: 16px;
  padding: 2.2rem 1.6rem;
  text-align: center;
}
.btn {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--accent-2);
  color: #3b2e18;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}
.btn:hover { 
  filter: brightness(0.95); 
}

.grid.three {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--ui);
  border-radius: 12px;
  padding: 1rem;
}
.card h2 { 
  margin-top: 0.2rem; 
}

.link { 
  color: #2f4f4f; 
  text-decoration: none; 
  font-weight: 600; 
}

.link:hover { 
  text-decoration: underline; 
}

.site-footer {
  border-top: 1px solid var(--ui);
  padding: 1rem;
  text-align: center;
  color: #666;
  background: var(--white);
  margin-top: 2rem;
}


@media (max-width: 820px) {
  .grid.three { 
    grid-template-columns: 1fr; 
  }
  .nav-toggle { 
    display: block; 
  }
  .site-nav { 
    display: none; 
    position: absolute; 
    top: 64px; 
    left: 0; 
    right: 0; 
    background: var(--white); 
    border-bottom: 1px solid var(--ui); 
  }
  .site-nav.open { 
    display: block; 
  }
  .site-nav ul { 
    flex-direction: column; 
    padding: 0.5rem; 
  }
  .site-nav a { 
    display: block; 
  }
}

.about-intro { 
  text-align: center; 
}
.profile-container { 
  text-align: center; 
  margin-bottom: 1.2rem; 
}
.headshot {
  width: 200px; 
  height: 200px; 
  object-fit: cover;
  border-radius: 50%; 
  border: 4px solid var(--accent-1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.testimony-section { 
  margin-top: 2rem; 
}

.testimony-box {
  background: var(--ui);
  padding: 1.5rem 1.25rem;
  border-left: 5px solid var(--accent-2);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.values-grid {
  margin-top: 1rem;
  display: grid; 
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}
.value { 
  background: var(--white); 
  border: 1px solid var(--ui); 
  border-radius: 10px; 
  padding: 0.9rem; 
}

.value h3 {
  margin: 0 0 0.3rem 0; 
}

.facts-list { 
  list-style: none; 
  padding: 0; 
  margin: 0.5rem 0 0 0; 
}

.facts-list li {
  background: var(--white);
  margin-bottom: 0.5rem;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--ui);
}
.facts-list li strong { 
  color: var(--accent-1); 
}

.mini-timeline { 
  margin-top: 2rem; 
}

.timeline { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.timeline li {
  display: grid; 
  grid-template-columns: 18px 1fr; 
  align-items: start; 
  gap: 0.6rem;
  padding: 0.4rem 0;
}
.t-bullet {
  display: inline-block; 
  width: 10px; 
  height: 10px; 
  margin-top: 0.35rem;
  background: var(--accent-1); 
  border-radius: 50%;
}

.cta-card {
  margin-top: 2rem; 
  text-align: center;
  background: var(--white); 
  border: 1px solid var(--ui);
  padding: 1.2rem; 
  border-radius: 12px;
}

@media (max-width: 820px) {
  .values-grid { 
    grid-template-columns: 1fr; 
  }
}

.mission-content { 
  line-height: 1.8; 
  margin-bottom: 1.5rem; 
}

.mission-statement { 
  font-size: 1.1rem; 
  color: var(--accent-1); 
  margin-bottom: 1rem; 
}

.mission-section h2 { 
  border-bottom: 2px solid var(--ui); 
  display: inline-block; 
  margin-bottom: 1rem; 
}

.mission-examples { 
  margin-top: 1.25rem; 
}

.mission-examples h3 { 
  margin: 0 0 0.5rem 0; 
  color: #39453b; 
}

.mission-examples ul { 
  margin: 0; 
  padding-left: 1.2rem; 
}

.mission-examples li { 
  margin: 0.4rem 0; 
}

.mission-verse, .hero-verse {
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--accent-1);
  padding-left: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}
.mission-verse span, .hero-verse span {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.4rem;
  color: var(--accent-2);
}
.streak-widget { 
  margin-top: 1rem; 
} 

.streak-good { 
  color: #2f4f4f; 
  font-weight: 700; 
} 

.streak-reset { 
  color: #7a5b3a; 
}

.interactive-feature {
  margin: 2rem 0;
  text-align: center;
}

.testimony-box {
  background: var(--ui);
  padding: 1.5rem 1.25rem;
  border-left: 5px solid var(--accent-2);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  margin-bottom: 1rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-intro { 
  text-align: center; 
  margin-bottom: 2rem; 
  max-width: 720px; 
  margin-inline: auto; 
}
.section-header { 
  display: flex; 
  align-items: baseline; 
  justify-content: space-between; 
  gap: 1rem; 
  margin: 1.5rem 0 0.8rem; 
}

.section-header .subtle { 
  color: #666; 
  font-size: 0.95rem; 
}


.chip-nav { 
  display: flex; 
  gap: 0.6rem; 
  flex-wrap: wrap; 
  margin-bottom: 1.2rem; 
  justify-content: center; 
}

.chip {
  display: inline-block; 
  padding: 0.35rem 0.7rem; 
  border-radius: 999px;
  background: var(--ui); 
  color: var(--text); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 0.9rem;
}

.chip:hover { 
  background: var(--accent-1); 
  color: #233225; 
}

.section-anchor { 
  margin: 1.2rem 0 0.6rem; 
}

.featured-recipe { 
  margin-bottom: 2rem; 
}

.featured-card {
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 0;
  background: var(--white); 
  border: 1px solid var(--ui); 
  border-radius: 16px; 
  overflow: hidden;
}

.featured-image { 
  background: var(--ui); 
}

.featured-img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  min-height: 260px; 
}

.featured-content { 
  padding: 1.4rem 1.2rem; 
}

.tag-label {
  background: var(--accent-2); 
  color: #3b2e18; 
  padding: 0.2rem 0.6rem; 
  border-radius: 4px;
  font-size: 0.8rem; 
  font-weight: bold; 
  text-transform: uppercase;
}

.meta { 
  list-style: none; 
  padding: 0; 
  margin: 0.4rem 0 0.8rem 0; 
  display: flex; 
  gap: 0.8rem; 
  color: #666; 
  font-size: 0.95rem; 
}

.recipe-card { 
  display: flex; 
  flex-direction: column; 
}

.recipe-card:hover { 
  transform: translateY(-3px); 
  transition: transform 0.18s ease; 
}

.card-image-top { 
  height: 180px; 
  background: var(--ui); 
  border-radius: 8px 8px 0 0; 
  overflow: hidden; 
}

.card-image-top img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.card-body { 
  padding: 1rem; 
}

.recipe-category { 
  color: var(--accent-1); 
  font-size: 0.85rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  display: block; 
  margin-bottom: 0.4rem; 
}

.recipe-title { 
  margin: 0.2rem 0 0.3rem; 
}

.recipe-details {
  margin-top: 0.6rem;
}

.recipe-details > summary {
  cursor: pointer; 
  font-weight: 700; 
}

.details-columns { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0.8rem; 
  margin-top: 0.6rem; 
}

.ing-list, .step-list { 
  margin: 0.2rem 0 0; 
  padding-left: 1.2rem; 
}

.step-list li { 
  margin-bottom: 0.25rem; 
}

.tag-row { 
  display: flex; 
  gap: 0.4rem; 
  flex-wrap: wrap; 
  margin-top: 0.8rem; 
}

.tag { 
  background: var(--ui); 
  color: var(--text); 
  font-size: 0.8rem; 
  padding: 0.2rem 0.5rem; 
  border-radius: 999px; 
  border: 1px solid #e8e3db; 
}

.how-to-use { 
  margin-top: 2rem;
}

.how-to-use code { 
  background: #f1eee8; 
  padding: 0.1rem 0.35rem; 
  border-radius: 4px; 
}


@media (max-width: 960px) {
  .featured-card { 
    grid-template-columns: 1fr; 
  }
  
  .featured-img { 
    min-height: 200px;
  }
}
@media (max-width: 820px) {
  .grid.three { 
    grid-template-columns: 1fr; 
  }
  .details-columns { 
    grid-template-columns: 1fr; 
  }
}

.recipe-tools { 
  margin: 1rem 0 2rem; 
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--ui);
  border-radius: 12px;
}
.recipe-tools input,[type="search"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--ui);
  border-radius: 8px;
  background: var(--bg);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.filter-row label {
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  background: var(--ui);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.filter-row label:hover {
  background: var(--accent-1); 
  color: #233225; 
}

.filter-row label:has(input:checked) {
  background: var(--accent-1);
  font-weight: 600;
  color: #233225;
}

.filter-helpers { 
  display: flex; 
  align-items: center; 
  gap: 0.8rem; 
  margin-top: 0.8rem; 
}

.btn-small { 
  padding: 0.4rem 0.7rem; 
  font-size: 0.9rem; 
}

.results-count { 
  color: #666; 
  font-size: 0.95rem; 
}

.no-results {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--ui);
  color: #7a5b3a;
  padding: 0.8rem;
  border-radius: 10px;
  margin: 0 0 1rem 0;
}

@supports not (selector(:has(*))) {
  .filter-row input,[type="checkbox"]:checked + span,
  .filter-row input,[type="checkbox"]:checked ~ * {
    font-weight: 600;
  }
}

.divider { 
  border: 0; 
  border-top: 1px solid var(--ui); 
  margin: 2rem 0; 
}

.scripture-quote {
  font-family: serif;
  font-size: 1.1rem;
  color: var(--text);
  border-left: 3px solid var(--accent-1);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
}
.reflection-prompts {
  background: var(--bg);
  border: 1px solid var(--ui);
  padding: 1.2rem;
  border-radius: 12px;
  margin-top: 1.2rem;
}

.reflection-prompts h3 { 
  margin-top: 0; 
  color: var(--accent-1); 
}
.streak-widget { 
  text-align: center; 
  margin: 1rem 0 2rem; 
  border: 2px solid var(--accent-1); 
}

.streak-good { 
  color: var(--accent-1); 
  font-weight: bold; 
}

.grid.two { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1rem; 
}

@media (max-width: 820px) { 
  .grid.two { 
    grid-template-columns: 1fr; 
  } 
}

.routine-hero { 
  max-width: 960px; 
  margin: 1rem auto 1.5rem; 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid var(--ui); 
}

.media-figure { 
  max-width: 480px;
  margin: 1rem auto; 
  background: var(--white); 
  border: 1px solid var(--ui); 
  border-radius: 12px; 
  overflow: hidden; 
} 

.figure-image { 
  display: block; 
  width: 100%; 
  height: auto; 
} 

.figure-caption { 
  font-size: 0.9rem;
  color: #666; 
  padding: 0.6rem 0.9rem; 
  border-top: 1px solid var(--ui); 
  background: var(--bg); 
}

.routine-checklist .section-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 0.8rem; 
}

.checklist { 
  list-style: none; 
  margin: 0.6rem 0 0; 
  padding: 0; 
}

.checklist li { 
  padding: 0.6rem 0.4rem; 
  border-bottom: 1px solid var(--ui); 
}

.checklist li:last-child { 
  border-bottom: 0; 
}

.checklist input[type="checkbox"] { 
  margin-right: 0.6rem; 
  transform: translateY(1px); 
}

.checklist input[type="checkbox"]:checked + * { 
  opacity: 0.85; 
  text-decoration: line-through; 
}

.mini-planner { 
  margin-top: 2rem; 
}

.bullet { 
  margin: 0.4rem 0 0; 
  padding-left: 1.2rem; 
}

.bullet li { 
  margin: 0.25rem 0; 
}

.prompts-grid { 
  margin-top: 2rem; 
}

.prompts-grid .grid.two { 
  margin-top: 0.6rem; 
}

.btn-small { 
  padding: 0.4rem 0.7rem; 
  font-size: 0.9rem; 
}

.workout-hero { 
  max-width: 350px; 
  margin: 1rem auto 1.5rem; 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid var(--ui); 
}

.workout-hero-img { 
  display: block; 
  width: 100%; 
  height: auto; 
}

.gym-essentials .equipment-list { 
  margin: 0.6rem 0 0; 
  padding-left: 1.2rem; 
}
.gym-essentials .equipment-list li { 
  margin: 0.25rem 0; 
}

.workout-card .workout-details { 
  margin-top: 0.6rem; 
}

.mission-verse { 
  color: #666; 
  font-style: italic; 
  margin-top: 0.6rem; 
}

.details-columns { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0.8rem; 
}

@media (max-width: 820px) { 
  .details-columns { 
    grid-template-columns: 1fr; 
  } 
}

.brand-badge { 
  margin-top: 0.8rem; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 0.4rem 0.6rem; 
  background: var(--white); 
  border: 1px solid var(--ui); 
  border-radius: 10px; 
} 

.brand-badge img { 
  height: 150px; 
  width: auto; 
  display: block; 
}

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

.site-footer { 
  border-top: 1px solid var(--ui); 
  padding: 1rem; 
  text-align: center; 
  color: #666; 
  background: var(--white); 
  margin-top: 2rem; 
} 

.site-footer a { 
  color: inherit; 
  text-decoration: underline; 
} 

.last-edited { 
  font-size: 0.9rem; 
  color: #7a7a7a; 
  margin-top: 0.25rem; 
}

