:root {
  --radius: 0.5rem;
  --void: #25231f;
  --warm-black: #2b281f;
  --gold: #c8922a;
  --pale-gold: #e8c97a;
  --parchment: #f0e8d5;
  --ivory: #fbf7ec;
  --ember: #d4521a;
  --umber: #4a321e;
  --background: #fbf8ef;
  --foreground: #342b23;
  --card: #fffdf6;
  --muted: #efe6d1;
  --muted-foreground: #746653;
  --border: #e0d3b8;
  --gradient-warm: linear-gradient(135deg, var(--pale-gold), var(--parchment));
  --gradient-gold: linear-gradient(120deg, #d7a943, #b36f24);
  --shadow-soft: 0 4px 24px -8px rgba(120, 84, 37, 0.22);
  --shadow-elegant: 0 20px 50px -20px rgba(99, 64, 24, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.dg-scroll-lock {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--warm-black);
  color: var(--ivory);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(200, 146, 42, 0.8);
  outline-offset: 4px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(224, 211, 184, 0.6);
  background: rgba(251, 248, 239, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--foreground);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 8px 18px rgba(111, 38, 61, 0.14));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 58px;
}

.site-nav li {
  list-style: none;
}

.site-nav .menu-item-has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 18px;
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(224, 211, 184, 0.82);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.97);
  box-shadow: var(--shadow-elegant);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav .menu-item-has-children:hover .sub-menu,
.site-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav .sub-menu a {
  border-radius: 12px;
  padding: 9px 11px;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
  background: rgba(200, 146, 42, 0.12);
}

.site-nav a,
.nav-dropdown > a {
  color: var(--muted-foreground);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  color: var(--foreground);
}

.site-nav .nav-cta {
  border-radius: 999px;
  background: var(--gold);
  color: var(--warm-black);
  padding: 9px 18px;
  box-shadow: var(--shadow-soft);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 18px;
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(224, 211, 184, 0.82);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.97);
  box-shadow: var(--shadow-elegant);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  border-radius: 12px;
  padding: 9px 11px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(200, 146, 42, 0.12);
}

.map-link {
  color: var(--ember);
  font-weight: 800;
  text-decoration-color: rgba(212, 82, 26, 0.35);
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  isolate: isolate;
  min-height: 88vh;
  overflow: hidden;
  background: var(--void);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(37, 35, 31, 0.84), rgba(43, 40, 31, 0.58), rgba(43, 40, 31, 0.2)),
    radial-gradient(circle at 68% 48%, rgba(200, 146, 42, 0.24), transparent 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 88vh;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(232, 201, 122, 0.42);
  border-radius: 999px;
  background: rgba(200, 146, 42, 0.12);
  color: var(--gold);
  padding: 7px 15px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-top: 22px;
  color: var(--ivory);
  font-size: 5.6rem;
}

.hero .hero-badge {
  background: rgba(43, 40, 31, 0.38);
  color: var(--pale-gold);
}

.hero .lead {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(232, 201, 122, 0.92);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: transform 260ms ease, background 180ms ease;
  will-change: transform;
}

.button:hover {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
}

.button.primary {
  background: var(--gold);
  color: var(--warm-black);
  box-shadow: var(--shadow-elegant);
}

.button.secondary {
  border: 1px solid rgba(232, 201, 122, 0.46);
  color: var(--ivory);
  background: rgba(251, 248, 239, 0.08);
}

.section {
  padding: 92px 24px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-narrow .eyebrow,
.section-heading .eyebrow {
  margin-inline: auto;
  background: rgba(200, 146, 42, 0.12);
  color: var(--gold);
}

.page-hero .eyebrow,
.vision-map-heading .eyebrow {
  background: rgba(200, 146, 42, 0.18);
  color: #9d6716;
}

.section h2,
.page-hero h1 {
  color: var(--foreground);
  font-size: 3.55rem;
}

.section p,
.page-hero p {
  color: var(--muted-foreground);
}

.section-narrow p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  gap: 8px;
  color: var(--ember);
  font-weight: 800;
  text-decoration: none;
}

.soft-section {
  background: rgba(240, 232, 213, 0.52);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(200, 146, 42, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 211, 184, 0.7);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    var(--spotlight-color),
    transparent 76%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.card:hover::before,
.card:focus-within::before {
  opacity: 0.58;
}

.card > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  padding: 32px;
  transition: transform 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.icon-mark {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(200, 146, 42, 0.16);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
}

.icon-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.resource-logo {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 20px;
  background: rgba(251, 248, 239, 0.88);
  box-shadow: var(--shadow-soft);
}

.resource-logo svg {
  width: 30px;
  height: 30px;
  fill: var(--ember);
}

.video-embed {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-elegant);
  background: var(--warm-black);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  border: 1px solid rgba(200, 146, 42, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 11px;
}

.aog-card {
  border: 1px solid rgba(232, 201, 122, 0.42);
  border-radius: 28px;
  background: linear-gradient(135deg, #d4a23d, #b46b16);
  box-shadow: 0 28px 80px -34px rgba(99, 64, 24, 0.7);
  color: var(--ivory);
  padding: 42px;
}

.aog-card h2,
.aog-card p,
.aog-card .text-link {
  color: var(--ivory);
}

.aog-card .text-link {
  text-decoration-color: rgba(245, 240, 232, 0.62);
}

.aog-logo {
  display: block;
  width: min(240px, 70%);
  margin: 0 auto 26px;
  object-fit: contain;
}

.aog-mark {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 20px;
  background: var(--gradient-gold);
  color: var(--ivory);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.uk-aog-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.uk-aog-footer .aog-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 0.95rem;
  margin: 0;
}

.uk-aog-footer a {
  color: var(--gold);
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 22px;
  color: var(--foreground);
  font-size: 1.45rem;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted-foreground);
}

.image-slot {
  display: grid;
  min-height: 180px;
  place-items: center;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(200, 146, 42, 0.22), rgba(212, 82, 26, 0.12)),
    var(--muted);
  color: var(--umber);
  font-weight: 900;
  text-align: center;
  padding: 24px;
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-elegant);
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.founder-card-image,
.event-card-image {
  border-radius: 18px;
  box-shadow: none;
  margin-bottom: 22px;
}

.founder-card-image img,
.event-card-image img {
  aspect-ratio: 4 / 3;
  min-height: 0;
  height: auto;
}

.quote-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  color: rgba(200, 146, 42, 0.5);
  font-family: Fraunces, Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

blockquote {
  margin: 0;
  color: var(--foreground);
  font-family: Fraunces, Georgia, serif;
  font-size: 2.55rem;
  line-height: 1.2;
}

.quote-author {
  margin-top: 22px;
  color: var(--muted-foreground);
  font-size: 0.86rem;
  font-weight: 800;
}

.cta-panel {
  overflow: hidden;
  border-radius: 32px;
  background: var(--gradient-gold);
  padding: 74px 40px;
  color: var(--ivory);
  text-align: center;
  box-shadow: var(--shadow-elegant);
}

.cta-panel h2 {
  color: var(--ivory);
}

.cta-panel p {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(251, 247, 236, 0.9);
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(224, 211, 184, 0.7);
  padding-bottom: 12px;
}

.detail-row strong {
  color: var(--foreground);
}

.legal-copy {
  max-width: 900px;
  margin: 0 auto;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted-foreground);
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.page-hero {
  border-bottom: 1px solid rgba(224, 211, 184, 0.7);
  background: var(--gradient-warm);
  padding: 92px 24px;
  text-align: center;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-top: 18px;
}

.page-hero p {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.split-copy {
  text-align: left;
}

.split-copy h2 {
  margin-top: 14px;
}

.split-copy p {
  margin-top: 18px;
  font-size: 1.04rem;
}

.page-content {
  max-width: 960px;
}

.page-content > * + * {
  margin-top: 1.35rem;
}

.page-content p,
.page-content li {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.stat-card {
  padding: 30px;
  text-align: center;
}

.stat-card .stat {
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 2.8rem;
}

.stat-card h3 {
  margin-top: 10px;
}

.form-card {
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 26px;
}

.contact-item {
  display: flex;
  gap: 16px;
  text-align: left;
}

.contact-item .icon-mark {
  flex: 0 0 auto;
}

.contact-item a {
  color: var(--muted-foreground);
  text-decoration-color: rgba(116, 102, 83, 0.35);
}

.prayer-form {
  display: grid;
  gap: 18px;
}

.prayer-form label {
  display: grid;
  gap: 8px;
  color: var(--foreground);
  font-weight: 800;
  text-align: left;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background);
  color: var(--foreground);
  font: inherit;
  padding: 13px 15px;
}

.prayer-form input:focus,
.prayer-form textarea:focus {
  outline: 2px solid rgba(200, 146, 42, 0.55);
  outline-offset: 2px;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid rgba(224, 211, 184, 0.7);
  background: rgba(240, 232, 213, 0.5);
}

.footer-inner {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 42px;
  padding: 58px 24px;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-brand img {
  width: 64px;
  border-radius: 12px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(200, 146, 42, 0.38);
  border-radius: 999px;
  background: rgba(251, 248, 239, 0.78);
  color: var(--foreground);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.social-buttons svg {
  width: 20px;
  height: 20px;
  fill: var(--ember);
}

.testimony-card {
  max-width: 920px;
  margin: 36px auto 0;
  padding: 34px;
  text-align: left;
}

.testimony-card p + p {
  margin-top: 18px;
}

.visual-icon {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(232, 201, 122, 0.34), rgba(200, 146, 42, 0.18));
  color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.visual-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.vision-map-story {
  padding: 96px 24px 136px;
  background:
    radial-gradient(circle at 30% 18%, rgba(232, 201, 122, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(251, 248, 239, 0.92), rgba(240, 232, 213, 0.48));
}

.vision-map-inner {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.vision-map-stage {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid rgba(224, 211, 184, 0.8);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 253, 246, 0.94), rgba(240, 232, 213, 0.74)),
    var(--card);
  box-shadow: var(--shadow-elegant);
  padding: 28px;
}

.vision-map-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.vision-map-heading .eyebrow {
  margin-inline: auto;
}

.vision-map-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.globe-frame-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 201, 122, 0.24), transparent 58%),
    rgba(245, 240, 232, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.globe-frame-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.12), transparent 34%),
    radial-gradient(circle at 50% 46%, transparent 56%, rgba(42, 24, 0, 0.12));
}

.globe-frame {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.globe-frame-wrap figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(232, 201, 122, 0.44);
  border-radius: 999px;
  background: rgba(17, 16, 8, 0.72);
  color: var(--ivory);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.map-progress {
  overflow: hidden;
  height: 7px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(200, 146, 42, 0.14);
}

.map-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-gold);
  transition: width 220ms ease;
}

.vision-map-copy {
  display: grid;
  gap: 34px;
  padding-block: 12vh;
}

.vision-step {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.62;
  transition: opacity 260ms ease, transform 260ms ease;
}

.vision-step.is-current {
  opacity: 1;
  transform: translateX(-6px);
}

.vision-step h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

.vision-step p {
  margin-top: 20px;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.story-scroll-section {
  padding: 104px 24px;
}

.story-scroll-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 54px;
  align-items: start;
}

.story-scroll-grid.story-reverse {
  grid-template-columns: 0.58fr 0.42fr;
}

.story-portrait {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-elegant);
  margin-top: 28px;
}

.story-portrait img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.story-scroll-card.no-spotlight-card::before {
  display: none;
}

.story-scroll-aside {
  position: sticky;
  top: 120px;
}

.story-scroll-aside h2 {
  margin-top: 18px;
  font-size: 3.2rem;
}

.story-scroll-aside p {
  margin-top: 18px;
  color: var(--muted-foreground);
}

.story-scroll-card {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.17rem;
  line-height: 1.9;
}

.text-highlight {
  display: inline;
  background-image: linear-gradient(transparent 62%, rgba(232, 201, 122, 0.78) 62%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  color: var(--muted-foreground);
  transition: background-size 900ms cubic-bezier(0.25, 1, 0.5, 1), color 260ms ease;
}

.text-highlight.active {
  background-size: 100% 100%;
  color: var(--foreground);
}

.testimony-guide h2 {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.testimony-carousel {
  --carousel-rotation: 0deg;
  --carousel-depth: clamp(270px, 34vw, 430px);
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  margin-top: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 146, 42, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 253, 246, 0.88), rgba(240, 232, 213, 0.74));
  perspective: 1500px;
}

.testimony-carousel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: radial-gradient(circle at 50% 50%, transparent 46%, rgba(251, 248, 239, 0.82) 78%);
  pointer-events: none;
}

.testimony-carousel-track {
  --items: 8;
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  min-height: 620px;
  cursor: grab;
  transform: rotateY(var(--carousel-rotation)) rotateX(-4deg);
  transform-style: preserve-3d;
  user-select: none;
  will-change: transform;
}

.testimony-carousel-track.is-dragging {
  cursor: grabbing;
}

.testimony-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: clamp(190px, 22vw, 280px);
  border: 1px solid rgba(224, 211, 184, 0.85);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 28px 70px -34px rgba(99, 64, 24, 0.62);
  color: var(--ivory);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transform:
    translate(-50%, -50%)
    rotateY(calc((360deg / var(--items)) * var(--i)))
    translateZ(var(--carousel-depth))
    translateY(var(--lift, 0px));
  transition: box-shadow 220ms ease, transform 220ms ease;
  backface-visibility: visible;
  touch-action: none;
}

.testimony-slide:nth-child(1) { --i: 0; }
.testimony-slide:nth-child(2) { --i: 1; }
.testimony-slide:nth-child(3) { --i: 2; }
.testimony-slide:nth-child(4) { --i: 3; }
.testimony-slide:nth-child(5) { --i: 4; }
.testimony-slide:nth-child(6) { --i: 5; }
.testimony-slide:nth-child(7) { --i: 6; }
.testimony-slide:nth-child(8) { --i: 7; }

.testimony-slide:hover,
.testimony-slide:focus {
  box-shadow: 0 26px 60px -28px rgba(99, 64, 24, 0.55);
  outline: none;
  --lift: -16px;
}

.testimony-slide img {
  width: 100%;
  height: clamp(270px, 31vw, 380px);
  object-fit: cover;
  pointer-events: none;
}

.dome-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 18px 18px;
  background: linear-gradient(transparent, rgba(37, 35, 31, 0.9));
}

.dome-caption h3 {
  color: var(--ivory);
  font-size: 1.18rem;
}

.dome-caption p {
  margin-top: 8px;
  color: rgba(245, 240, 232, 0.88);
  font-size: 0.86rem;
  line-height: 1.45;
}

.testimony-library {
  margin-top: 72px;
}

.testimony-accordion {
  display: grid;
  max-width: 940px;
  margin: 34px auto 0;
  gap: 14px;
}

.testimony-accordion details {
  border: 1px solid rgba(224, 211, 184, 0.78);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.72);
  box-shadow: 0 18px 44px -36px rgba(99, 64, 24, 0.45);
  overflow: hidden;
}

.testimony-accordion summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
}

.testimony-accordion summary::-webkit-details-marker {
  display: none;
}

.testimony-accordion summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(200, 146, 42, 0.38);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 900;
}

.testimony-accordion details[open] summary::after {
  content: "-";
}

.testimony-accordion summary span {
  color: var(--foreground);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
}

.testimony-accordion summary small {
  display: block;
  margin-top: 5px;
  color: var(--muted-foreground);
  font-size: 0.92rem;
  font-weight: 600;
}

.testimony-accordion details p {
  margin: 0;
  border-top: 1px solid rgba(224, 211, 184, 0.66);
  color: var(--muted-foreground);
  line-height: 1.8;
  padding: 20px 24px 24px;
}

.testimony-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.testimony-detail-media {
  position: sticky;
  top: 110px;
}

.testimony-detail-prose {
  max-width: 74ch;
}

.testimony-detail-prose p {
  margin: 0 0 1.35rem;
  color: var(--muted-foreground);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.85;
}

.testimony-detail-prose .text-link {
  display: inline-flex;
  margin-top: 24px;
}

.testimony-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(37, 35, 31, 0.72);
  padding: 24px;
}

.testimony-modal.is-open {
  display: flex;
}

.testimony-modal-card {
  display: grid;
  width: min(920px, 100%);
  max-height: min(760px, 92vh);
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-elegant);
}

.testimony-modal-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.testimony-modal-copy {
  padding: 42px;
  overflow-y: auto;
}

.testimony-modal-copy p {
  margin-top: 18px;
  color: var(--muted-foreground);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(232, 201, 122, 0.5);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.5rem;
}

.staggered-menu {
  display: none;
  position: fixed;
  top: 14px;
  right: 24px;
  z-index: 120;
}

.staggered-toggle {
  position: relative;
  z-index: 125;
  display: grid;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 7px;
  border: 1px solid rgba(200, 146, 42, 0.45);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.staggered-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--warm-black);
  transition: transform 220ms ease, background 220ms ease;
}

.staggered-menu.is-open .staggered-toggle {
  background: var(--ivory);
}

.staggered-menu.is-open .staggered-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.staggered-menu.is-open .staggered-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.staggered-panel {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.staggered-layer {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(390px, calc(100vw - 24px));
  transform: translateX(110%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.layer-one {
  background: var(--gold);
}

.layer-two {
  background: linear-gradient(135deg, var(--parchment), var(--ivory));
  transition-delay: 90ms;
}

.staggered-content {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  width: min(390px, calc(100vw - 24px));
  padding: 72px 34px 34px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 34px;
  background: linear-gradient(160deg, rgba(251, 248, 239, 0.96), rgba(240, 232, 213, 0.96));
  transform: translateX(110%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 170ms;
  box-shadow: -30px 0 80px rgba(37, 35, 31, 0.24);
}

.staggered-menu.is-open .staggered-panel {
  pointer-events: auto;
}

.staggered-menu.is-open .staggered-layer,
.staggered-menu.is-open .staggered-content {
  transform: translateX(0);
}

.staggered-logo {
  width: 104px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.staggered-content nav {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.staggered-content nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--foreground);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.95rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 420ms ease, transform 420ms ease, color 180ms ease;
  transition-delay: var(--delay);
}

.staggered-menu.is-open .staggered-content nav a {
  opacity: 1;
  transform: translateX(0);
}

.staggered-content nav a:hover {
  color: var(--ember);
}

.staggered-content nav span {
  color: var(--gold);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-inner h4 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1rem;
}

.footer-inner p,
.footer-inner li {
  color: var(--muted-foreground);
  font-size: 0.94rem;
}

.footer-inner ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-inner a {
  text-decoration: none;
}

.copyright {
  border-top: 1px solid rgba(224, 211, 184, 0.7);
  padding: 22px 24px;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .vision-map-inner,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .vision-map-stage {
    position: relative;
    top: auto;
  }

  .vision-map-copy {
    padding-block: 20px;
  }

  .vision-step {
    min-height: auto;
    padding: 36px 0;
  }

  .testimony-detail-layout {
    grid-template-columns: 1fr;
  }

  .testimony-detail-media {
    position: relative;
    top: auto;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.85rem;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding-inline: 18px;
  }

  .brand span {
    display: none;
  }

  .staggered-content nav a {
    font-size: 1.65rem;
  }

  .hero-content {
    min-height: 82vh;
    padding: 80px 20px;
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

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

  .section {
    padding-block: 70px;
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.18rem;
  }

  blockquote {
    font-size: 2rem;
  }

  .feature-card,
  .form-card,
  .stat-card {
    padding: 24px;
  }

  .testimony-carousel-track {
    min-height: 520px;
  }

  .testimony-slide {
    width: min(68vw, 250px);
  }

  .testimony-slide img {
    height: 330px;
  }

  .testimony-modal-card {
    grid-template-columns: 1fr;
  }

  .testimony-modal-card img {
    min-height: 260px;
  }

  .testimony-modal-copy {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .text-highlight {
    background-size: 100% 100%;
  }
}
