:root {
  --bg: #fcf7f1;
  --bg-soft: #f4ede4;
  --bg-deep: #eadbc9;
  --paper: rgba(255, 250, 245, 0.82);
  --paper-strong: rgba(255, 247, 239, 0.9);
  --text: #4b382d;
  --muted: #6a564b;
  --line: rgba(102, 74, 59, 0.12);
  --accent: #b56f53;
  --accent-dark: #7f503d;
  --accent-deep: #5c3b2d;
  --gold: #d7b07a;
  --sage: #8ea795;
  --shadow: 0 20px 45px rgba(87, 64, 52, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217,176,124,0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(145,171,155,0.16), transparent 24%),
    var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section { padding: 5.5rem 0; }
.section-soft { background: linear-gradient(180deg, rgba(244,237,228,0.9), rgba(252,247,241,0.84)); }
.section-alert { background: linear-gradient(180deg, #f3e6e0, #fcf3ee); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 245, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 6.5rem;
  padding-bottom: 7rem;
  background:
    linear-gradient(135deg, rgba(255, 247, 239, 0.3), rgba(245, 228, 209, 0.14)),
    url("images/Just-One-More-Time-6.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.12), rgba(255, 250, 245, 0.28));
  pointer-events: none;
}

.hero-grid,
.split-layout,
.story-grid,
.help-grid,
.contact-card,
.footer-grid,
.pathway-feature,
.promise-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split-layout,
.story-grid,
.help-grid,
.contact-card,
.pathway-feature,
.promise-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy h1,
h2,
.site-footer h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy,
.hero .peaceful-panel,
.hero .quote {
  color: var(--accent-deep);
}

.hero .lead,
.hero .peaceful-panel p:not(.quote) {
  color: rgba(0, 0, 0, 0.9);
}

.hero .eyebrow {
  color: var(--accent-dark);
}

.hero .btn-secondary {
  background: rgba(255, 248, 241, 0.76);
  border-color: rgba(127, 80, 61, 0.22);
  color: var(--accent-deep);
}

.hero-copy h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions,
.contact-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: var(--shadow);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.86);
  color: var(--accent-deep);
}

.peaceful-panel,
.reflection-card,
.info-card,
.promise-box,
.help-card,
.action-card,
.closing-box,
.contact-card,
.story-panel,
.why-banner {
  background: var(--paper);
  border: 1px solid rgba(255, 247, 239, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.peaceful-panel,
.reflection-card,
.info-card,
.promise-box,
.help-card,
.action-card,
.closing-box,
.contact-card,
.story-panel,
.why-banner {
  padding: 2rem;
}

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.75rem;
}

.hero-wave {
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(145,171,155,0.15), transparent 60%);
  pointer-events: none;
}

.reflection-card {
  position: relative;
  overflow: hidden;
}
.reflection-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(207,126,100,0.35), rgba(217,176,124,0.35));
  margin-bottom: 1rem;
}

.story-photo {
  min-height: 420px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(35, 44, 28, 0.28), rgba(35, 44, 28, 0.18)),
    url("images/Just-One-More-Time-3.jpg") center/cover no-repeat;
  overflow: hidden;
}

.soft-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.soft-shape-1 {
  inset: 10% auto auto 10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.55);
}
.soft-shape-2 {
  inset: auto 8% 10% auto;
  width: 180px;
  height: 180px;
  background: rgba(207,126,100,0.22);
}
.story-word {
  position: absolute;
  inset: auto 2rem 2rem 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: rgba(70,53,45,0.86);
}

.section-heading.centered,
.closing-box,
.promise-box {
  text-align: center;
}

.section-path {
  background: linear-gradient(180deg, rgba(255,250,245,0.96), rgba(247,239,231,0.9));
}

.pathway-feature {
  align-items: center;
}

.pathway-copy {
  padding-right: 1rem;
}

.pathway-image-wrap,
.promise-image-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.7);
}

.pathway-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.promise-layout {
  align-items: stretch;
}

.promise-layout .promise-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promise-image-card {
  margin: 0;
  min-height: 100%;
}

.promise-image-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  object-position: center;
}


.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.image-card figcaption {
  padding: 1.5rem 1.6rem 1.8rem;
}

.closing-photo-box {
  max-width: 920px;
}

.closing-image-wrap {
  margin: -2rem -2rem 1.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.closing-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.action-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card h3,
.action-card h3,
.reflection-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
}

.why-banner {
  grid-template-columns: 1.1fr 1fr;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.why-list ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}
.why-list li { margin-bottom: 0.4rem; }


.hope-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(74, 52, 38, 0.66), rgba(74, 52, 38, 0.42)),
    url("images/Just-One-More-Time-2.jpg") center/cover no-repeat;
}

.hope-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.08), rgba(54, 39, 32, 0.18));
  pointer-events: none;
}

.hope-section .container {
  position: relative;
  z-index: 1;
}

.hope-section .section-label,
.hope-section h2,
.hope-section .section-heading p,
.hope-section .accordion-group summary,
.hope-section .accordion-group details p {
  color: #fff8f0;
}

.hope-section .section-label {
  color: rgba(255, 238, 216, 0.92);
}

.hope-section .accordion-group details {
  background: rgba(72, 52, 41, 0.5);
  border-color: rgba(255, 237, 218, 0.16);
  backdrop-filter: blur(4px);
}

.hope-section .accordion-group details p {
  color: rgba(255, 245, 236, 0.86);
}

.accordion-group {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.accordion-group details {
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}
.accordion-group summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 700;
}
.accordion-group summary::-webkit-details-marker { display: none; }
.accordion-group summary span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
}
.accordion-group details p {
  margin: 0.9rem 0 0.15rem 2.9rem;
  color: var(--muted);
}

.help-card {
  display: grid;
  gap: 1rem;
}
.help-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  background: rgba(255,255,255,0.82);
}
.help-item a {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0.2rem 0;
}
.help-title {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.help-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.action-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255,248,241,0.92), rgba(244,237,228,0.96));
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(252,247,241,0.96), rgba(244,237,228,0.96));
}
.footer-grid {
  grid-template-columns: 1.5fr auto;
  align-items: start;
}
.footer-links {
  justify-content: flex-end;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-main {
  flex: 1;
  padding: 5rem 0;
}
.legal-wrap {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  padding: 2.25rem;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.legal-wrap h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.legal-wrap h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}
.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .split-layout,
  .story-grid,
  .help-grid,
  .contact-card,
  .pathway-feature,
  .promise-layout,
  .why-banner,
  .three-up,
  .action-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(255,250,245,0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .image-card img { min-height: 280px; }
  .pathway-image-wrap img { aspect-ratio: 5 / 4; }
  .promise-image-card img { min-height: 280px; }
  .closing-image-wrap { margin: -1.35rem -1.35rem 1.25rem; }
  .closing-image-wrap img { aspect-ratio: 4 / 3; }
  .peaceful-panel,
  .reflection-card,
  .info-card,
  .promise-box,
  .help-card,
  .action-card,
  .closing-box,
  .contact-card,
  .story-panel,
  .why-banner,
  .legal-wrap {
    padding: 1.35rem;
  }

  .brand-text { font-size: 0.95rem; }
  .hero { padding-top: 5rem; }
}


.hero-copy .btn-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-dark));
}

.hero .peaceful-panel {
  background: rgba(255, 248, 241, 0.94);
  border-color: rgba(255, 247, 239, 0.96);
}

.hero-copy {
  max-width: 38rem;
}

.hero-copy .lead {
  max-width: 32rem;
}

.hero .peaceful-panel .quote {
  color: var(--accent-dark);
}

.site-nav a:hover,
.footer-links a:hover,
.action-card a:hover {
  color: var(--accent-deep);
}

.help-item a:hover,
.btn-secondary:hover {
  color: var(--accent-deep);
}

.reflection-card figcaption p,
.info-card p,
.action-card p,
.promise-box p,
.why-list p,
.help-note,
.contact-card p,
.closing-box p {
  color: var(--muted);
}


@media (max-width: 720px) {
  .hope-section {
    background-position: center top;
  }
}


.role-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(86, 62, 47, 0.72), rgba(86, 62, 47, 0.54)),
    url("images/Just-One-More-Time-5.jpg") center/cover no-repeat;
}

.role-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.04), rgba(40, 28, 22, 0.26));
  pointer-events: none;
}

.role-container {
  position: relative;
  z-index: 1;
}

.role-heading {
  max-width: 820px;
}

.role-section .section-label,
.role-section h2,
.role-section .role-heading p {
  color: #fff7ef;
}

.role-section .section-label {
  color: rgba(255, 236, 214, 0.92);
}

.role-card {
  background: rgba(255, 249, 243, 0.95);
  border: 1px solid rgba(255, 247, 239, 0.58);
  backdrop-filter: blur(3px);
}

.role-card h3 {
  color: var(--accent-deep);
}

.role-card p {
  color: var(--muted);
}

.role-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.8rem 1.05rem;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-deep);
  border: 1px solid rgba(127, 80, 61, 0.16);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.role-card a:hover {
  transform: translateY(-1px);
  background: #f6dfc0;
  color: var(--accent-deep);
}

@media (max-width: 720px) {
  .role-section {
    background-position: center center;
  }
}


/* --- Navigation refresh --- */
.nav-wrap {
  justify-content: center;
  position: relative;
}

.brand {
  display: none;
}

.site-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 600;
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Full-background story section --- */
.story-feature-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(48, 40, 31, 0.60), rgba(48, 40, 31, 0.38)),
    url("images/Just-One-More-Time-3.jpg") center/cover no-repeat;
}

.story-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.08), rgba(43, 34, 27, 0.16));
  pointer-events: none;
}

.story-feature-wrap,
.pathway-feature-wrap {
  position: relative;
  z-index: 1;
}

.story-feature-wrap {
  display: flex;
  justify-content: flex-end;
}

.story-feature-card,
.pathway-feature-card {
  width: min(100%, 700px);
  padding: 2.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.story-feature-card {
  background: rgba(255, 248, 241, 0.90);
  border: 1px solid rgba(255, 247, 239, 0.78);
}

.story-feature-card h2,
.story-feature-card p {
  color: var(--accent-deep);
}

.story-feature-card .section-label {
  color: var(--accent-dark);
}

/* --- Full-background pathway section --- */
.pathway-feature-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(62, 53, 39, 0.66), rgba(62, 53, 39, 0.42)),
    url("images/Just-One-More-Time-5.jpg") center/cover no-repeat;
}

.pathway-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.06), rgba(42, 31, 23, 0.18));
  pointer-events: none;
}

.pathway-feature-wrap {
  display: flex;
  justify-content: flex-start;
}

.pathway-feature-card {
  background: rgba(255, 249, 243, 0.92);
  border: 1px solid rgba(255, 247, 239, 0.82);
}

.pathway-feature-card h2 {
  color: var(--accent-deep);
}

.pathway-feature-card p {
  color: #5b483d;
}

/* --- Promise image tune --- */
.promise-image-card img {
  object-position: center;
}

/* --- Footer refresh --- */
.footer-grid-updated {
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}

.footer-copy .footer-title {
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--accent-deep);
}

.footer-copy p {
  margin: 0.25rem 0;
}

.footer-links-updated {
  justify-content: center;
  align-items: center;
  gap: 0.9rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links-updated a {
  color: var(--accent-deep);
}

.footer-links-updated a:hover {
  color: var(--accent-dark);
}

@media (max-width: 920px) {
  .nav-wrap {
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .menu-toggle {
    position: static;
    transform: none;
  }
}

@media (max-width: 640px) {
  .story-feature-card,
  .pathway-feature-card {
    padding: 1.5rem;
  }

  .story-feature-wrap,
  .pathway-feature-wrap {
    justify-content: center;
  }

  .footer-links-updated {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* FINAL SIDE-BY-SIDE SECTION */
.final-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, rgba(252,247,241,0.9), rgba(244,237,228,0.95));
}

.final-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.final-inner {
  max-width: 520px;
  width: 100%;
  background: rgba(255, 250, 245, 0.88);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}

.final-breath {
  background: linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
  url("images/Just-One-More-Time-7.jpg") center/cover no-repeat;
}

.final-action {
  background: linear-gradient(135deg, rgba(244, 237, 228, 0.95), rgba(234, 219, 201, 0.95));
}

@media (max-width: 920px) {
  .final-sections {
    grid-template-columns: 1fr;
  }
}


/* FINAL CTA BUTTON ALIGNMENT FIX */
.final-action .contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.final-action .contact-actions a {
  width: 100%;
  max-width: 260px;
  text-align: center;
}
