:root {
  --ink: #174845;
  --ink-deep: #103936;
  --petrol: #17645e;
  --petrol-soft: #4d8c85;
  --aqua: #dbeeea;
  --aqua-light: #eef7f4;
  --cream: #fbf8ef;
  --paper: #fffefb;
  --gold: #c7a436;
  --gold-light: #eadc99;
  --line: rgba(23, 72, 69, 0.16);
  --shadow: 0 22px 70px rgba(23, 72, 69, 0.13);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.7vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.4vw, 4.6rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--ink-deep);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1440px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 10px 35px rgba(16, 57, 54, 0.09);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.05;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(199, 164, 54, 0.35);
}

.brand span,
.footer-brand span {
  display: grid;
}

.brand strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand small,
.footer-brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 38px);
  font-size: 0.92rem;
  font-weight: 600;
}

nav a:not(.nav-cta):hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.nav-cta {
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--petrol);
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: 130px clamp(20px, 5vw, 80px) 70px;
  overflow: hidden;
  background: var(--aqua-light);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 250, 242, 0.94) 0%, rgba(250, 250, 242, 0.7) 33%, rgba(250, 250, 242, 0.08) 66%),
    url("assets/spirit-healing-for-kids-hero.jpg") 64% center / cover no-repeat;
}

.hero-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to top, var(--paper), transparent);
  content: "";
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(760px, 58vw);
  margin-top: clamp(60px, 9vh, 120px);
  padding: clamp(28px, 4.2vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(255, 254, 248, 0.77);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 34px;
  font-size: clamp(1.03rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(168, 134, 37, 0.2);
  color: #173e3b;
}

.button-primary:hover {
  background: #d5b649;
  box-shadow: 0 15px 30px rgba(168, 134, 37, 0.27);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold-light);
  font-weight: 700;
}

.text-link:hover {
  color: var(--gold);
}

.section {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(75px, 10vw, 145px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: start;
}

.intro-grid h2 {
  position: sticky;
  top: 40px;
}

.large-prose {
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.85;
}

.prose p:last-child,
.approach-copy p:last-child,
.perspective-copy p:last-child,
.team-copy p:last-of-type {
  margin-bottom: 0;
}

.approach {
  width: min(1400px, calc(100% - 40px));
  padding-top: 20px;
}

.approach-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 50px clamp(45px, 8vw, 120px);
  padding: clamp(35px, 7vw, 100px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 8%, rgba(234, 220, 153, 0.22), transparent 24%),
    linear-gradient(135deg, #e9f5f2, #d6ebe6);
}

.approach-copy {
  align-self: center;
  font-size: 1.05rem;
}

.approach-signature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(13px, 3vw, 42px);
  align-items: center;
  margin-top: 12px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.approach-signature span,
.approach-signature strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.15;
}

.approach-signature b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.approach-signature i {
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.approach-signature strong {
  color: var(--petrol);
}

.perspective {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  gap: clamp(50px, 10vw, 145px);
  align-items: center;
}

.perspective-copy p:not(.eyebrow) {
  max-width: 680px;
}

blockquote {
  position: relative;
  margin-bottom: 0;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(199, 164, 54, 0.24);
  border-radius: 50% 50% 44% 44% / 32% 32% 20% 20%;
  background: var(--cream);
  text-align: center;
}

blockquote::before {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  content: "“";
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.6;
}

blockquote p {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  line-height: 1.15;
}

blockquote footer {
  color: var(--petrol-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stories {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(55px, 10vw, 145px);
  padding-top: 40px;
}

.stories-lead {
  align-self: start;
  position: sticky;
  top: 40px;
}

.stories-lead h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.8rem);
}

.story-flow article {
  position: relative;
  padding: 0 0 55px 70px;
  border-left: 1px solid var(--gold-light);
}

.story-flow article:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.story-flow article > span {
  position: absolute;
  top: 0;
  left: -23px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-light);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.story-flow p {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  width: min(1400px, calc(100% - 40px));
  padding-inline: clamp(28px, 7vw, 98px);
  border-radius: 42px;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.82);
}

.process h2,
.process h3 {
  color: white;
}

.process ol {
  display: grid;
  gap: 0;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.process li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(234, 220, 153, 0.42);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.process li p {
  margin-bottom: 0;
}

.team {
  padding-bottom: 50px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(45px, 9vw, 130px);
  padding: clamp(38px, 7vw, 90px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: white;
  box-shadow: 0 25px 80px rgba(23, 72, 69, 0.07);
}

.team-copy {
  align-self: center;
}

.team-copy .text-link {
  margin-top: 28px;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  padding-top: 75px;
}

.final-cta > div {
  max-width: 790px;
}

.final-cta h2 {
  margin-bottom: 20px;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 35px 65px;
  align-items: center;
  margin: 30px 20px 20px;
  padding: 45px clamp(25px, 5vw, 70px) 30px;
  border-radius: 34px;
  background: var(--aqua-light);
  font-size: 0.88rem;
}

.footer-contact {
  display: grid;
  gap: 2px;
}

.footer-links {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--petrol-soft);
  font-size: 0.78rem;
}

:focus-visible {
  outline: 3px solid rgba(199, 164, 54, 0.68);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 930px;
    padding-inline: 20px;
    padding-bottom: 45px;
  }

  .hero-image {
    background:
      linear-gradient(to bottom, rgba(250, 250, 242, 0.2) 25%, rgba(250, 250, 242, 0.96) 72%),
      url("assets/spirit-healing-for-kids-hero.jpg") 67% 30% / auto 62% no-repeat,
      var(--aqua-light);
  }

  .hero-card {
    width: 100%;
    margin-top: 410px;
  }

  .intro-grid,
  .approach-card,
  .perspective,
  .stories,
  .process,
  .team-card {
    grid-template-columns: 1fr;
  }

  .intro-grid h2,
  .stories-lead {
    position: static;
  }

  .perspective {
    gap: 45px;
  }

  blockquote {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .stories {
    gap: 45px;
  }

  .process {
    gap: 15px;
  }

  .team-card {
    gap: 20px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 8px 8px 8px 10px;
    border-radius: 21px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.61rem;
  }

  .nav-cta {
    min-height: 43px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 880px;
    padding-top: 90px;
  }

  .hero-image {
    background-position: 69% 12%;
    background-size: auto 51%;
  }

  .hero-card {
    margin-top: 345px;
    padding: 27px 22px 30px;
    border-radius: 26px;
  }

  .hero-card h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .section {
    width: min(100% - 28px, 1240px);
    padding-block: 75px;
  }

  .approach,
  .process {
    width: calc(100% - 20px);
  }

  .approach {
    padding-top: 0;
  }

  .approach-card,
  .team-card {
    padding: 34px 23px;
    border-radius: 30px;
  }

  .approach-signature {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .approach-signature i {
    width: 1px;
    height: 25px;
    margin: 0 auto;
  }

  .approach-signature b {
    line-height: 0.9;
  }

  blockquote {
    border-radius: 30px;
  }

  .story-flow article {
    padding-left: 46px;
  }

  .process {
    padding: 65px 23px;
    border-radius: 30px;
  }

  .process li {
    grid-template-columns: 40px 1fr;
    gap: 15px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin: 10px;
    padding: 35px 24px 25px;
    border-radius: 28px;
  }

  .footer-links,
  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
