
:root {
  --ink: #15130f;
  --paper: #f1ede3;
  --paper-deep: #e2dbcc;
  --ember: #b64624;
  --gold: #bd9760;
  --muted: #756f65;
  --line: rgba(21, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--ember);
  color: #fff8ec;
}

.site-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 76px);
  color: #f4efe5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand b,
.brand small {
  font-size: 11px;
  letter-spacing: 0.17em;
  line-height: 1;
}

.brand small {
  color: #c4b9aa;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.nav-donate {
  padding: 12px 17px;
  background: var(--ember);
  color: #fff8ec;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links .nav-donate:hover,
.nav-links .nav-donate:focus-visible {
  background: #d0542e;
  color: #fff8ec;
}

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  overflow: hidden;
  align-items: center;
  padding: 150px clamp(24px, 8vw, 124px) 100px;
  background: #0d0c0a;
  color: #f6f0e4;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 41%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 7, 6, 0.98) 0%, rgba(8, 7, 6, 0.92) 38%, rgba(8, 7, 6, 0.28) 52%, rgba(8, 7, 6, 0.03) 62%, rgba(8, 7, 6, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 62vw);
}

.eyebrow,
.section-number,
.section-note {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1,
.beliefs-heading h2,
.eden-copy h2,
.worship-heading h2,
.gather-section h2 {
  margin: 27px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 0.98;
}

.hero h1 em,
.gather-section h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-copy {
  max-width: 590px;
  margin: 31px 0 0;
  color: #c9c0b3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 39px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--ember);
  color: #fff8ec;
}

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

.text-link {
  display: inline-flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  padding: 8px 0;
  color: #e6ddcf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  gap: 17px;
  color: #8e867a;
}

.hero-foot p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-foot span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ember);
}

.creed-section,
.beliefs-section,
.worship-section {
  padding: 100px clamp(24px, 8vw, 124px);
}

.creed-section,
.worship-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #f6f0e4;
}

.creed-section {
  min-height: 760px;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--ember);
}

.section-note {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.light-intro {
  border-color: rgba(255, 255, 255, 0.15);
}

.light-intro .section-note {
  color: #8f877b;
}

.creed-quote {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 105px 0 60px;
}

.creed-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.creed-quote span {
  color: var(--gold);
  font-style: italic;
}

.creed-seal {
  position: absolute;
  right: clamp(-55px, 4vw, 70px);
  bottom: -85px;
  display: flex;
  width: 330px;
  height: 330px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(189, 151, 96, 0.21);
  border-radius: 50%;
  color: rgba(189, 151, 96, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.creed-seal::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(189, 151, 96, 0.16);
  border-radius: 50%;
  content: "";
}

.creed-seal i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
}

.beliefs-section {
  background: var(--paper);
}

.beliefs-heading,
.worship-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin: 78px 0 70px;
}

.beliefs-heading h2,
.worship-heading h2,
.eden-copy h2 {
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.95;
}

.beliefs-heading > p,
.worship-heading > p,
.eden-copy > p:not(.section-number):not(.lead) {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.75;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-card {
  display: grid;
  min-height: 255px;
  grid-template-columns: 60px 1fr;
  gap: 35px;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.38);
}

.pillar-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #b9ad99;
  border-radius: 50%;
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.pillar-card h3,
.ritual-grid h3 {
  margin: 3px 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.pillar-card p,
.ritual-grid p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.eden-section {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #d9d1c2;
}

.eden-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  margin: 0;
  background: #1a1713;
}

.eden-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 15, 12, 0.12), transparent 42%),
    linear-gradient(0deg, rgba(17, 15, 12, 0.28), transparent 24%);
}

.eden-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.08) contrast(1.04);
}

.eden-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 85px clamp(40px, 7vw, 110px);
}

.eden-copy .lead {
  margin: 20px 0 36px;
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 40px);
  font-style: italic;
}

.eden-copy > p:not(.section-number):not(.lead) + p {
  margin-top: 22px;
}

.worship-section {
  padding-bottom: 120px;
}

.worship-heading h2 {
  color: #f6f0e4;
}

.worship-heading > p {
  color: #aba295;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.ritual-grid article {
  min-height: 310px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ritual-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--ember);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.ritual-grid h3 {
  color: #f6f0e4;
  font-size: 24px;
}

.ritual-grid p {
  color: #978f83;
}

.technology-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 29px 32px;
  border: 1px solid rgba(189, 151, 96, 0.34);
  transition: background 180ms ease, border-color 180ms ease;
}

.technology-link:hover,
.technology-link:focus-visible {
  border-color: var(--gold);
  background: rgba(189, 151, 96, 0.06);
}

.technology-link > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.technology-link small {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.technology-link b {
  color: var(--gold);
  font-size: 24px;
}

.gather-section {
  display: flex;
  min-height: 720px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 120px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 39%, rgba(181, 70, 36, 0.17), transparent 29%),
    var(--paper);
}

.gather-kicker {
  display: flex;
  align-items: center;
  gap: 17px;
}

.gather-kicker span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.gather-kicker p {
  margin: 0;
  color: var(--ember);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.gather-section h2 {
  max-width: 900px;
  font-size: clamp(62px, 9vw, 124px);
  line-height: 0.9;
}

.gather-section h2 em {
  color: var(--ember);
}

.gather-section > p {
  max-width: 600px;
  margin: 32px 0 44px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}

.gather-details {
  display: grid;
  width: min(920px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: left;
}

.gather-card {
  display: flex;
  min-height: 330px;
  align-items: flex-start;
  flex-direction: column;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
}

.gather-card small {
  color: var(--ember);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gather-card h3 {
  max-width: 340px;
  margin: 31px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.gather-card address,
.gather-card > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-bottom: 1px solid #a79d8b;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.support-card {
  background: var(--ink);
  color: #f6f0e4;
}

.support-card h3 {
  color: #f6f0e4;
}

.support-card > p {
  color: #978f83;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.button-give {
  margin-top: auto;
  background: var(--ember);
  color: #fff8ec;
}

.button-give:hover,
.button-give:focus-visible {
  background: #d0542e;
}

.button-dark {
  background: var(--ink);
  color: #f6f0e4;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ember);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.8fr;
  gap: 48px;
  align-items: start;
  padding: 65px clamp(24px, 8vw, 124px) 35px;
  background: #0e0d0b;
  color: #f6f0e4;
}

.footer-brand .brand-mark {
  color: #f6f0e4;
}

.footer-copy p {
  margin: 0;
  color: #91897e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.7;
}

.footer-copy address {
  margin-top: 15px;
  color: #686158;
  font-size: 10px;
  font-style: normal;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 26px;
  row-gap: 14px;
  color: #c4b9aa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.disclaimer {
  grid-column: 1 / -1;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #686158;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.belief-context {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(32px, 7vw, 105px);
  align-items: start;
  padding: 58px clamp(24px, 8vw, 124px);
  border-top: 1px solid rgba(23, 21, 18, 0.14);
  border-bottom: 1px solid rgba(23, 21, 18, 0.14);
  background: #ebe2d3;
  color: var(--ink);
}

.belief-context h2 {
  max-width: 440px;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.belief-context > p {
  max-width: 720px;
  margin: 5px 0 0;
  color: #554e45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.contact-prompt {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: #e0d5c6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-prompt:hover,
.contact-prompt:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.section-page-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid #a79d8b;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-page-link-light {
  position: relative;
  z-index: 2;
  border-bottom-color: rgba(255, 255, 255, 0.36);
  color: #e0d5c6;
}

.section-page-link:hover,
.section-page-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.donation-body {
  background: #0d0c0a;
}

.donation-page {
  min-height: 100vh;
  padding: 165px clamp(24px, 8vw, 124px) 105px;
  background:
    radial-gradient(circle at 82% 17%, rgba(182, 70, 36, 0.2), transparent 28%),
    radial-gradient(circle at 18% 48%, rgba(189, 151, 96, 0.12), transparent 30%),
    #0d0c0a;
  color: #f6f0e4;
}

.donation-heading {
  max-width: 980px;
}

.donation-heading h1 {
  margin: 27px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.donation-heading h1 em {
  color: var(--gold);
  font-weight: 400;
}

.donation-heading > p:last-child {
  max-width: 620px;
  margin: 34px 0 0;
  color: #b6ac9e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
}

.donation-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.donation-card {
  display: flex;
  min-height: 455px;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(32px, 4.5vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.donation-card > small {
  color: var(--ember);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.donation-card h2 {
  max-width: 440px;
  margin: 34px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.donation-card > p {
  max-width: 470px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.giving-card {
  background: var(--paper);
  color: var(--ink);
}

.giving-card > p {
  color: var(--muted);
}

.tithely-give-button {
  display: inline-flex !important;
  min-width: 235px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  padding: 15px 58px;
  border: 0;
  border-radius: 0;
  background: var(--ember) !important;
  background-image: none !important;
  color: #fff8ec !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow: none !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.tithely-give-button:hover,
.tithely-give-button:focus-visible {
  transform: translateY(-2px);
  background: #d0542e !important;
}

.giving-card .processing-note {
  margin-top: auto;
  padding-top: 35px;
  color: #9b9285;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.tax-card {
  background: var(--ink);
}

.tax-card > p {
  color: #a9a094;
}

.tax-card address {
  margin-top: auto;
  padding-top: 35px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.return-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #d7cdbf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.return-link:hover,
.return-link:focus-visible {
  color: var(--gold);
}

.contact-body {
  background: #0d0c0a;
}

.contact-page {
  min-height: 100vh;
  padding: 165px clamp(24px, 8vw, 124px) 105px;
  background:
    radial-gradient(circle at 82% 17%, rgba(189, 151, 96, 0.15), transparent 28%),
    radial-gradient(circle at 13% 56%, rgba(182, 70, 36, 0.15), transparent 31%),
    #0d0c0a;
  color: #f6f0e4;
}

.contact-heading {
  max-width: 980px;
}

.contact-heading h1 {
  margin: 27px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.contact-heading h1 em {
  color: var(--gold);
  font-weight: 400;
}

.contact-heading > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: #b6ac9e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details,
.contact-form-card {
  padding: clamp(32px, 4.5vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details {
  display: flex;
  min-height: 575px;
  flex-direction: column;
  background: var(--ink);
}

.contact-details > small,
.contact-form-card > small,
.contact-address > small {
  color: var(--ember);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-details h2 {
  max-width: 410px;
  margin: 34px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.contact-email {
  width: fit-content;
  max-width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(189, 151, 96, 0.55);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.65vw, 21px);
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #f0c788;
  border-bottom-color: #f0c788;
}

.contact-address {
  margin-top: auto;
  padding-top: 60px;
}

.contact-address address {
  margin-top: 17px;
  color: #c0b6a8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}

.contact-form-card {
  background: var(--paper);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 9px;
  color: #625a50;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b8ad9e;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 16px/1.5 Georgia, "Times New Roman", serif;
}

.contact-form input {
  min-height: 42px;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ember);
  box-shadow: 0 1px 0 var(--ember);
}

.contact-submit {
  width: fit-content;
  margin-top: 5px;
  border: 0;
  border-radius: 0;
  background: var(--ember);
  color: #fff8ec;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #d0542e;
  transform: translateY(-2px);
}

.contact-note {
  margin: 26px 0 0;
  color: #8c8377;
  font-size: 10px;
  line-height: 1.65;
}

.form-status {
  min-height: 19px;
  margin: -7px 0 0;
  color: #746b60;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

.form-status.is-success {
  color: #346243;
}

.form-status.is-error {
  color: #a23b27;
}

.contact-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.doctrine-body {
  background: #0d0c0a;
}

.doctrine-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  overflow: hidden;
  padding: 165px clamp(24px, 8vw, 124px) 105px;
  background:
    radial-gradient(circle at 78% 36%, rgba(189, 151, 96, 0.16), transparent 25%),
    radial-gradient(circle at 15% 72%, rgba(182, 70, 36, 0.14), transparent 30%),
    #0d0c0a;
  color: #f6f0e4;
}

.doctrine-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
}

.beliefs-hero {
  background:
    radial-gradient(circle at 79% 32%, rgba(182, 70, 36, 0.18), transparent 24%),
    radial-gradient(circle at 20% 76%, rgba(189, 151, 96, 0.13), transparent 30%),
    #0d0c0a;
}

.worship-hero {
  background:
    radial-gradient(circle at 76% 30%, rgba(189, 151, 96, 0.18), transparent 25%),
    radial-gradient(circle at 16% 75%, rgba(182, 70, 36, 0.11), transparent 30%),
    #0d0c0a;
}

.gatherings-hero {
  background:
    radial-gradient(circle at 78% 32%, rgba(182, 70, 36, 0.2), transparent 25%),
    radial-gradient(circle at 18% 74%, rgba(189, 151, 96, 0.11), transparent 30%),
    #0d0c0a;
}

.doctrine-hero-copy {
  position: relative;
  z-index: 2;
  width: min(880px, 74vw);
}

.doctrine-hero h1 {
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 10vw, 142px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.doctrine-hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.doctrine-hero-copy > p:last-child {
  max-width: 680px;
  margin: 38px 0 0;
  color: #b6ac9e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.75;
}

.doctrine-symbol {
  position: absolute;
  right: clamp(-65px, 5vw, 70px);
  bottom: -90px;
  display: flex;
  width: 390px;
  height: 390px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(189, 151, 96, 0.2);
  border-radius: 50%;
  color: rgba(189, 151, 96, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.doctrine-symbol::before {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(189, 151, 96, 0.14);
  border-radius: 50%;
  content: "";
}

.doctrine-symbol i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
}

.doctrine-content {
  padding: 110px clamp(24px, 8vw, 124px) 120px;
  background: var(--paper);
  color: var(--ink);
}

.doctrine-quote {
  max-width: 1150px;
  margin: 0 0 90px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.doctrine-quote em {
  color: var(--ember);
  font-weight: 400;
}

.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.doctrine-grid article {
  min-height: 285px;
  padding: clamp(32px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.doctrine-grid article > span,
.worship-doctrine article > span {
  display: block;
  color: var(--ember);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.doctrine-grid h2,
.worship-doctrine h2,
.eden-doctrine h2,
.gatherings-grid h2,
.gathering-expect h2 {
  margin: 36px 0 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.doctrine-grid p,
.worship-doctrine p,
.eden-doctrine p,
.gatherings-grid p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.doctrine-context {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(300px, 1.35fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: start;
  margin-top: 70px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.doctrine-context > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #554e45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.doctrine-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding: 38px 42px;
  background: var(--ink);
  color: #f6f0e4;
}

.doctrine-next > span {
  color: #8f877b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.doctrine-next a {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
}

.doctrine-next a b {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
}

.doctrine-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.eden-doctrine {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-top: 90px;
  background: #d9d1c2;
}

.eden-doctrine > img {
  display: block;
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.08) contrast(1.04);
}

.eden-doctrine > article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px);
}

.eden-doctrine h2 {
  font-size: clamp(48px, 6vw, 82px);
}

.eden-doctrine .lead {
  margin: 8px 0 32px;
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.6vw, 36px);
  font-style: italic;
}

.eden-doctrine article > p:last-child {
  margin-top: 22px;
}

.worship-doctrine {
  border-top: 1px solid var(--line);
}

.worship-doctrine article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 36px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.worship-doctrine h2 {
  margin-top: 0;
}

.doctrine-technology {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 35px 38px;
  border: 1px solid rgba(182, 70, 36, 0.4);
  transition: background 180ms ease, border-color 180ms ease;
}

.doctrine-technology:hover,
.doctrine-technology:focus-visible {
  border-color: var(--ember);
  background: rgba(182, 70, 36, 0.05);
}

.doctrine-technology > span {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
}

.doctrine-technology small {
  color: var(--ember);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.doctrine-technology > b {
  color: var(--ember);
  font-size: 22px;
}

.gatherings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gatherings-grid article {
  display: flex;
  min-height: 475px;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(36px, 5vw, 64px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gatherings-location {
  background: #e3dbce;
}

.gatherings-schedule {
  background: var(--ink);
  color: #f6f0e4;
}

.gatherings-schedule h2 {
  color: #f6f0e4;
}

.gatherings-schedule p {
  color: #9b9286;
}

.gatherings-grid address {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
  line-height: 1.75;
}

.gatherings-grid .button {
  margin-top: auto;
}

.gathering-expect {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  margin-top: 100px;
}

.gathering-expect h2 {
  max-width: 440px;
  font-size: clamp(45px, 6vw, 76px);
}

.gathering-expect ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.gathering-expect li {
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr);
  gap: 25px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.4;
}

.gathering-expect li span {
  color: var(--ember);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}


@media (max-width: 900px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(720px, 76vw);
  }

  .hero-art {
    object-position: 62% 41%;
  }

  .beliefs-heading,
  .worship-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .eden-section {
    grid-template-columns: 1fr;
  }

  .eden-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .donation-grid {
    grid-template-columns: 1fr;
  }

  .belief-context {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    min-height: 440px;
  }

  .doctrine-hero-copy {
    width: min(760px, 82vw);
  }

  .eden-doctrine {
    grid-template-columns: 1fr;
  }

  .eden-doctrine > img {
    height: auto;
    max-height: 850px;
    aspect-ratio: 4 / 5;
  }

  .gathering-expect {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  .site-nav {
    align-items: flex-start;
  }

  .nav-links > a:not(.nav-donate) {
    display: none;
  }

  .nav-donate {
    padding: 10px 12px;
    font-size: 10px;
  }

  .hero {
    min-height: 760px;
    padding-top: 145px;
  }

  .donation-page {
    padding-top: 145px;
  }

  .contact-page {
    padding-top: 145px;
  }

  .doctrine-hero {
    min-height: 610px;
    padding-top: 145px;
  }

  .doctrine-hero-copy {
    width: 100%;
  }

  .doctrine-hero h1 {
    font-size: clamp(62px, 20vw, 94px);
  }

  .doctrine-hero-copy > p:last-child {
    font-size: 17px;
  }

  .doctrine-symbol {
    right: -205px;
    bottom: -150px;
  }

  .doctrine-content {
    padding-top: 75px;
    padding-bottom: 85px;
  }

  .doctrine-quote {
    margin-bottom: 65px;
    font-size: clamp(34px, 10vw, 50px);
  }

  .doctrine-grid {
    grid-template-columns: 1fr;
  }

  .doctrine-grid article {
    min-height: 245px;
    padding: 34px 25px;
  }

  .doctrine-context {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 55px;
  }

  .doctrine-next {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 25px;
  }

  .eden-doctrine {
    margin-top: 60px;
  }

  .eden-doctrine > article {
    padding: 55px 25px;
  }

  .worship-doctrine article {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 20px;
    padding: 39px 0;
  }

  .doctrine-technology {
    align-items: flex-start;
    padding: 26px 23px;
  }

  .gatherings-grid {
    grid-template-columns: 1fr;
  }

  .gatherings-grid article {
    min-height: 420px;
    padding: 40px 25px;
  }

  .gathering-expect {
    margin-top: 75px;
  }

  .gathering-expect li {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
    font-size: 18px;
  }

  .donation-heading h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .contact-heading h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .donation-grid {
    margin-top: 52px;
  }

  .donation-card {
    min-height: 410px;
    padding: 34px 25px;
  }

  .contact-grid {
    margin-top: 52px;
  }

  .contact-details,
  .contact-form-card {
    padding: 34px 25px;
  }

  .contact-details {
    min-height: 390px;
  }

  .contact-address {
    padding-top: 48px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .hero-art {
    object-position: 68% 41%;
    opacity: 0.67;
  }

  .hero-veil {
    background: linear-gradient(90deg, rgba(8, 7, 6, 0.96) 0%, rgba(8, 7, 6, 0.78) 68%, rgba(8, 7, 6, 0.36) 100%);
  }

  .hero-foot {
    display: none;
  }

  .creed-section,
  .beliefs-section,
  .worship-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .creed-section {
    min-height: 650px;
  }

  .creed-quote {
    margin-top: 70px;
  }

  .creed-quote p {
    font-size: clamp(34px, 10vw, 50px);
  }

  .creed-seal {
    right: -150px;
  }

  .beliefs-heading,
  .worship-heading {
    margin: 58px 0 45px;
  }

  .beliefs-heading h2,
  .worship-heading h2,
  .eden-copy h2 {
    font-size: 52px;
  }

  .pillar-grid,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    grid-template-columns: 46px 1fr;
    gap: 21px;
    padding: 31px 22px;
  }

  .pillar-mark {
    width: 43px;
    height: 43px;
  }

  .eden-visual {
    min-height: 0;
  }

  .eden-copy {
    padding: 72px 24px;
  }

  .ritual-grid article {
    min-height: 260px;
  }

  .ritual-grid span {
    margin-bottom: 47px;
  }

  .technology-link {
    padding: 23px 20px;
  }

  .technology-link > span {
    font-size: 21px;
  }

  .gather-section {
    min-height: 650px;
  }

  .gather-details {
    grid-template-columns: 1fr;
  }

  .gather-card {
    min-height: 315px;
    padding: 31px 25px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .disclaimer {
    grid-column: auto;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}
