@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap");
:root {
  --brand-primary: #866eaf;
  --brand-primary-dark: #35485e;
  --brand-secondary: #298fc2;
  --brand-coral: #ec5e61;
  --brand-highlight: #c5d32d;
  --brand-ink: #2f3438;
  --brand-ink-soft: #5f666c;
  --brand-accent: #298fc2;
  --brand-accent-soft: #dbeef7;
  --surface: #faf8f5;
  --surface-strong: #f1ede6;
  --surface-card: #fffdf9;
  --surface-soft: #f4f0f8;
  --surface-mist: #eef3f5;
  --border-soft: rgba(72, 63, 53, 0.11);
  --text-main: #2f3438;
  --text-muted: #646d75;
  --shadow-soft: 0 24px 52px rgba(35, 43, 49, 0.1);
  --shadow-card: 0 12px 28px rgba(35, 43, 49, 0.06);
  --radius-card: 22px;
  --radius-pill: 999px;
  --container-width: 1180px;
  --container-narrow: 920px;
  --toolbar-offset: 0px;
  --header-shell-height: 5.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--surface);
}

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

a {
  color: var(--brand-primary-dark);
  text-decoration: none;
}
a:hover {
  color: var(--brand-primary);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

main ul,
main ol {
  padding-left: 1.25rem;
}

[id] {
  scroll-margin-top: calc(8rem + var(--toolbar-offset));
}

body.ccm-toolbar-visible,
body:has(#ccm-toolbar) {
  --toolbar-offset: 48px;
}

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

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

body.nav-open {
  overflow: hidden;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.button,
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.button:hover,
.btn:hover {
  transform: translateY(-1px);
}

.button--primary,
.btn-primary {
  background: var(--brand-accent);
  color: var(--surface);
}

.button--ghost,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--surface);
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  background: var(--surface);
  color: var(--brand-primary-dark);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--surface);
  background: transparent;
}

.button--secondary {
  border-color: rgba(41, 143, 194, 0.22);
  background: var(--brand-highlight);
  color: var(--brand-ink);
}

.text-link {
  font-weight: 700;
  color: var(--brand-primary-dark);
}

.text-link--light {
  color: var(--surface);
}

.drive-documents-block {
  margin: 3rem 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(53, 72, 94, 0.1);
  border-radius: 1.75rem;
  background: rgba(244, 240, 248, 0.68);
  box-shadow: 0 20px 42px rgba(38, 53, 68, 0.08);
}

.drive-documents-block__header {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.drive-documents-block__title {
  margin-bottom: 0.9rem;
}

.drive-documents-block__intro {
  color: var(--brand-ink-soft);
}
.drive-documents-block__intro p:last-child {
  margin-bottom: 0;
}

.drive-documents-block__actions {
  margin-top: 1.25rem;
}

.drive-documents-block__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.drive-documents-block__toolbar-copy {
  min-width: 0;
}

.drive-documents-block__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.drive-documents-block__count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
}

.drive-documents-block__toolbar-link {
  white-space: nowrap;
}

.drive-documents-block__documents {
  display: grid;
  gap: 1rem;
}

.drive-documents-block__documents--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drive-documents-block__document {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(53, 72, 94, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.drive-documents-block__document:hover {
  transform: translateY(-1px);
  border-color: rgba(41, 143, 194, 0.22);
  box-shadow: 0 10px 20px rgba(38, 53, 68, 0.06);
}

.drive-documents-block__document-main {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  min-width: 0;
}

.drive-documents-block__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-accent-soft);
  color: var(--brand-primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drive-documents-block__document-copy {
  min-width: 0;
}

.drive-documents-block__document-title {
  margin: 0 0 0.32rem;
  font-size: 1.02rem;
  line-height: 1.28;
  color: var(--brand-primary-dark);
}
.drive-documents-block__document-title a {
  color: inherit;
  text-decoration: none;
}
.drive-documents-block__document-title a:hover {
  color: var(--brand-secondary);
}

.drive-documents-block__document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--brand-ink-soft);
}

.drive-documents-block__document-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.drive-documents-block__download {
  color: var(--brand-ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}
.drive-documents-block__download:hover {
  color: var(--brand-secondary);
}

.drive-documents-block__empty {
  padding: 1.25rem 1.4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-ink-soft);
}

@media (max-width: 900px) {
  .drive-documents-block__documents--grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .drive-documents-block {
    margin: 2.25rem 0;
    padding: 1.15rem;
    border-radius: 1.25rem;
  }
  .drive-documents-block__toolbar,
  .drive-documents-block__document {
    flex-direction: column;
    align-items: stretch;
  }
  .drive-documents-block__document-main {
    gap: 0.8rem;
  }
  .drive-documents-block__document-actions {
    padding-top: 0.25rem;
    justify-content: flex-start;
  }
}
.sermons-block {
  display: grid;
  gap: 1.75rem;
}

.sermons-block__header {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.sermons-block__title {
  margin: 0;
}

.sermons-block__intro {
  margin: 0;
  color: #646d75;
}

.sermons-block__library {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 1.9rem;
  border: 1px solid rgba(41, 143, 194, 0.12);
  background: linear-gradient(180deg, rgba(134, 110, 175, 0.08), rgba(241, 237, 230, 0.92));
}

.sermons-block__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.sermons-block__toolbar-copy {
  display: grid;
  gap: 0.45rem;
}

.sermons-block__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #298fc2;
}

.sermons-block__count {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #35485e;
}

.sermons-block__items {
  display: grid;
  gap: 1rem;
}

.sermons-block__feature {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border-radius: 1.6rem;
  border: 1px solid rgba(41, 143, 194, 0.11);
  background: #fffdf9;
  box-shadow: 0 18px 36px rgba(41, 143, 194, 0.08);
}

.sermons-block__feature-copy {
  display: grid;
  gap: 0.45rem;
}

.sermons-block__feature-eyebrow,
.sermons-block__archive-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #298fc2;
}

.sermons-block__feature-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  color: #35485e;
}

.sermons-block__feature-meta,
.sermons-block__archive-meta {
  margin: 0;
  font-size: 0.95rem;
  color: #646d75;
}

.sermons-block__description {
  margin: 0;
  color: #2f3438;
}

.sermons-block__player-wrap {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(134, 110, 175, 0.08);
}

.sermons-block__player-wrap--feature {
  padding: 1rem 1.1rem;
}

.sermons-block__player {
  width: 100%;
}

.sermons-block__player-wrap {
  --plyr-color-main: #298fc2;
  --plyr-audio-controls-background: rgba(255, 253, 249, 0.1);
  --plyr-audio-control-color: #35485e;
  --plyr-audio-control-color-hover: #fffdf9;
  --plyr-audio-control-background-hover: #298fc2;
  --plyr-audio-range-track-background: rgba(53, 72, 94, 0.14);
  --plyr-audio-progress-buffered-background: rgba(53, 72, 94, 0.18);
  --plyr-range-thumb-background: #fffdf9;
  --plyr-range-thumb-shadow: 0 1px 2px rgba($color-brand-primary-dark, 0.16), 0 0 0 1px rgba($color-brand-primary-dark, 0.12);
  --plyr-font-family: inherit;
  --plyr-control-radius: 999px;
  --plyr-menu-radius: 0.9rem;
  --plyr-tooltip-background: #35485e;
  --plyr-tooltip-color: #fffdf9;
}

.sermons-block .plyr {
  border-radius: 0.9rem;
  overflow: visible;
}

.sermons-block .plyr--audio .plyr__controls {
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
}

.sermons-block .plyr__time {
  color: #646d75;
  font-weight: 600;
}

.sermons-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.sermons-block__archive {
  display: grid;
  gap: 0.85rem;
}

.sermons-block__archive-list {
  display: grid;
  gap: 0.85rem;
}

.sermons-block__archive-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(41, 143, 194, 0.1);
  background: rgba(255, 253, 249, 0.9);
}

.sermons-block__archive-item.is-active {
  border-color: rgba(41, 143, 194, 0.28);
  background: rgba(41, 143, 194, 0.08);
}

.sermons-block__archive-copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.sermons-block__archive-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #35485e;
}

.sermons-block__archive-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.sermons-block__empty {
  padding: 1.5rem;
  border-radius: 1.3rem;
  border: 1px dashed rgba(41, 143, 194, 0.22);
  background: rgba(255, 253, 249, 0.78);
  color: #646d75;
}

@media (max-width: 768px) {
  .sermons-block__toolbar {
    display: grid;
  }
  .sermons-block__archive-item {
    display: grid;
    align-items: start;
  }
  .sermons-block__archive-actions {
    flex-wrap: wrap;
  }
}
.whats-on-block {
  display: grid;
  gap: 1.5rem;
}

.whats-on-block__header {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}

.whats-on-block__title {
  margin: 0;
}

.whats-on-block__intro {
  margin: 0;
  color: #646d75;
}

.whats-on-block__items {
  display: grid;
  gap: 1rem;
}

.whats-on-block--cards .whats-on-block__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whats-on-block__item {
  display: grid;
  gap: 0.7rem;
  padding: 1.3rem 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(41, 143, 194, 0.12);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 14px 30px rgba(41, 143, 194, 0.06);
}

.whats-on-block--compact .whats-on-block__item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: none;
}

.whats-on-block__item-main {
  display: grid;
  gap: 0.45rem;
}

.whats-on-block--compact .whats-on-block__item-main {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
}

.whats-on-block__item-copy {
  display: grid;
  gap: 0.35rem;
}

.whats-on-block__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #298fc2;
}

.whats-on-block__item-title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.16;
  color: #35485e;
}

.whats-on-block__summary {
  margin: 0;
  color: #2f3438;
}

.whats-on-block--compact .whats-on-block__item-title {
  font-size: 1rem;
  line-height: 1.25;
}

.whats-on-block--compact .whats-on-block__summary {
  color: #646d75;
  font-size: 0.94rem;
}

.whats-on-block__item-link {
  white-space: nowrap;
}

.whats-on-block--compact .whats-on-block__eyebrow {
  min-width: 5.4rem;
  margin-top: 0.2rem;
}

.whats-on-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

@media (max-width: 768px) {
  .whats-on-block--cards .whats-on-block__items {
    grid-template-columns: 1fr;
  }
  .whats-on-block--compact .whats-on-block__item {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .whats-on-block--compact .whats-on-block__item-main {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .whats-on-block--compact .whats-on-block__eyebrow {
    min-width: 0;
    margin-top: 0;
  }
  .whats-on-block__item-link {
    white-space: normal;
  }
}
.section-eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: var(--toolbar-offset);
  z-index: 40;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}
.site-header.scrolled {
  box-shadow: 0 18px 40px rgba(18, 28, 35, 0.16);
}

.header-shell {
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-shell__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-shell-height);
  gap: 1rem;
}
@media (max-width: 760px) {
  .header-shell__layout {
    gap: 0.75rem;
  }
}

.header-shell__menu {
  justify-self: start;
}

.brand {
  justify-self: center;
}

.brand-logo {
  width: clamp(180px, 20vw, 310px);
  transition: opacity 0.2s ease;
}
@media (max-width: 760px) {
  .brand-logo {
    width: min(62vw, 240px);
  }
}

.brand-logo--wheel {
  width: clamp(52px, 5vw, 68px);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  justify-self: end;
  min-width: 0;
}
@media (max-width: 1100px) {
  .header-actions .button {
    display: none;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.menu-toggle:hover {
  background: rgba(41, 143, 194, 0.08);
}

.menu-toggle__icon,
.site-menu__close-icon {
  position: relative;
  width: 1.1rem;
  height: 0.9rem;
  flex: 0 0 auto;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.site-menu__close-icon::before,
.site-menu__close-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle__icon::before {
  top: 0.15rem;
}

.menu-toggle__icon::after {
  bottom: 0.15rem;
}

body.menu-open .menu-toggle__icon::before,
body.menu-open .menu-toggle__icon::after {
  top: 50%;
  bottom: auto;
  transform-origin: center;
}
body.menu-open .menu-toggle__icon::before {
  transform: translateY(-50%) rotate(45deg);
}
body.menu-open .menu-toggle__icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
body.menu-open .menu-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.site-menu {
  position: fixed;
  inset: calc(var(--toolbar-offset) + var(--header-shell-height)) 0 0;
  z-index: 35;
  width: 100%;
  height: calc(100dvh - var(--toolbar-offset) - var(--header-shell-height));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.site-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  background: #35485e;
}

.site-menu__panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #35485e;
  color: rgba(255, 255, 255, 0.92);
  overflow-y: auto;
}

.site-menu__shell {
  min-height: 100%;
  padding-top: clamp(1rem, 2.6vh, 1.5rem);
  padding-bottom: 2.5rem;
}

.site-menu__content {
  display: grid;
  min-height: 100%;
  align-content: space-between;
  gap: 2rem;
}

.site-menu__primary {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 0.95fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 1100px) {
  .site-menu__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .site-menu__primary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.site-menu__group {
  min-width: 0;
}

.site-menu__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-menu__heading,
.site-menu__feature-link {
  display: inline-block;
  margin: 0;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--surface);
  text-decoration: none;
}
.site-menu__heading:hover, .site-menu__heading.is-active,
.site-menu__feature-link:hover,
.site-menu__feature-link.is-active {
  color: #c9bbeb;
}

.site-menu__list,
.site-menu__feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.site-menu__item + .site-menu__item,
.site-menu__feature-item + .site-menu__feature-item {
  margin-top: 0.7rem;
}

.site-menu__link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}
.site-menu__link:hover, .site-menu__link.is-active {
  color: var(--surface);
}

.site-menu__group--links .site-menu__feature-link {
  margin-top: 0.1rem;
  font-size: clamp(1.2rem, 1.95vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.site-menu__group--links .site-menu__feature-item + .site-menu__feature-item {
  margin-top: 0.45rem;
}

.site-menu__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 760px) {
  .site-menu__footer {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
  }
}

.site-menu__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}
.site-menu__meta p + p {
  margin-top: 0.45rem;
}
.site-menu__meta a {
  color: var(--surface);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(201, 187, 235, 0.7);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}
.site-menu__meta a:hover {
  color: #c9bbeb;
  text-decoration-color: currentColor;
}

.site-header--hero {
  top: calc(var(--toolbar-offset) - 1px);
  margin-top: 0;
}
.site-header--hero .header-shell {
  background: #35485e;
  border-color: transparent;
  backdrop-filter: none;
}
.site-header--hero .menu-toggle,
.site-header--hero .brand-logo,
.site-header--hero .header-actions {
  color: var(--surface);
}
.site-header--hero .menu-toggle {
  color: var(--surface);
}
.site-header--hero .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.site-header--hero .menu-toggle[aria-expanded=true] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}
.site-header--hero .header-actions .button--primary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--surface);
}
.site-header--hero .header-actions .button--primary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header--overlay {
  position: absolute;
  inset: var(--toolbar-offset) 0 auto;
}
.site-header--overlay.scrolled .header-shell {
  background: rgba(53, 72, 94, 0.95);
  backdrop-filter: blur(16px);
}

@media (max-width: 760px) {
  :root {
    --header-shell-height: 4.9rem;
  }
}
.site-footer {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--brand-primary-dark), var(--brand-ink));
  color: rgba(255, 255, 255, 0.82);
}
.site-footer .container {
  width: min(100% - 2.4rem, var(--container-width));
}
@media (max-width: 760px) {
  .site-footer {
    margin: 0;
    border-radius: 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 1.5rem;
  padding: 2.4rem 0 2rem;
}
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 760px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-col h3,
.footer-col h4,
.footer-col p,
.footer-col a,
.footer-col strong {
  color: var(--surface);
}

.footer-bottom p {
  color: var(--surface);
}

.home-hero {
  position: relative;
  overflow: visible;
  padding: calc(var(--header-shell-height) + var(--toolbar-offset)) 0 0;
  background: var(--brand-primary-dark);
  color: var(--surface);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}
.home-hero__brand {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-top: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: -16rem;
  flex-flow: column;
  align-items: center;
  gap: 1.7rem;
  text-align: center;
}
@media (max-width: 760px) {
  .home-hero__brand {
    padding-top: 1.1rem;
    margin-bottom: -7rem;
    gap: 1rem;
  }
}
.home-hero__logo {
  width: clamp(300px, 37vw, 560px);
}
@media (max-width: 760px) {
  .home-hero__logo {
    width: min(76vw, 340px);
  }
}
.home-hero__tagline {
  max-width: 45rem;
  margin: 0;
  font-size: clamp(0.88rem, 1.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: rgba(245, 244, 241, 0.84);
  text-wrap: balance;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .home-hero__tagline {
    max-width: 18rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}
.home-hero__button {
  min-height: 2.6rem;
  min-width: 8.25rem;
  padding: 0.7rem 1.2rem;
  margin-top: 0.85rem;
  border-color: rgba(245, 244, 241, 0.3);
  background: rgba(245, 244, 241, 0.12);
  color: var(--surface);
  box-shadow: 0 12px 24px rgba(18, 25, 33, 0.14);
  backdrop-filter: blur(10px);
}
.home-hero__button:hover {
  border-color: rgba(245, 244, 241, 0.52);
  background: rgba(245, 244, 241, 0.18);
  color: var(--surface);
}
@media (max-width: 760px) {
  .home-hero__button {
    width: auto;
    min-width: 7.5rem;
    min-height: 2.35rem;
    padding: 0.65rem 1rem;
    margin-top: 0.45rem;
  }
}
.home-hero__media {
  position: relative;
  min-height: 0;
  animation: rise-in 0.9s ease 0.1s both;
}

.home-intro {
  position: relative;
  padding: 16rem 0 4rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-strong) 100%);
}
.home-intro__content {
  max-width: 52rem;
  margin: 0 auto;
  animation: rise-in 0.85s ease both;
}
.home-intro__content h1 {
  color: var(--brand-ink);
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 0 0 1rem;
  max-width: 12ch;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
}
@media (max-width: 760px) {
  .home-intro__content h1 {
    max-width: 8ch;
  }
}
.home-intro .hero-lead {
  max-width: 40rem;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 400;
  color: var(--text-muted);
}
@media (max-width: 760px) {
  .home-intro .hero-lead {
    max-width: 28rem;
  }
}
.home-intro .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.9rem;
}
@media (max-width: 760px) {
  .home-intro .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.home-intro .button--ghost {
  border-color: rgba(53, 72, 94, 0.22);
  color: var(--brand-primary-dark);
  background: transparent;
}
@media (max-width: 760px) {
  .home-intro {
    padding: 10rem 0 3rem;
  }
}

.gathering-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gathering-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.gathering-item__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.gathering-item strong,
.gathering-item strong a {
  color: var(--surface);
}
.gathering-item p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.home-story,
.home-one-church,
.home-featured,
.home-next-steps,
.home-life,
.home-visit,
.home-cta,
.page-content {
  position: relative;
}

.home-story {
  padding: 2rem 0 3.5rem;
  background: var(--surface);
}
.home-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: 2rem;
  align-items: start;
}
.home-story__intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}
.home-story__copy {
  max-width: 56ch;
  padding-top: 0.5rem;
}
.home-story__copy p {
  max-width: 60ch;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.08rem;
}
@media (max-width: 1100px) {
  .home-story__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .home-story {
    padding-top: 1rem;
  }
}

.home-story--new {
  padding-top: 3rem;
  padding-bottom: 4.25rem;
  background: linear-gradient(180deg, rgba(244, 240, 248, 0.68) 0%, var(--surface) 100%);
}
.home-story--new .home-story__layout {
  padding: 1.6rem;
  border: 1px solid rgba(134, 110, 175, 0.08);
  border-radius: calc(var(--radius-card) + 0.1rem);
  background: rgba(255, 253, 249, 0.62);
}
.home-story--new .home-story__copy p {
  max-width: 52ch;
}
@media (max-width: 760px) {
  .home-story--new {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
  .home-story--new .home-story__layout {
    padding: 1.25rem;
  }
}

.home-one-church {
  padding: 2rem 0 5rem;
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-soft) 100%);
}

.home-sunday-panel {
  display: grid;
  grid-column: 1/-1;
  gap: 1.4rem;
  padding: 1.6rem;
  border: 1px solid rgba(134, 110, 175, 0.1);
  border-radius: calc(var(--radius-card) + 0.25rem);
  background: rgba(255, 253, 249, 0.72);
}

.home-sunday-panel__summary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) auto;
  gap: 1.25rem 1.5rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .home-sunday-panel__summary {
    grid-template-columns: 1fr;
  }
}

.home-sunday-panel__heading h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  line-height: 1.02;
}

.home-sunday-panel__lead {
  max-width: 34rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.home-sunday-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}
.home-sunday-panel__actions .button--primary {
  min-height: 2.85rem;
  padding-inline: 1.25rem;
  box-shadow: 0 10px 22px rgba(41, 143, 194, 0.18);
}
.home-sunday-panel__actions .button--ghost {
  border-color: rgba(53, 72, 94, 0.18);
  background: rgba(255, 255, 255, 0.56);
  color: var(--brand-primary-dark);
}
@media (max-width: 1100px) {
  .home-sunday-panel__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .home-sunday-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.one-church-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 1rem;
}
@media (max-width: 1100px) {
  .one-church-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .one-church-grid {
    grid-template-columns: 1fr;
  }
}

.community-card {
  padding: 1.6rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border: 1px solid rgba(134, 110, 175, 0.1);
}
.community-card h3 {
  margin-bottom: 0.55rem;
}

.community-card--feature {
  background: rgba(244, 240, 248, 0.88);
}

.community-card--lead {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(134, 110, 175, 0.16);
}
.community-card--lead h3 {
  font-size: clamp(1.7rem, 2.35vw, 2.2rem);
  line-height: 0.98;
  color: var(--brand-primary-dark);
}
.community-card--lead p:last-child {
  max-width: 24ch;
  color: var(--text-muted);
}

.community-card--location h3 {
  max-width: 9ch;
}
.community-card--location p:last-child {
  max-width: 26ch;
}

.feature-stack,
.home-featured__aside,
.visit-sidebar {
  display: grid;
  gap: 1rem;
}

.feature-card,
.teaching-card,
.info-card,
.step-card,
.cta-card,
.page-hero__content {
  border-radius: var(--radius-card);
}

.feature-card,
.teaching-card,
.info-card {
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.feature-card {
  padding: 1.6rem;
}
.feature-card__eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary-dark);
}
.feature-card__eyebrow--light {
  color: rgba(255, 255, 255, 0.74);
}

.feature-card p:last-child,
.info-card p:last-child,
.step-card p:last-child {
  margin-bottom: 0;
}

.home-featured {
  padding: 0 0 5.5rem;
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
}
.home-featured__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(290px, 0.8fr);
  gap: 2rem;
  align-items: start;
}
.home-featured__main h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}
@media (max-width: 1100px) {
  .home-featured__layout {
    grid-template-columns: 1fr;
  }
}

.teaching-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1.25rem;
  padding: 1.2rem;
}
.teaching-card__media img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.teaching-card__body {
  padding: 0.5rem;
}
.teaching-card__meta {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary-dark);
}
@media (max-width: 760px) {
  .teaching-card {
    grid-template-columns: 1fr;
  }
}

.info-card {
  padding: 1.6rem;
}

.info-card--accent {
  background: linear-gradient(145deg, var(--brand-secondary), var(--brand-primary-dark));
  color: var(--surface);
}
.info-card--accent h3,
.info-card--accent p,
.info-card--accent a {
  color: var(--surface);
}
.info-card--accent .stacked-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.info-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(23, 51, 74, 0.12);
}
.info-list li:first-child {
  padding-top: 0;
  border-top: 0;
}
.info-list span {
  color: var(--text-muted);
}

.home-next-steps {
  overflow: hidden;
  padding: 5.5rem 0;
  background: radial-gradient(circle at top right, rgba(245, 244, 241, 0.08), transparent 24%), linear-gradient(135deg, var(--brand-primary-dark) 0%, #44596f 100%);
}
.home-next-steps h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1100px) {
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  padding: 1.5rem;
  border: 1px solid rgba(245, 244, 241, 0.14);
  background: rgba(245, 244, 241, 0.06);
  color: rgba(255, 255, 255, 0.88);
}
.step-card h3,
.step-card p,
.step-card a {
  color: var(--surface);
}
.step-card__label {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.home-cta {
  padding: 5rem 0 6rem;
}

.home-life {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .life-grid {
    grid-template-columns: 1fr;
  }
}

.life-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(134, 110, 175, 0.1);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}
.life-card__media {
  height: 12rem;
  background: linear-gradient(135deg, #edf4bf, var(--brand-highlight));
}
.life-card__body {
  padding: 1.6rem;
}
.life-card--groups .life-card__media {
  background: linear-gradient(135deg, #ece7f5, #866eaf);
}
.life-card--serve .life-card__media {
  background: linear-gradient(135deg, #dceff8, #298fc2);
}
.life-card--care .life-card__media {
  background: linear-gradient(135deg, #d9dde0, #35485e);
}
.life-card--kids {
  border-color: rgba(197, 211, 45, 0.34);
}
.life-card--kids .feature-card__eyebrow {
  color: #8f9c18;
}

.home-visit {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, var(--surface-mist) 0%, var(--surface) 100%);
}
.home-visit__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .home-visit__layout {
    grid-template-columns: 1fr;
  }
}

.visit-card,
.visit-side-card {
  border-radius: var(--radius-card);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.visit-card {
  padding: 1.5rem;
  border: 1px solid rgba(134, 110, 175, 0.1);
}
.visit-card__lead {
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
}
.visit-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (max-width: 760px) {
  .visit-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.visit-card .whats-on-block {
  gap: 1rem;
}
.visit-card .whats-on-block__header {
  gap: 0.55rem;
  max-width: none;
}
.visit-card .whats-on-block__title {
  max-width: 10ch;
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 0.96;
}
.visit-card .whats-on-block__intro {
  max-width: 44ch;
  font-size: 0.96rem;
  font-weight: 300;
}
.visit-card .whats-on-block--compact .whats-on-block__items {
  gap: 0.65rem;
}
.visit-card .whats-on-block--compact .whats-on-block__item {
  padding: 0.72rem 0;
  border: 0;
  border-top: 1px solid rgba(134, 110, 175, 0.12);
  border-radius: 0;
  background: transparent;
}
.visit-card .whats-on-block--compact .whats-on-block__item:first-child {
  padding-top: 0.2rem;
  border-top: 0;
}
.visit-card .whats-on-block--compact .whats-on-block__eyebrow {
  color: var(--brand-primary);
}
.visit-card .whats-on-block--compact .whats-on-block__item-title {
  font-size: 0.98rem;
  color: var(--brand-primary-dark);
}
.visit-card .whats-on-block--compact .whats-on-block__summary {
  max-width: 48ch;
  font-size: 0.9rem;
}
.visit-card .whats-on-block__actions {
  margin-top: 0.1rem;
}
.visit-card .whats-on-block__item-link {
  color: rgba(53, 72, 94, 0.88);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.visit-details {
  display: grid;
  gap: 1rem;
  margin: 1.45rem 0 1.6rem;
}
.visit-details__item {
  padding-top: 1rem;
  border-top: 1px solid rgba(134, 110, 175, 0.12);
}
.visit-details__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.visit-side-card {
  padding: 1.75rem;
}

.visit-side-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.visit-side-list li {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(41, 143, 194, 0.12);
}
.visit-side-list li:first-child {
  padding-top: 0;
  border-top: 0;
}
.visit-side-list span {
  color: var(--text-muted);
}

.quick-links-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.quick-links-list a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--surface);
  font-weight: 500;
}

.quick-links-list--compact {
  grid-template-columns: 1fr;
}
.quick-links-list--compact a {
  min-height: 2.8rem;
  background: rgba(53, 72, 94, 0.08);
  color: var(--brand-primary-dark);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2.4rem;
  background: linear-gradient(90deg, rgba(245, 244, 241, 0.08) 0 24%, transparent 24%), linear-gradient(135deg, var(--brand-primary-dark), #4b6075);
  box-shadow: var(--shadow-soft);
}
.cta-card h2,
.cta-card p {
  color: var(--surface);
}
.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}
.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}
@media (max-width: 1100px) {
  .cta-card {
    grid-template-columns: 1fr;
  }
  .cta-card__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .cta-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.page-hero,
.full-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: #35485e;
}
.page-hero::before,
.full-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
  pointer-events: none;
}
.page-hero::after,
.full-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  z-index: 0;
  background: transparent;
}
.page-hero,
.full-page-hero {
  --hero-media-offset: clamp(3rem, 5vw, 6rem);
  --hero-brand-stage: clamp(13rem, 18vw, 16rem);
}
.page-hero__layout,
.full-page-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.page-hero__brand, .page-hero__media,
.full-page-hero__brand,
.full-page-hero__media {
  grid-column: 1;
  grid-row: 1;
}
.page-hero__brand,
.full-page-hero__brand {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: var(--hero-brand-stage);
  padding-top: clamp(0.8rem, 2vw, 1.35rem);
  text-align: center;
}
.page-hero__media,
.full-page-hero__media {
  position: relative;
  min-height: 0;
  margin-top: var(--hero-media-offset);
}
@media (max-width: 760px) {
  .page-hero,
  .full-page-hero {
    --hero-media-offset: 5.5rem;
    --hero-brand-stage: 10rem;
  }
  .page-hero__brand,
  .full-page-hero__brand {
    gap: 0.55rem;
    padding-top: 0.45rem;
  }
}
.page-hero,
.full-page-hero {
  overflow: visible;
  position: relative;
  z-index: 2;
  padding: calc(var(--header-shell-height) + var(--toolbar-offset) - 3.75rem) 0 0;
  background: var(--brand-primary-dark);
  color: var(--surface);
}
.page-hero .container,
.full-page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__title,
.full-page-hero__title {
  width: min(100%, 12ch);
  margin: 0;
  font-size: clamp(3.2rem, 7.8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--surface);
}
.page-hero__description,
.full-page-hero__description {
  width: min(100%, 42rem);
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: rgba(245, 244, 241, 0.84);
}
.page-hero .section-eyebrow,
.full-page-hero .section-eyebrow {
  color: rgba(245, 244, 241, 0.72);
}
@media (max-width: 760px) {
  .page-hero,
  .full-page-hero {
    padding: calc(var(--header-shell-height) + var(--toolbar-offset) - 1.35rem) 0 0;
  }
  .page-hero__title,
  .full-page-hero__title {
    width: min(100%, 8ch);
  }
  .page-hero__description,
  .full-page-hero__description {
    width: min(100%, 26rem);
  }
}

.page-hero--custom .container > * {
  background: transparent;
  box-shadow: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  margin: 0 auto -12rem;
  padding: 0;
}
@media (max-width: 1100px) {
  .hero-visual {
    margin-bottom: -10rem;
  }
}
@media (max-width: 760px) {
  .hero-visual {
    margin-bottom: -7rem;
  }
}

.hero-image-card {
  position: relative;
  min-height: 29rem;
  border: 1px solid rgba(245, 244, 241, 0.16);
  border-radius: 1.85rem;
  box-shadow: 0 32px 80px rgba(18, 25, 33, 0.28);
  overflow: hidden;
}
.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(134, 110, 175, 0.42), transparent 28%), radial-gradient(circle at 76% 20%, rgba(236, 94, 97, 0.36), transparent 24%), radial-gradient(circle at 70% 78%, rgba(41, 143, 194, 0.34), transparent 30%), linear-gradient(180deg, rgba(245, 244, 241, 0.08), rgba(245, 244, 241, 0.02)), linear-gradient(135deg, rgba(41, 143, 194, 0.62), rgba(134, 110, 175, 0.42) 56%, rgba(236, 94, 97, 0.3) 100%);
  z-index: 1;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.2) brightness(0.84);
}
@media (max-width: 760px) {
  .hero-image-card {
    min-height: 18rem;
    border-radius: 1.5rem;
  }
}

h2 {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(53, 72, 94, 0.12);
  box-shadow: inset 0 -3px 0 rgba(53, 72, 94, 0.12);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--brand-secondary);
}

h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.7rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--brand-primary);
}

h4 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-coral);
}

p,
li {
  font-size: 1.09rem;
  line-height: 1.82;
  color: var(--text-main);
}

p {
  margin-bottom: 1.35rem;
}

p + h2,
p + h3,
ul + h2,
ul + h3,
ol + h2,
ol + h3 {
  margin-top: 2.1rem;
}

ul,
ol {
  margin-bottom: 1.2rem;
  padding-left: 1.4rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

ul ::marker,
ol ::marker {
  color: var(--brand-secondary);
  font-weight: 700;
}

a {
  color: var(--brand-primary-dark);
  text-decoration: underline;
  text-decoration-color: rgba(134, 110, 175, 0.35);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

blockquote {
  margin: 2rem 0;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 4px solid var(--brand-secondary);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--brand-ink);
}
blockquote p {
  max-width: 56ch;
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--brand-ink);
}
blockquote p:first-child {
  position: relative;
  padding-left: 0.85rem;
}
blockquote p:first-child::before {
  content: "“";
  position: absolute;
  left: -0.2rem;
  top: -0.1em;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(134, 110, 175, 0.45);
}

hr {
  width: 100%;
  height: 1px;
  margin: 2.25rem 0;
  border: 0;
  background: linear-gradient(90deg, rgba(41, 143, 194, 0), rgba(41, 143, 194, 0.22), rgba(134, 110, 175, 0.18), rgba(41, 143, 194, 0));
}

table {
  width: 100%;
  margin: 1.25rem 0;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 0.95rem;
  border-bottom: 1px solid rgba(47, 52, 56, 0.12);
  text-align: left;
}

.page-content {
  position: relative;
  z-index: 1;
  padding: 1rem 0 5rem;
}
.page-content .content-intro,
.page-content .content-section,
.page-content .faq-section {
  width: min(100%, 46rem);
  min-width: 0;
}
.page-content .content-intro {
  margin: 0 auto 1.75rem;
  text-align: center;
}
.page-content .content-intro p {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.page-content .content-section,
.page-content .faq-section {
  margin: 0 auto;
}
.page-content .content-section + .content-section,
.page-content .content-section + .faq-section,
.page-content .faq-section + .action-panel,
.page-content .card-grid + .content-section,
.page-content .info-strip + .content-section {
  margin-top: 0.5rem;
}
.page-content .info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 1rem;
  border: 1px solid rgba(134, 110, 175, 0.07);
  border-radius: 1.5rem;
  background: rgba(238, 243, 245, 0.72);
}
@media (max-width: 768px) {
  .page-content .info-strip {
    grid-template-columns: 1fr;
  }
}
.page-content .info-strip__item,
.page-content .card-grid__item,
.page-content .action-panel {
  min-width: 0;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(134, 110, 175, 0.08);
  border-radius: 1.25rem;
  background: var(--surface-card);
  box-shadow: none;
}
.page-content .info-strip__item {
  background: rgba(255, 253, 249, 0.9);
  border-color: rgba(134, 110, 175, 0.07);
}
.page-content .info-strip__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-ink-soft);
}
.page-content .info-strip__value {
  margin: 0;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--brand-primary-dark);
}
.page-content .info-strip__item p:last-child,
.page-content .card-grid__item p:last-child,
.page-content .action-panel p:last-child {
  margin-bottom: 0;
}
.page-content .card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  gap: 1rem;
  margin: 1.25rem 0 2.75rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(134, 110, 175, 0.08);
  border-radius: 1.5rem;
  background: rgba(134, 110, 175, 0.08);
}
@media (max-width: 768px) {
  .page-content .card-grid {
    grid-template-columns: 1fr;
  }
}
.page-content .card-grid__item {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0.2rem 0 0.2rem 1.35rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.page-content .card-grid__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(134, 110, 175, 0.95), rgba(41, 143, 194, 0.82));
}
.page-content .card-grid__item h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  overflow-wrap: anywhere;
  color: var(--brand-primary-dark);
}
@media (max-width: 760px) {
  .page-content .content-intro,
  .page-content .content-section,
  .page-content .faq-section,
  .page-content .card-grid,
  .page-content .action-panel {
    width: 100%;
  }
  .page-content .info-strip__item,
  .page-content .card-grid__item,
  .page-content .action-panel {
    padding: 1.15rem 1.1rem;
  }
  .page-content .info-strip,
  .page-content .faq-accordion {
    padding: 0.9rem;
  }
  .page-content .card-grid {
    padding: 1.05rem;
  }
  .page-content .card-grid__item {
    padding: 0.15rem 0 0.15rem 1.15rem;
  }
  .page-content .card-grid__item::before {
    left: 0;
    top: 0.15rem;
    bottom: 0.15rem;
  }
}
.page-content .highlight-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.page-content .highlight-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.95rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(134, 110, 175, 0.08);
  border-radius: 1rem;
  background: var(--surface-card);
  box-shadow: 0 10px 22px rgba(35, 43, 49, 0.03);
  line-height: 1.65;
}
.page-content .highlight-list li::before {
  content: "";
  display: block;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 0 0 0.22rem rgba(255, 255, 255, 0.88);
}
@media (max-width: 760px) {
  .page-content .highlight-list li {
    column-gap: 0.85rem;
    padding: 0.95rem 1rem;
  }
}
.page-content .faq-accordion {
  margin: 1.5rem 0 2.25rem;
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
  border: 1px solid rgba(134, 110, 175, 0.07);
  border-radius: 1.5rem;
  background: rgba(134, 110, 175, 0.08);
}
.page-content .faq-accordion__item {
  border: 1px solid rgba(134, 110, 175, 0.06);
  border-radius: 1.1rem;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: none;
  overflow: clip;
}
.page-content .faq-accordion__summary {
  position: relative;
  padding: 1.2rem 3rem 1.2rem 1.2rem;
  list-style: none;
  cursor: pointer;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-primary-dark);
}
.page-content .faq-accordion__summary::-webkit-details-marker {
  display: none;
}
.page-content .faq-accordion__summary::before, .page-content .faq-accordion__summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.95rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.page-content .faq-accordion__summary::after {
  transform: translateY(-50%) rotate(90deg);
}
.page-content .faq-accordion__item[open] .faq-accordion__summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.2);
}
.page-content .faq-accordion__answer {
  padding: 0 1.2rem 1.2rem;
}
.page-content .faq-accordion__answer p:last-child {
  margin-bottom: 0;
}
.page-content .action-panel {
  width: min(100%, 46rem);
  margin: 0 auto;
  padding: 1.6rem;
  background: var(--surface-soft);
  border: 1px solid rgba(134, 110, 175, 0.08);
}
.page-content .action-panel h2 {
  margin-top: 0;
}
.page-content .action-panel__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}
@media (max-width: 760px) {
  .page-content .action-panel__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
.page-content .content-section--family .highlight-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 760px) {
  .page-content .content-section--family .highlight-list {
    grid-template-columns: 1fr;
  }
}
.page-content .content-section--about p:last-child {
  margin-bottom: 0;
}

.page-content__inner h1:first-child,
.page-content__inner h2:first-child,
.page-content__inner h3:first-child {
  margin-top: 0;
}

.page-hero--has-image + .page-content,
.full-page-hero--has-image + .page-content {
  padding-top: 16rem;
}
@media (max-width: 760px) {
  .page-hero--has-image + .page-content,
  .full-page-hero--has-image + .page-content {
    padding-top: 10rem;
  }
}

.page-content__inner--builder {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}
.page-content__inner--builder .ccm-image-block {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: none;
}
@media (max-width: 768px) {
  .page-content__inner--builder .ccm-image-block {
    border-radius: 1.1rem;
  }
}
.page-content__inner--builder .ccm-layout-column-wrapper {
  width: 100%;
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.page-content__inner--builder .ccm-layout-column-wrapper + .ccm-layout-column-wrapper {
  margin-top: clamp(1.25rem, 2vw, 2rem);
}
.page-content__inner--builder .ccm-layout-column {
  min-width: 0;
}
.page-content__inner--builder .ccm-layout-column + .ccm-layout-column {
  padding-left: clamp(0.25rem, 1vw, 0.75rem);
}
.page-content__inner--builder .ccm-layout-column-inner {
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.page-content__inner--builder .ccm-layout-column-inner > :first-child {
  margin-top: 0;
}
.page-content__inner--builder .ccm-layout-column-inner > :last-child {
  margin-bottom: 0;
}
.page-content__inner--builder .ccm-layout-column-inner:has(.ccm-image-block) {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.page-content__inner--builder .ccm-layout-column-inner:has(.ccm-image-block) .ccm-image-block {
  min-height: 100%;
  object-fit: cover;
}

.is-wide,
.align-wide {
  width: min(100vw - 2rem, var(--container-width) + 180px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.is-full,
.align-full,
.breakout-full {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.has-surface,
.content-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(41, 143, 194, 0.12);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: 0 18px 36px rgba(53, 72, 94, 0.08);
}

body.ccm-edit-mode .page-content__inner--builder .ccm-area-drag-area,
body.ccm-edit-mode .page-content__inner--builder .ccm-area-footer {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}
body.ccm-edit-mode .page-content__inner--builder .ccm-area-drag-area {
  min-height: 6rem;
  border: 1px dashed rgba(41, 143, 194, 0.35);
  border-radius: 1.25rem;
  background: rgba(41, 143, 194, 0.06);
}

.not-found-page {
  background: var(--surface);
}
.not-found-page__hero {
  padding: clamp(2.45rem, 4vw, 3.45rem) 0 clamp(2rem, 3vw, 2.55rem);
  border-bottom: 1px solid rgba(53, 72, 94, 0.12);
  background: var(--surface);
  color: var(--text-main);
}
.not-found-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 43rem) minmax(18rem, 24rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  justify-content: space-between;
}
.not-found-page__content {
  max-width: 43rem;
}
.not-found-page__code {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  margin: 0 0 1rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(53, 72, 94, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(238, 243, 245, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.not-found-page__content h1 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  font-size: clamp(3rem, 5.4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--brand-primary-dark);
}
.not-found-page__lead {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.72;
  color: var(--text-muted);
}
.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.not-found-page__actions .button--ghost-light {
  border-color: rgba(53, 72, 94, 0.22);
  background: rgba(255, 253, 249, 0.48);
  color: var(--brand-primary-dark);
}
.not-found-page__actions .button--ghost-light:hover {
  border-color: rgba(41, 143, 194, 0.34);
  background: rgba(219, 238, 247, 0.7);
}
.not-found-page__detail {
  align-self: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(53, 72, 94, 0.12);
  border-left: 3px solid var(--brand-highlight);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-card);
  color: var(--text-main);
}
.not-found-page__detail span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.not-found-page__detail strong {
  display: block;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--brand-primary-dark);
}
.not-found-page__detail p {
  margin: 0.25rem 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.not-found-page__wayfinder {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(53, 72, 94, 0.09);
  background: var(--surface-card);
}
.not-found-page__wayfinder-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}
.not-found-page__wayfinder p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.not-found-page__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.not-found-page__link {
  display: grid;
  gap: 0.2rem;
  min-height: 3.85rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(53, 72, 94, 0.1);
  border-radius: 8px;
  background: rgba(238, 243, 245, 0.54);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.not-found-page__link:hover {
  border-color: rgba(41, 143, 194, 0.28);
  background: rgba(219, 238, 247, 0.72);
  transform: translateY(-1px);
}
.not-found-page__link strong {
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--brand-primary-dark);
}
.not-found-page__link span {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.not-found-page__custom-content {
  padding: 3rem 0 5rem;
  color: var(--text-main);
}
@media (max-width: 1100px) {
  .not-found-page__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .not-found-page__detail {
    width: min(100%, 32rem);
  }
  .not-found-page__wayfinder-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .not-found-page__links {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .not-found-page__hero {
    padding: 2.35rem 0 2.1rem;
  }
  .not-found-page__content h1 {
    font-size: 2.9rem;
  }
  .not-found-page__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .not-found-page__detail {
    width: 100%;
  }
}
