:root {
  color-scheme: dark;
  --ink: #0b0b0b;
  --panel: #11110f;
  --panel-raised: #171715;
  --white: #f2f0ea;
  --muted: #a5a197;
  --gold: #c6a66a;
  --gold-bright: #e2c78d;
  --line: rgba(221, 204, 163, 0.17);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --content: min(1200px, calc(100% - 48px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}
.skip-link {
  position: absolute;
  top: -48px;
  left: 18px;
  z-index: 20;
  padding: 8px 14px;
  background: var(--gold);
  color: #15120c;
}
.skip-link:focus {
  top: 12px;
}
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}
.site-header {
  height: 84px;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img,
.footer-brand img {
  width: 43px;
  height: 43px;
}
.brand-copy,
.footer-brand > span {
  display: grid;
  line-height: 1.15;
}
.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.brand-copy small {
  margin-top: 5px;
  color: #c9b991;
  font-size: 9px;
  letter-spacing: 0.27em;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  color: #d0cec6;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.top-nav a {
  text-decoration: none;
  transition: color 0.2s;
}
.top-nav a:hover,
.footer-links a:hover {
  color: var(--gold-bright);
}
.top-nav .nav-support {
  color: var(--gold-bright);
}
.nav-support span {
  margin-left: 5px;
}
.hero {
  min-height: 720px;
  height: min(810px, 100svh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080909;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(6, 7, 7, 0.94) 0%,
      rgba(6, 7, 7, 0.77) 38%,
      rgba(6, 7, 7, 0.28) 77%,
      rgba(6, 7, 7, 0.34) 100%
    ),
    linear-gradient(
      0deg,
      #0b0b0b 0%,
      transparent 28%,
      rgba(0, 0, 0, 0.11) 75%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    url("/assets/hero-mountains.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(750px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - 1200px) / 2));
  padding-top: 70px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-muted {
  color: #bcb7ac;
  font-weight: 400;
}
.hero h1,
.purpose h2,
.essence h2,
.support-intro h2,
.privacy-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.13;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 74px);
}
.hero h1 em,
.purpose h2 em,
.essence h2 em,
.support-intro h2 em,
.privacy-content h1 em {
  color: var(--gold-bright);
  font-weight: 500;
}
.hero-description {
  max-width: 485px;
  margin: 24px 0 29px;
  color: #d0cec9;
  font-size: 15px;
  line-height: 1.85;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.button-gold {
  background: linear-gradient(110deg, #d6ba7c, #b99557);
  color: #17130c;
}
.button-gold:hover {
  background: #eddaa8;
  transform: translateY(-1px);
}
.hero-caption {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 57px;
  color: #dedbd1;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}
.caption-rule {
  width: 31px;
  height: 1px;
  background: var(--gold);
}
.hero-index {
  position: absolute;
  right: max(24px, calc((100% - 1200px) / 2));
  bottom: 53px;
  color: #bbb5aa;
  font-size: 9px;
  letter-spacing: 0.17em;
}
.hero-index span {
  color: var(--gold-bright);
}
.section-shell {
  width: var(--content);
  margin: 0 auto;
}
.purpose {
  padding-top: 117px;
  padding-bottom: 132px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.section-label > span:first-child {
  color: #e0c990;
}
.section-rule {
  width: 35px;
  height: 1px;
  background: rgba(198, 166, 106, 0.55);
}
.purpose-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 9%;
  margin-top: 47px;
}
.purpose h2,
.essence h2,
.support-intro h2 {
  font-size: clamp(40px, 5vw, 59px);
}
.purpose-copy {
  max-width: 545px;
  color: #bcb9b1;
  font-size: 14px;
  line-height: 1.9;
}
.purpose-copy p {
  margin: 0 0 16px;
}
.signature {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}
.signature span {
  padding: 0 4px;
  color: var(--muted);
}
.essence {
  padding: 105px 0 122px;
  background: linear-gradient(180deg, #121210, #11110f);
}
.essence-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.essence-heading .section-label {
  padding-top: 11px;
}
.essence h2 {
  text-align: right;
  font-size: clamp(38px, 4.6vw, 55px);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 64px;
}
.pillar {
  min-height: 235px;
  position: relative;
  padding: 25px 22px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.pillar:hover {
  border-color: rgba(226, 199, 141, 0.48);
  transform: translateY(-3px);
}
.pillar-number {
  position: absolute;
  top: 23px;
  right: 21px;
  color: #777267;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.pillar-symbol {
  display: grid;
  width: 39px;
  height: 43px;
  place-items: center;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 29px;
}
.pillar-book {
  font-size: 38px;
}
.pillar-diamond {
  font-size: 40px;
}
.pillar-star {
  font-size: 24px;
}
.pillar h3 {
  margin: 25px 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.pillar p {
  margin: 0;
  color: #aaa69d;
  font-size: 12px;
  line-height: 1.75;
}
.support-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 128px;
  background: #0c0c0b;
}
.support-glow {
  position: absolute;
  top: -330px;
  right: -160px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 135, 65, 0.1), transparent 66%);
  pointer-events: none;
}
.support-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9%;
}
.support-intro h2 {
  margin-top: 40px;
}
.support-intro > p {
  max-width: 420px;
  margin: 23px 0 26px;
  color: #bcb9b1;
  font-size: 14px;
  line-height: 1.9;
}
.minimum-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aaa69d;
  font-size: 12px;
}
.minimum-note > span {
  color: var(--gold-bright);
}
.minimum-note strong {
  color: #e6ddc8;
  font-weight: 500;
}
.donation-card {
  max-width: 540px;
  width: 100%;
  justify-self: end;
  padding: 34px;
  background: linear-gradient(145deg, #171715, #11110f);
  border: 1px solid rgba(211, 185, 125, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.23);
}
.amount-fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.amount-fieldset legend {
  margin: 0 0 17px;
  color: #efede7;
  font-size: 13px;
  font-weight: 500;
}
.amount-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.amount-option {
  min-height: 44px;
  padding: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: transparent;
  color: #d0cec7;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}
.amount-option:hover,
.amount-option.is-selected {
  border-color: var(--gold);
  background: rgba(198, 166, 106, 0.1);
  color: var(--gold-bright);
}
.amount-option.is-selected {
  box-shadow: inset 0 -2px 0 var(--gold);
}
.field-label {
  display: block;
  margin: 22px 0 9px;
  color: #d4d0c6;
  font-size: 11px;
  font-weight: 500;
}
.currency-input {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0c0c0b;
}
.currency-input > span:first-child {
  color: var(--gold-bright);
  font-size: 12px;
}
.currency-input input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 15px;
}
.currency-input input::placeholder,
.email-input::placeholder {
  color: #76736c;
}
.currency-code {
  color: #77736c;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.field-hint {
  margin: 7px 0 0;
  color: #858178;
  font-size: 10px;
  line-height: 1.6;
}
.form-divider {
  height: 1px;
  margin: 25px 0 18px;
  background: rgba(255, 255, 255, 0.09);
}
.email-input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: #0c0c0b;
  color: var(--white);
  font-size: 13px;
}
.email-input:focus,
.currency-input:focus-within,
textarea:focus {
  outline: 1px solid var(--gold);
  outline-offset: 1px;
}
.form-error {
  min-height: 18px;
  margin: 9px 0 0;
  color: #ffb3a9;
  font-size: 11px;
}
.button-submit {
  width: 100%;
  min-height: 55px;
  justify-content: space-between;
  margin-top: 5px;
  padding: 0 19px;
  background: var(--gold-bright);
  color: #17130c;
}
.button-submit:hover {
  background: #efdda9;
}
.button-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}
.button-submit[aria-busy="true"] .button-label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 9px;
  vertical-align: -2px;
  border: 2px solid rgba(23, 19, 12, 0.3);
  border-top-color: #17130c;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.button-arrow {
  font-size: 16px;
}
.secure-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 15px 0 0;
  color: #969187;
  font-size: 9px;
  text-align: center;
}
.secure-note span {
  color: var(--gold);
}
.payment-result[hidden] {
  display: none;
}
.result-back {
  padding: 0;
  border: 0;
  background: none;
  color: #c8b683;
  font-size: 11px;
  cursor: pointer;
}
.result-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 9px;
  color: #e0cc9c;
  font-size: 11px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(226, 199, 141, 0.6);
}
.result-status[data-status="approved"] {
  color: #9fd8b6;
}
.result-status[data-status="approved"] .status-dot {
  background: #72c995;
}
.result-status[data-status="rejected"],
.result-status[data-status="cancelled"],
.result-status[data-status="expired"] {
  color: #ffb3a9;
}
.result-status[data-status="rejected"] .status-dot,
.result-status[data-status="cancelled"] .status-dot,
.result-status[data-status="expired"] .status-dot {
  background: #db766b;
}
.payment-result h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}
.result-amount {
  margin: 3px 0 17px;
  color: #c5c0b5;
  font-size: 12px;
}
.qr-frame {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  padding: 10px;
  background: white;
  border: 1px solid rgba(226, 199, 141, 0.3);
}
.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.payment-result .field-label {
  margin-top: 17px;
}
.payment-result textarea {
  display: block;
  width: 100%;
  resize: vertical;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: #0b0b0a;
  color: #d9d3c5;
  font-family: monospace;
  font-size: 10px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.button-copy {
  width: 100%;
  min-height: 47px;
  margin-top: 9px;
  border-color: rgba(226, 199, 141, 0.48);
  background: transparent;
  color: var(--gold-bright);
}
.button-copy:hover {
  background: rgba(226, 199, 141, 0.09);
}
.copy-feedback {
  min-height: 17px;
  margin: 5px 0 0;
  color: #9fd8b6;
  font-size: 10px;
  text-align: center;
}
.poll-hint {
  margin: 13px 0 0;
  color: #8e897f;
  font-size: 10px;
  text-align: center;
}
.provider-ticket {
  display: block;
  margin-top: 15px;
  color: var(--gold-bright);
  font-size: 11px;
  text-align: center;
}
.closing-note {
  display: grid;
  justify-items: center;
  padding: 91px 20px 93px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.closing-mark {
  color: var(--gold-bright);
  font-size: 16px;
}
.closing-note p {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.38;
}
.closing-note p em {
  color: var(--gold-bright);
}
.closing-tag {
  color: #8d887e;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 31px max(24px, calc((100% - 1200px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #090909;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-brand > span strong {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.footer-brand > span small {
  margin-top: 6px;
  color: #8f8b82;
  font-size: 9px;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  color: #b4b0a7;
  font-size: 10px;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a span {
  color: #e0cfaa;
}
.footer-legal,
.footer-copy {
  margin: 0;
  color: #77736c;
  font-size: 9px;
}
.footer-copy {
  text-align: right;
}
.privacy-page {
  min-height: 100vh;
}
.privacy-page .site-header {
  position: relative;
}
.privacy-content {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 110px;
}
.privacy-content h1 {
  margin: 25px 0;
  font-size: clamp(48px, 8vw, 76px);
}
.privacy-lead {
  max-width: 660px;
  margin-bottom: 46px;
  color: #c0bbb1;
  font-size: 16px;
  line-height: 1.85;
}
.privacy-content section {
  margin: 0 0 32px;
}
.privacy-content h2 {
  margin: 0 0 10px;
  color: #e8d8b3;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.privacy-content section p {
  margin: 0 0 12px;
  color: #aaa69d;
  font-size: 13px;
  line-height: 1.9;
}
.privacy-content section a {
  color: var(--gold-bright);
}
.privacy-update {
  margin-top: 47px;
  color: #77736c;
  font-size: 10px;
}
.privacy-back {
  color: #d8c592;
  font-size: 11px;
  text-decoration: none;
}
@media (min-width: 1500px) {
  .hero {
    height: 850px;
  }
  .hero-content {
    margin-left: max(24px, calc((100% - 1200px) / 2));
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 680px;
    height: 82svh;
  }
  .purpose {
    padding: 95px 0 105px;
  }
  .purpose-grid {
    gap: 6%;
  }
  .essence {
    padding: 87px 0 93px;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }
  .pillar {
    min-height: 195px;
  }
  .support-section {
    padding: 93px 0;
  }
  .support-layout {
    gap: 5%;
  }
  .donation-card {
    padding: 27px;
  }
  .amount-options {
    gap: 5px;
  }
  .amount-option {
    font-size: 11px;
  }
}
@media (max-width: 640px) {
  :root {
    --content: calc(100% - 40px);
  }
  html {
    scroll-padding-top: 72px;
  }
  .site-header {
    height: 69px;
    padding: 0 20px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .brand-copy strong {
    font-size: 11px;
  }
  .brand-copy small {
    font-size: 8px;
  }
  .top-nav {
    gap: 16px;
    font-size: 10px;
  }
  .top-nav a:first-child {
    display: none;
  }
  .hero {
    min-height: 700px;
    height: 90svh;
    max-height: 820px;
    align-items: flex-end;
  }
  .hero-image {
    background-position: 60% center;
    background-image:
      linear-gradient(90deg, rgba(6, 7, 7, 0.79), rgba(6, 7, 7, 0.2)),
      linear-gradient(
        0deg,
        #0b0b0b 0%,
        rgba(8, 8, 8, 0.88) 10%,
        rgba(8, 8, 8, 0.25) 69%,
        rgba(0, 0, 0, 0.53) 100%
      ),
      url("/assets/hero-mountains.webp");
  }
  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0 0 77px;
  }
  .eyebrow {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }
  .eyebrow-line {
    width: 22px;
  }
  .hero h1 {
    font-size: clamp(39px, 10vw, 55px);
    line-height: 1.11;
  }
  .hero-description {
    max-width: 420px;
    margin: 18px 0 23px;
    font-size: 13px;
    line-height: 1.8;
  }
  .button {
    min-height: 51px;
  }
  .hero-caption {
    margin-top: 39px;
    font-size: 13px;
  }
  .hero-index {
    right: 20px;
    bottom: 29px;
    font-size: 8px;
  }
  .purpose {
    padding: 76px 0 82px;
  }
  .section-label {
    gap: 10px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }
  .section-rule {
    width: 25px;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 29px;
  }
  .purpose h2,
  .support-intro h2 {
    font-size: 44px;
  }
  .purpose-copy {
    font-size: 13px;
    line-height: 1.85;
  }
  .purpose-copy p {
    margin-bottom: 13px;
  }
  .essence {
    padding: 75px 0 80px;
  }
  .essence-heading {
    display: block;
  }
  .essence-heading .section-label {
    margin-bottom: 29px;
  }
  .essence h2 {
    font-size: 42px;
    text-align: left;
  }
  .pillar-grid {
    gap: 9px;
    margin-top: 36px;
  }
  .pillar {
    min-height: 182px;
    padding: 18px 15px;
  }
  .pillar-number {
    top: 17px;
    right: 14px;
    font-size: 8px;
  }
  .pillar-symbol {
    width: 33px;
    height: 35px;
    font-size: 25px;
  }
  .pillar h3 {
    margin: 19px 0 6px;
    font-size: 18px;
  }
  .pillar p {
    font-size: 10px;
    line-height: 1.65;
  }
  .support-section {
    padding: 75px 0 83px;
  }
  .support-layout {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .support-intro h2 {
    margin-top: 29px;
  }
  .support-intro > p {
    margin: 17px 0 18px;
    font-size: 13px;
  }
  .donation-card {
    justify-self: stretch;
    padding: 22px 18px;
  }
  .amount-options {
    gap: 6px;
  }
  .amount-option {
    min-height: 42px;
    font-size: 10px;
  }
  .field-label {
    font-size: 10px;
  }
  .closing-note {
    padding: 68px 20px 70px;
  }
  .closing-tag {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 25px 20px;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 21px;
  }
  .footer-copy {
    text-align: left;
  }
  .footer-legal {
    line-height: 1.6;
  }
  .privacy-page .site-header {
    padding: 0 20px;
  }
  .privacy-content {
    width: calc(100% - 40px);
    padding: 59px 0 80px;
  }
  .privacy-content h1 {
    font-size: 53px;
  }
  .privacy-lead {
    font-size: 14px;
  }
  .privacy-content section p {
    font-size: 12px;
  }
  .privacy-page .footer-copy {
    text-align: left;
  }
}
@media (max-width: 380px) {
  .top-nav {
    gap: 11px;
  }
  .top-nav {
    font-size: 9px;
  }
  .brand-copy strong {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .donation-card {
    padding: 20px 15px;
  }
  .amount-options {
    gap: 4px;
  }
  .amount-option {
    padding: 0 3px;
    font-size: 9px;
  }
}
@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;
  }
}

/* Direct Pix and Scripture experience */
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(26px, calc((100% - 1200px) / 2));
  bottom: 42px;
  width: 28px;
  height: 44px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid rgba(226, 199, 141, 0.42);
  border-radius: 20px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold-bright);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(13px);
    opacity: 1;
  }
}
.word-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(
      ellipse at 85% 10%,
      rgba(195, 159, 92, 0.1),
      transparent 38%
    ),
    #0b0b0b;
}
.word-intro {
  max-width: 720px;
}
.word-intro h2 {
  margin: 35px 0 14px;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.word-intro h2 em {
  color: var(--gold-bright);
  font-weight: 500;
}
.word-intro > p {
  max-width: 510px;
  margin: 0;
  color: #aaa69d;
  font-size: 14px;
  line-height: 1.8;
}
.verse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
}
.verse-card {
  min-height: 225px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.026),
    rgba(255, 255, 255, 0.006)
  );
  transition:
    transform 0.25s,
    border-color 0.25s,
    background 0.25s;
}
.verse-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 199, 141, 0.44);
  background: linear-gradient(
    145deg,
    rgba(198, 166, 106, 0.08),
    rgba(255, 255, 255, 0.008)
  );
}
.verse-card p {
  margin: 26px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.58;
  color: #e5e1d8;
}
.verse-card cite {
  color: var(--gold-bright);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.verse-card cite span {
  color: #8e897f;
  font-weight: 400;
}
.verse-card-featured {
  grid-column: 1/-1;
  min-height: 228px;
  justify-content: center;
  overflow: hidden;
  padding: 32px 44px;
  background:
    linear-gradient(
      100deg,
      rgba(198, 166, 106, 0.12),
      rgba(198, 166, 106, 0.018) 66%
    ),
    #121210;
}
.verse-card-featured p {
  max-width: 850px;
  margin: 18px 0 16px;
  font-size: clamp(28px, 4.4vw, 49px);
  line-height: 1.3;
}
.verse-ornament {
  position: absolute;
  top: -29px;
  right: 28px;
  color: rgba(226, 199, 141, 0.13);
  font-family: var(--serif);
  font-size: 160px;
  line-height: 1;
}
.verse-number {
  color: #8f8879;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
}
.translation-note {
  margin: 20px 0 0;
  color: #79746b;
  font-size: 10px;
}
.translation-note a {
  margin-left: 6px;
  color: #cbb47b;
  text-underline-offset: 3px;
}
.recipient-card {
  display: grid;
  gap: 7px;
  max-width: 390px;
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(198, 166, 106, 0.08),
    rgba(255, 255, 255, 0.01)
  );
}
.recipient-label {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.recipient-card > strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.recipient-card > span:not(.recipient-label) {
  color: #aaa69d;
  font-size: 11px;
}
.text-copy-button {
  width: max-content;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(226, 199, 141, 0.42);
  background: none;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-copy-button:hover {
  color: #fff;
  border-color: #fff;
}
.text-copy-button span {
  margin-left: 5px;
}
.form-error {
  padding: 0 2px;
}
.static-status {
  color: #e0cc9c;
}
.pix-recipient-confirm {
  margin: 4px 0 4px;
  color: #b9b3a7;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}
.pix-recipient-confirm strong {
  color: #e5d3a9;
  font-size: 12px;
}
.payment-result textarea {
  min-height: 100px;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.button-copy {
  justify-content: center;
  gap: 13px;
}
.poll-hint strong {
  color: #e7dcc0;
}
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pillar:nth-child(2),
.verse-card:nth-child(2) {
  transition-delay: 80ms;
}
.pillar:nth-child(3),
.verse-card:nth-child(3) {
  transition-delay: 150ms;
}
.pillar:nth-child(4),
.verse-card:nth-child(4) {
  transition-delay: 220ms;
}
@media (max-width: 900px) {
  .word-section {
    padding: 91px 0 100px;
  }
  .verse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .verse-card-featured {
    grid-column: 1/-1;
  }
  .verse-card {
    min-height: 205px;
  }
  .scroll-cue {
    right: 26px;
    bottom: 32px;
  }
}
@media (max-width: 640px) {
  .scroll-cue {
    display: none;
  }
  .word-section {
    padding: 77px 0 83px;
  }
  .word-intro h2 {
    margin: 28px 0 12px;
    font-size: 40px;
  }
  .word-intro > p {
    font-size: 13px;
  }
  .verse-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 31px;
  }
  .verse-card {
    min-height: 0;
    gap: 15px;
    padding: 21px 19px;
  }
  .verse-card p {
    margin: 12px 0 8px;
    font-size: 21px;
  }
  .verse-card-featured {
    grid-column: auto;
    min-height: 205px;
    padding: 26px 22px;
  }
  .verse-card-featured p {
    margin: 18px 0 9px;
    font-size: clamp(29px, 8vw, 40px);
  }
  .verse-ornament {
    top: -22px;
    right: 12px;
    font-size: 132px;
  }
  .verse-number {
    font-size: 8px;
  }
  .translation-note {
    max-width: 350px;
    line-height: 1.7;
  }
  .translation-note a {
    display: inline-block;
    margin: 4px 0 0;
  }
  .recipient-card {
    max-width: none;
    margin-top: 23px;
    padding: 18px;
  }
  .support-intro h2 {
    font-size: 43px;
  }
  .donation-card {
    padding: 23px 19px;
  }
  .qr-frame {
    width: min(100%, 224px);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 16px;
  }
  .payment-result textarea {
    min-height: 108px;
    font-size: 10px;
  }
  .pix-recipient-confirm {
    font-size: 10px;
  }
  .closing-note p {
    max-width: 570px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span {
    animation: none;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .verse-card:hover {
    transform: none;
  }
}

.pix-key-value {
  width: max-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #e5d3a9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}
