:root {
  --deep-green: #193c34;
  --green-2: #264f43;
  --sage: #8fa992;
  --sage-light: #dce6d7;
  --gold: #b98b3e;
  --cream: #f7f1e7;
  --cream-2: #fbf8f1;
  --white: #ffffff;
  --charcoal: #202421;
  --muted: #5f685f;
  --line: #d8d0c0;
  --soft: #ece5d8;
  --focus: #745018;
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-2);
  color: var(--charcoal);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  background: var(--sage-light);
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 8px 12px;
  background: var(--deep-green);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.prototype-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(251, 248, 241, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.site-shell-header {
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--deep-green);
  border-radius: 8px;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 800;
}

.brand-link strong,
.brand-link span span {
  display: block;
}

.brand-link span span {
  color: var(--muted);
  font-size: 13px;
}

.concept-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 2px 8px rgba(25, 60, 52, 0.12);
}

.header-nav-groups {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.page-nav a,
.footer-grid a,
.footer-bottom a {
  text-decoration: none;
}

.page-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  color: var(--deep-green);
  padding: 7px 10px;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a.is-active {
  background: var(--sage-light);
}

.page-nav .nav-cta {
  background: var(--deep-green);
  color: var(--white);
}

.page-nav .nav-cta:hover,
.page-nav .nav-cta:focus-visible,
.page-nav .nav-cta.is-active {
  background: #0f2f28;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-green);
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.concept-tab,
.button {
  min-height: 40px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.concept-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep-green);
  padding: 8px 12px;
  cursor: pointer;
}

.concept-tab:hover,
.concept-tab:focus-visible {
  border-color: var(--deep-green);
}

.concept-tab.is-active {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.concept {
  min-height: calc(100svh - var(--header-height));
  animation: fade-in 180ms ease;
}

body[data-page="home"] main {
  padding-bottom: 76px;
}

.concept[hidden] {
  display: none;
}

@keyframes fade-in {
  from {
    opacity: 0.01;
  }

  to {
    opacity: 1;
  }
}

h1,
h2 {
  margin: 0;
  color: var(--deep-green);
  font-weight: 800;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
}

p {
  margin: 0;
}

.faith-line {
  max-width: 670px;
  color: var(--green-2);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 10px 18px;
}

.button.primary {
  background: var(--deep-green);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #0f2f28;
}

.button.secondary {
  border-color: var(--deep-green);
  color: var(--deep-green);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--sage-light);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero-image {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: 72px 24px;
}

.hero-image img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.84) 38%, rgba(247, 241, 231, 0.18) 72%);
}

.hero-copy {
  width: min(700px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.hero-copy,
.split-copy,
.minimal-hero,
.story-hero > div,
.premium-copy {
  display: grid;
  gap: 24px;
}

.hero-copy p:not(.faith-line),
.split-copy p:not(.faith-line),
.minimal-hero p:not(.faith-line),
.story-hero p:not(.faith-line),
.premium-copy p:not(.faith-line) {
  max-width: 660px;
  color: #37413a;
  font-size: 19px;
}

.section-grid,
.two-column,
.quiet-grid,
.credibility-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 48px;
  align-items: start;
}

.section-grid section,
.two-column section,
.quiet-grid section,
.credibility-grid section {
  display: grid;
  gap: 14px;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.panel-list,
.quiet-grid section,
.credibility-grid section,
.story-steps section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-list li {
  padding: 16px 18px;
  color: var(--deep-green);
  font-weight: 800;
}

.trust-band,
.testimonial-band {
  padding: 72px 24px;
  background: var(--deep-green);
  color: var(--cream-2);
}

.trust-band h2,
.testimonial-band h2 {
  max-width: var(--max);
  margin: 0 auto 18px;
  color: var(--white);
}

.trust-band p,
.testimonial-band p,
.testimonial-band blockquote {
  max-width: var(--max);
  margin: 0 auto;
}

.trust-band p,
.testimonial-band p {
  color: #e4eadd;
  font-size: 18px;
}

.scheduler {
  width: min(var(--max), calc(100% - 48px));
  margin: 72px auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.scheduler h2 {
  margin-bottom: 10px;
}

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

.scheduler-box {
  display: grid;
  min-height: 190px;
  margin-top: 22px;
  place-items: center;
  border: 1px dashed var(--sage);
  border-radius: 8px;
  background: var(--cream-2);
  color: var(--deep-green);
  font-weight: 800;
  text-align: center;
}

.split-hero {
  display: grid;
  width: min(1280px, calc(100% - 48px));
  min-height: 72svh;
  margin: 0 auto;
  padding: 72px 0 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.split-panel {
  display: grid;
  gap: 14px;
}

.split-panel img,
.image-strip img,
.story-hero img,
.premium-hero img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.split-panel img {
  aspect-ratio: 4 / 3;
}

.panel-list {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.panel-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.minimal-hero {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 42px;
  text-align: center;
  justify-items: center;
}

.minimal-hero h1 {
  max-width: 900px;
}

.minimal-hero p:not(.faith-line) {
  margin: 0 auto;
}

.centered-actions {
  justify-content: center;
}

.image-strip {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.image-strip img {
  aspect-ratio: 16 / 7;
}

.hero-landscape img {
  aspect-ratio: 16 / 8;
  object-position: center;
}

.full-bleed-hero {
  position: relative;
  display: grid;
  min-height: 70svh;
  padding: 88px 24px 64px;
  place-items: center;
  overflow: hidden;
  background: var(--deep-green);
}

.full-bleed-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.full-bleed-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 42, 36, 0.42) 0%, rgba(18, 42, 36, 0.74) 100%),
    linear-gradient(90deg, rgba(20, 43, 37, 0.2) 0%, rgba(20, 43, 37, 0.44) 100%);
}

.full-bleed-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(72vw, 1100px);
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.full-bleed-hero-copy h1,
.full-bleed-hero-copy .faith-line,
.full-bleed-hero-copy p:not(.faith-line) {
  color: var(--white);
}

.full-bleed-hero-copy p:not(.faith-line) {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.55;
}

.full-bleed-hero-copy h1 {
  width: 100%;
  max-width: 16ch;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
  text-wrap: balance;
}

.full-bleed-hero-copy .faith-line {
  max-width: 48rem;
  font-size: 16px;
}

.full-bleed-hero-copy .actions {
  margin-top: 8px;
}

.full-bleed-hero-copy p:not(.faith-line),
.full-bleed-hero-copy .actions {
  width: min(66vw, 860px);
}

.full-bleed-hero-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.full-bleed-hero-copy .button.secondary:hover,
.full-bleed-hero-copy .button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.subpage-hero {
  min-height: 54svh;
  padding-top: 76px;
  padding-bottom: 58px;
}

.subpage-hero::after {
  background:
    linear-gradient(180deg, rgba(18, 42, 36, 0.48) 0%, rgba(18, 42, 36, 0.78) 100%),
    linear-gradient(90deg, rgba(20, 43, 37, 0.18) 0%, rgba(20, 43, 37, 0.42) 100%);
}

.subpage-hero .full-bleed-hero-copy h1 {
  max-width: 17ch;
}

.minimal-section {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 28px;
}

.centered-section {
  display: grid;
  gap: 18px;
  text-align: center;
}

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

.minimal-details {
  display: grid;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.minimal-details section {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.minimal-details h2 {
  font-size: clamp(25px, 3.6vw, 36px);
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216, 208, 192, 0.72);
  color: #38423a;
}

.plain-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.minimal-band {
  padding: 72px 24px;
  background: var(--soft);
}

.minimal-band div {
  display: grid;
  width: min(780px, 100%);
  margin: 0 auto;
  gap: 18px;
  text-align: center;
}

.minimal-band p {
  color: #424c44;
  font-size: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(37, 79, 67, 0.18);
  border-radius: 8px;
  background: var(--cream-2);
  color: var(--deep-green);
  padding: 7px 10px;
  font-weight: 700;
}

.care-rows {
  display: grid;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
  gap: 0;
}

.care-rows section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.care-rows section:last-child {
  border-bottom: 1px solid var(--line);
}

.care-rows span {
  color: var(--gold);
  font-weight: 800;
}

.care-rows div {
  display: grid;
  gap: 10px;
}

.care-rows h2 {
  font-size: clamp(25px, 3.5vw, 36px);
}

.care-rows p {
  color: var(--muted);
  font-size: 17px;
}

.quiet-grid,
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expanded-quiet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

.why-choose-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.why-choose-intro {
  display: grid;
  width: min(760px, 100%);
  margin: 0 auto 28px;
  gap: 14px;
  text-align: center;
}

.why-choose-intro p {
  color: var(--muted);
  font-size: 18px;
}

.why-choose-grid {
  gap: 18px;
}

.why-choose-grid section {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(37, 79, 67, 0.14);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-choose-grid section:hover,
.why-choose-grid section:focus-within {
  border-color: rgba(37, 79, 67, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #f5f0e7 100%);
  box-shadow: 0 10px 24px rgba(25, 60, 52, 0.08);
}

.why-choose-badge {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(37, 79, 67, 0.22);
  border-radius: 999px;
  background: var(--sage-light);
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 800;
}

.why-choose-grid h3 {
  margin: 0;
  color: var(--deep-green);
  font-size: 28px;
  line-height: 1.12;
}

.why-choose-grid p {
  color: #445047;
  font-size: 17px;
  line-height: 1.55;
}

.quiet-grid section,
.credibility-grid section {
  padding: 22px;
}

.page-card-grid {
  padding-top: 72px;
}

.quiet-grid h2,
.credibility-grid h2 {
  font-size: 24px;
}

.quiet-grid p,
.credibility-grid p {
  color: #445047;
}

.practice-info-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.practice-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.practice-info-grid section {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(37, 79, 67, 0.14);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.practice-info-grid h2 {
  font-size: clamp(22px, 2.6vw, 30px);
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(216, 208, 192, 0.72);
  color: #38423a;
  font-weight: 700;
}

.info-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-list {
  display: grid;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.faq-item {
  display: grid;
  gap: 10px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

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

.faq-item h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.faq-item p {
  color: var(--muted);
  font-size: 17px;
}

.contact-layout,
.schedule-layout {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 42px;
  align-items: start;
}

.contact-layout > div,
.contact-card,
.support-panel,
.schedule-panel {
  display: grid;
  gap: 18px;
}

.contact-card,
.support-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.contact-card h2,
.support-panel h2,
.contact-layout h2,
.schedule-layout h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}

.contact-layout > div > p,
.schedule-panel > p {
  color: var(--muted);
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--deep-green);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  padding: 11px 12px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--deep-green);
  outline: 3px solid var(--sage-light);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 14px;
}

.form-status:not(:empty) {
  color: var(--deep-green);
  font-weight: 800;
}

.contact-card dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.contact-card dt {
  color: var(--deep-green);
  font-weight: 800;
}

.contact-card dd {
  margin: 0 0 10px;
  color: #445047;
}

.full-width {
  width: 100%;
}

.schedule-panel {
  width: auto;
  margin: 0;
}

.schedule-panel .actions {
  margin-top: 2px;
}

.site-footer {
  padding: 48px 24px 28px;
  border-top: 1px solid var(--line);
  background: var(--deep-green);
  color: var(--cream-2);
}

.footer-grid,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(240px, 0.9fr);
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 800;
}

.footer-grid p,
.footer-grid a,
.footer-bottom p {
  color: #e4eadd;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

.compact-scheduler {
  margin-top: 0;
}

.minimal-scheduler {
  width: min(920px, calc(100% - 48px));
  text-align: center;
}

.minimal-scheduler p {
  max-width: 640px;
  margin: 0 auto;
}

.story-hero,
.premium-hero {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: 70svh;
  margin: 0 auto;
  padding: 72px 0 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.story-hero img {
  aspect-ratio: 4 / 5;
  height: min(560px, 70svh);
}

.story-steps {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 72px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.story-steps section {
  padding: 20px;
}

.story-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 8px;
  color: var(--deep-green);
  font-weight: 800;
}

.story-steps h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.premium-hero {
  width: 100%;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 56px;
  background: var(--soft);
}

.premium-hero img {
  aspect-ratio: 16 / 11;
}

.testimonial-band blockquote {
  color: var(--white);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
}

.testimonial-band p {
  margin-top: 16px;
}

.premium-scheduler {
  margin-bottom: 96px;
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .prototype-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-shell-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-shell-header .brand-link {
    grid-column: 1;
  }

  .menu-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .header-nav-groups {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .site-shell-header.is-open .header-nav-groups {
    display: grid;
  }

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

  .section-grid,
  .two-column,
  .split-hero,
  .story-hero,
  .premium-hero {
    grid-template-columns: 1fr;
  }

  .quiet-grid,
  .credibility-grid,
  .story-steps,
  .expanded-quiet-grid,
  .minimal-details,
  .practice-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .full-bleed-hero-copy {
    width: min(78vw, 860px);
  }

  .full-bleed-hero-copy h1 {
    max-width: 125vw;
  }

  .subpage-hero .full-bleed-hero-copy h1 {
    max-width: 16ch;
  }

  .full-bleed-hero-copy p:not(.faith-line),
  .full-bleed-hero-copy .actions {
    width: min(72vw, 720px);
  }

  .hero-image::after {
    background: rgba(247, 241, 231, 0.88);
  }

  .story-hero img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .contact-layout,
  .schedule-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 76px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 29px;
  }

  .prototype-header,
  .hero-image,
  .scheduler,
  .contact-card,
  .support-panel,
  .quiet-grid section,
  .credibility-grid section,
  .story-steps section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-link {
    min-width: 0;
  }

  .page-nav a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  .concept-switcher {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .concept-switcher .concept-tab {
    flex: 1 1 calc(50% - 8px);
  }

  .hero-image,
  .split-hero,
  .story-hero,
  .premium-hero,
  .full-bleed-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .section-grid,
  .two-column,
  .quiet-grid,
  .credibility-grid,
  .story-steps,
  .split-hero,
  .story-hero,
    .image-strip,
    .minimal-hero,
    .scheduler,
    .practice-info-section,
    .contact-layout,
    .schedule-layout,
    .faq-list {
    width: min(100% - 32px, var(--max));
  }

  .quiet-grid,
  .credibility-grid,
  .story-steps,
  .expanded-quiet-grid,
  .minimal-details,
  .practice-info-grid {
    grid-template-columns: 1fr;
  }

  .care-rows section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .full-bleed-hero {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .full-bleed-hero-copy {
    width: min(100%, 32rem);
    gap: 16px;
  }

  .full-bleed-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(34px, 10vw, 46px);
  }

  .subpage-hero .full-bleed-hero-copy h1 {
    max-width: 12ch;
  }

  .full-bleed-hero-copy p:not(.faith-line) {
    font-size: 17px;
  }

  .full-bleed-hero-copy p:not(.faith-line),
  .full-bleed-hero-copy .actions,
  .full-bleed-hero-copy .faith-line {
    width: 100%;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .tag-list {
    justify-content: stretch;
  }

  .tag-list li {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }
}
