/* ===== Tokens ===== */
:root {
  --cream: #F9F8F6;
  --sand:  #EFEAE2;
  --ink:   #1C1E22;
  --ink-2: #2A2D33;
  --ink-soft: #4A4E55;
  --muted: #6B6F76;
  --brass: #B58A3F;
  --brass-2: #C9A45E;
  --brass-soft: #E6D5B0;
  --line: rgba(28,30,34,.12);
  --line-dark: rgba(255,255,255,.14);

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
sup { font-size: .55em; vertical-align: super; line-height: 1; margin-left: 1px; }

.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 880px; }
.text-center { text-align: center; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(249,248,246,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.site-header.on-dark:not(.scrolled) { color: #fff; }
.site-header.on-dark:not(.scrolled) .brand-title { color: #fff; }
.site-header.on-dark:not(.scrolled) .brand-sub { color: rgba(255,255,255,.7); }
.site-header.on-dark:not(.scrolled) .light-only { display: none; }
.site-header.on-dark:not(.scrolled) .dark-only { display: block; }
.site-header:not(.on-dark) .dark-only,
.site-header.scrolled .dark-only { display: none; }
.site-header:not(.on-dark) .light-only,
.site-header.scrolled .light-only { display: block; }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
}
.brand-mark {
  width: 48px; height: 48px;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  border-radius: 2px;
}
.brand-mark-img { width: 34px; height: 34px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title { font-family: var(--serif); font-weight: 700; font-size: 20px; letter-spacing: -.005em; }
.brand-sub   { font-family: var(--sans); font-size: 11px; letter-spacing: .28em; margin-top: 4px; color: var(--muted); }

.primary-nav { display: flex; gap: 30px; }
.primary-nav a {
  font-size: 14px; font-weight: 400;
  position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: 0; width: 36px; height: 36px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; margin: 5px auto; transition: transform .3s var(--ease), opacity .3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn .arrow { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-dark   { background: var(--ink); color: #fff; }
.btn-dark:hover  { background: #000; transform: translateY(-1px); }
.btn-ghost  { color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-brass  { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-2); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(181,138,63,.25); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid; place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0F1014 url("assets/hero-stone-texture.jpg") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(0,0,0,0) 0%, rgba(10,10,12,.45) 70%, rgba(10,10,12,.7) 100%),
    linear-gradient(180deg, rgba(15,16,20,.2), rgba(15,16,20,.55));
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.hero-mark { margin: 0 auto 36px; }
.hero-mark .frame {
  width: 132px; height: 132px;
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  margin: 0 auto;
}
.hero-mark img { width: 100px; height: 100px; object-fit: contain; }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 28px;
  color: #F4EFE5;
}
.hero-title span { display: block; }
.hero-title .accent { color: var(--brass-2); font-style: normal; }

.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
  color: rgba(244,239,229,.82);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.4);
  border-radius: 12px; z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 8px; background: var(--brass-2); border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; top: 6px; }
  40% { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}
@keyframes heroZoom { to { transform: scale(1); } }

/* ===== Sections ===== */
.section { padding: 130px 0; position: relative; }
.section-cream { background: var(--cream); }
.section-sand  { background: var(--sand); }

.eyebrow {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: .28em;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.12;
  letter-spacing: -.012em;
  margin: 0 0 28px;
  color: var(--ink);
}
.lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 auto 22px;
  max-width: 760px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.copy-block .lead { margin-left: 0; }

/* badge card */
.badge-card {
  display: grid; place-items: center;
}
.badge-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.05;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  padding: 56px 40px;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.35);
}
.badge-logo { width: 130px; height: 130px; object-fit: contain; }
.badge-text { text-align: center; color: #fff; font-family: var(--serif); }
.badge-title { display: block; font-size: 28px; font-weight: 500; letter-spacing: -.01em; }
.badge-sub   { display: block; margin-top: 8px; font-family: var(--sans); font-size: 11px; letter-spacing: .32em; color: var(--brass-2); }
.corner {
  position: absolute; width: 28px; height: 28px; border: 1px solid var(--brass);
}
.corner.tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 22px; right: 22px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 22px; left: 22px; border-right: 0; border-top: 0; }
.corner.br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }

/* founders mini mark */
.founders { padding-top: 110px; padding-bottom: 140px; }
.mini-mark {
  width: 84px; height: 84px; border: 1px solid var(--brass);
  display: grid; place-items: center; margin: 0 auto 32px;
}
.mini-mark img { width: 54px; height: 54px; object-fit: contain; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 90px 0 28px;
  font-size: 14px;
}
.site-footer .brand-title { color: #fff; }
.site-footer .brand-sub { color: rgba(255,255,255,.55); }
.site-footer .brand-mark { border-color: rgba(255,255,255,.45); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-blurb { margin-top: 22px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 320px; }
.foot-col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--brass);
  margin: 0 0 20px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  color: rgba(255,255,255,.78);
  transition: color .2s var(--ease);
}
.foot-col a:hover { color: var(--brass-2); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.foot-bottom .sep { margin: 0 12px; color: rgba(255,255,255,.35); }
.foot-bottom p { margin: 0; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.d-100 { transition-delay: .1s; }
.d-200 { transition-delay: .2s; }
.d-300 { transition-delay: .3s; }
.d-400 { transition-delay: .4s; }
.d-500 { transition-delay: .5s; }
.d-700 { transition-delay: .7s; }
.d-900 { transition-delay: .9s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; transform: none; }
  .scroll-hint span { animation: none; }
}

/* ===== Subpage hero (smaller, content-led) ===== */
.subhero {
  position: relative;
  min-height: 60vh;
  display: grid; place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 180px 0 100px;
}
.subhero .hero-bg { position: absolute; inset: 0; background: #0F1014 url("/assets/hero-stone-texture.jpg") center/cover no-repeat; }
.subhero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,16,20,.4), rgba(15,16,20,.65)); }
.subhero .container { position: relative; z-index: 2; max-width: 880px; }
.subhero .eyebrow { color: var(--brass-2); }
.subhero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0 0 24px;
  color: #F4EFE5;
}
.subhero p { color: rgba(244,239,229,.82); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.7; max-width: 700px; margin: 0 auto; }
.subhero .mini-mark { margin: 0 auto 32px; border-color: var(--brass); }
.subhero .mini-mark img { filter: brightness(1.2); }

/* Section variants */
.section-dark { background: var(--ink); color: rgba(255,255,255,.85); }
.section-dark .display { color: #F4EFE5; }
.section-dark .lead { color: rgba(255,255,255,.7); }
.section-dark .eyebrow { color: var(--brass-2); }

/* Pull-quote (scripture) */
.scripture {
  background: var(--sand);
  border-left: 4px solid var(--brass);
  padding: 28px 32px;
  margin: 32px auto;
  max-width: 760px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  border-radius: 0 2px 2px 0;
}
.scripture cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: none;
}
.section-dark .scripture { background: rgba(255,255,255,.04); color: rgba(255,255,255,.82); }
.section-dark .scripture cite { color: rgba(255,255,255,.55); }

.verse-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 40px;
}

/* Numbered steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.step-card {
  background: #fff;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.section-dark .step-card { background: rgba(255,255,255,.03); border-color: var(--line-dark); }
.step-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--brass-soft);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.section-dark .step-num { color: var(--brass-2); opacity: .55; }
.step-card h3 { font-family: var(--sans); font-size: 16px; font-weight: 500; margin: 0 0 8px; line-height: 1.4; }
.step-card p  { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.section-dark .step-card p { color: rgba(255,255,255,.7); }

/* Card list (covenants, values, sessions) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.kingdom-card {
  display: flex; gap: 22px;
  padding: 28px 30px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
}
.section-cream .kingdom-card, .section-sand .kingdom-card {
  background: #fff;
  border-color: var(--line);
}
.kingdom-card .num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brass);
  flex-shrink: 0;
  min-width: 32px;
  letter-spacing: -.02em;
}
.kingdom-card .body h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #F4EFE5;
}
.section-cream .kingdom-card .body h3,
.section-sand .kingdom-card .body h3 { color: var(--ink); }
.kingdom-card .body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}
.section-cream .kingdom-card .body p,
.section-sand .kingdom-card .body p { color: var(--ink-soft); }

/* Session card with status pill */
.session-card { position: relative; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 2px; }
.session-card .num {
  font-family: var(--serif); font-size: 28px; color: var(--brass-soft); margin-bottom: 12px; display: block;
}
.session-card .pill {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px; letter-spacing: .2em; padding: 4px 10px;
  background: rgba(181,138,63,.12); color: var(--brass);
  border-radius: 30px; text-transform: uppercase;
}
.session-card .pill.soon { background: rgba(0,0,0,.06); color: var(--muted); }
.session-card .tag { font-size: 12px; letter-spacing: .2em; color: var(--brass); text-transform: uppercase; margin-bottom: 12px; }
.session-card h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 12px; line-height: 1.25; font-weight: 500; }
.session-card p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.value-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 2px; }
.section-sand .value-card { background: var(--cream); }
.value-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0 0 12px; line-height: 1.3; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* Pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.pillar-card {
  text-align: center; padding: 40px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: 2px;
}
.section-sand .pillar-card { background: var(--cream); }
.pillar-card h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 10px; font-weight: 500; }
.pillar-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* Two-column copy with image */
.bio-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  margin: 0 auto 100px;
  max-width: 1100px;
}
.bio-image {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  border-radius: 2px;
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 500;
}
.bio-block .tag { font-size: 12px; letter-spacing: .22em; color: var(--brass); text-transform: uppercase; margin-bottom: 12px; }
.bio-block h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); font-weight: 400; margin: 0 0 24px; line-height: 1.2; }
.bio-block p { color: var(--ink-soft); line-height: 1.8; margin: 0 0 18px; }
.bio-block .ed { margin-top: 24px; font-size: 14px; color: var(--muted); }
.bio-block .ed strong { color: var(--ink); display: block; margin-bottom: 4px; }

/* Directory cards */
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.dir-card { padding: 36px 30px; background: var(--ink); color: #fff; border-radius: 2px; }
.dir-card h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 8px; font-weight: 500; }
.dir-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }

/* Standards list */
.std-list { max-width: 760px; margin: 50px auto 0; padding: 0; list-style: none; }
.std-list li {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.std-list li::before {
  content: ""; width: 8px; height: 8px; background: var(--brass);
  flex-shrink: 0; margin-top: 9px;
  border-radius: 50%;
}

/* Event card */
.event-card {
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border-radius: 2px; overflow: hidden;
  margin-top: 50px; max-width: 1080px; margin-left: auto; margin-right: auto;
}
.event-image {
  background: linear-gradient(135deg, #2c2410, #1a1409);
  aspect-ratio: 4/3;
  position: relative;
}
.event-image .date {
  position: absolute; top: 28px; left: 0;
  background: var(--brass); color: var(--ink);
  padding: 8px 18px; font-size: 13px; font-weight: 500;
}
.event-body { padding: 48px 40px; }
.event-body h3 { font-family: var(--serif); font-size: 28px; margin: 0 0 8px; font-weight: 500; }
.event-body .small { color: var(--brass-2); font-size: 13px; letter-spacing: .12em; margin-bottom: 24px; }
.event-body p { color: rgba(255,255,255,.7); line-height: 1.7; margin: 0 0 28px; }

/* Contact form */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  max-width: 1080px; margin: 0 auto;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; letter-spacing: .08em; margin-bottom: 8px; color: var(--ink-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  background: #fff; font-family: var(--sans); font-size: 15px; color: var(--ink);
  border-radius: 2px; transition: border-color .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--brass); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form h2 { font-family: var(--serif); font-size: 28px; margin: 0 0 32px; font-weight: 500; }
.contact-info h2 { font-family: var(--serif); font-size: 28px; margin: 0 0 32px; font-weight: 500; }
.contact-info-item {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(181,138,63,.12);
  display: grid; place-items: center;
  color: var(--brass);
  border-radius: 50%;
  font-size: 18px;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 14px; font-weight: 500; }
.contact-info-item p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.quick-links { margin-top: 40px; }
.quick-links h4 { font-size: 14px; font-weight: 500; margin: 0 0 16px; }
.quick-links a { display: block; padding: 10px 0; color: var(--ink-soft); font-size: 14px; border-bottom: 1px solid var(--line); transition: color .2s; }
.quick-links a:hover { color: var(--brass); }

/* Active nav */
.primary-nav a.active { color: var(--brass-2); }
.site-header:not(.on-dark) .primary-nav a.active { color: var(--brass); }

/* Section title block */
.section-title { text-align: center; max-width: 760px; margin: 0 auto 30px; }
.section-title p.lead { margin-top: 18px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .primary-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(86%, 360px);
    background: var(--ink); color: #fff;
    padding: 110px 32px 32px;
    flex-direction: column; gap: 20px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 49;
  }
  .primary-nav a { font-size: 18px; }
  body.nav-open .primary-nav { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 51; position: relative; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 90px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 960px) {
  .steps-grid, .card-grid, .card-grid.cols-3, .value-grid, .pillar-grid, .dir-grid, .verse-grid { grid-template-columns: 1fr; }
  .bio-block { grid-template-columns: 1fr; gap: 32px; }
  .bio-image { max-width: 320px; }
  .event-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 120px 0 80px; }
  .hero-title { font-size: clamp(34px, 9vw, 54px); }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-title { font-size: 18px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark-img { width: 28px; height: 28px; }
  .subhero { padding: 150px 0 80px; min-height: auto; }
}
