:root {
  --forest: #082f24;
  --forest-deep: #031e17;
  --green: #2f9b57;
  --sage: #dfeadc;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --gold: #d6ab52;
  --ink: #183127;
  --muted: #5e6f66;
  --line: rgba(8, 47, 36, 0.14);
  --shadow: 0 24px 80px rgba(4, 34, 25, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

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

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.75rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.section--cream {
  background: var(--cream);
}

.section--forest {
  background: var(--forest);
  color: white;
}

.section--sage {
  background: var(--sage);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #8be0a6;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  padding: 14px 26px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #247d45;
  box-shadow: 0 12px 34px rgba(47, 155, 87, 0.28);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.menu-button:focus-visible,
.popup__close:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button--small {
  min-height: 43px;
  padding: 10px 19px;
}

.button--gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.button--gold:hover {
  background: #e3bd6d;
}

.button--light {
  background: white;
  color: var(--forest);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(47, 155, 87, 0.4);
  text-underline-offset: 6px;
}

.text-link--light {
  color: white;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 210px;
  height: 58px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #29443a;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a:not(.button) {
  padding: 8px 0;
}

.main-nav a.active:not(.button) {
  color: var(--green);
  box-shadow: inset 0 -2px var(--green);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: min(850px, calc(100vh - 78px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.hero__image,
.page-hero > img,
.donation-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 26, 19, 0.9) 0%, rgba(2, 26, 19, 0.54) 55%, rgba(2, 26, 19, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 26, 19, 0.72) 0%, transparent 56%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 94px 56px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 70px;
}

.hero__facts {
  display: grid;
  max-width: 950px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 28px;
}

.hero__facts div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 28px;
}

.hero__facts div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero__facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.intro-grid,
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 10%;
}

.intro-grid h2,
.story-grid h2 {
  margin-bottom: 0;
}

.prose {
  color: var(--muted);
  font-size: 1.08rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose--large {
  font-size: 1.2rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.symptoms-section {
  background: var(--forest);
  color: white;
}

.symptoms-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8%;
}

.symptoms-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 38px;
}

.symptoms-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.spiritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.spiritual-card {
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 28px;
}

.spiritual-card > span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.spiritual-card h3 {
  margin: 46px 0 14px;
  font-size: 1.55rem;
}

.spiritual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.care-note {
  max-width: 860px;
  margin: 34px 0 0;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 34px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-card > span,
.values-grid article > span,
.impact-list span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.benefit-card h3 {
  margin: 70px 0 15px;
}

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

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}

.split--video {
  grid-template-columns: 0.86fr 1.14fr;
}

.muted-light {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.video-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 30, 23, 0.75), rgba(3, 30, 23, 0.05));
  content: "";
}

.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.video-card:hover img {
  transform: scale(1.035);
}

.video-card__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--forest);
  font-size: 1.35rem;
  transform: translate(-50%, -50%);
}

.video-card__label {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  font-weight: 800;
}

.place-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}

.place-grid__photo {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
}

.place-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-grid__photo--large {
  grid-row: 1 / 3;
}

.place-grid__content {
  border-radius: var(--radius);
  background: var(--cream);
  padding: 42px;
}

.place-grid__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.place-grid__content p:not(.eyebrow) {
  color: var(--muted);
}

.section--cta {
  background: var(--forest-deep);
  color: white;
}

.cta-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.cta-panel h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.cta-panel__action {
  min-width: 240px;
}

.cta-panel__action p {
  margin-bottom: 16px;
}

.cta-panel__action strong {
  font-size: 1.6rem;
}

.cta-panel__action .payment-note {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.page-hero,
.donation-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.page-hero__veil,
.donation-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 28, 20, 0.88), rgba(2, 28, 20, 0.28));
}

.page-hero__content,
.donation-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.page-hero h1,
.donation-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
}

.portrait-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.portrait-frame img,
.founder-frame img {
  object-fit: cover;
}

.founder-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
}

.founder-frame img {
  object-position: center;
}

.lead-copy {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(8, 47, 36, 0.15);
}

.values-grid article {
  min-height: 260px;
  background: var(--sage);
  padding: 40px;
}

.values-grid h3 {
  margin: 55px 0 12px;
}

.centered-copy {
  max-width: 820px;
  text-align: center;
}

.centered-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--cta .centered-copy {
  color: white;
}

.section--cta .centered-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.testimonials-heading {
  max-width: 850px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.google-review {
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: white;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.1);
  padding: 24px;
}

.google-review:first-child {
  grid-column: 1 / -1;
}

.google-review__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-review__top > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.google-review__top small {
  color: #70757a;
}

.google-review__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #1a73e8;
  color: white;
  font-weight: 800;
}

.google-review__g {
  color: #4285f4;
  font-size: 1.25rem;
  font-weight: 900;
}

.google-review__stars {
  margin: 18px 0 10px;
  color: #fbbc04;
  letter-spacing: 0.08em;
}

.google-review p {
  margin: 0;
  color: #3c4043;
}

.review-placeholder {
  display: inline-block;
  margin-top: 16px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #5f6368;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
}

.contact-strip {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.72fr;
  gap: 9%;
}

.contact-strip h2 {
  margin-bottom: 0;
}

.contact-strip__details p {
  color: var(--muted);
  font-size: 1.08rem;
}

.registration-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 155, 87, 0.45), transparent 30%),
    var(--forest-deep);
  color: white;
}

.registration-hero__grid {
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 8%;
  padding-block: 70px;
}

.registration-hero h1 {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.registration-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
}

.registration-hero__image {
  position: relative;
  aspect-ratio: 0.775;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
}

.registration-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-link {
  border: 1px solid rgba(47, 155, 87, 0.45);
  border-radius: 999px;
  color: var(--green);
  padding: 8px 14px !important;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.admin-login-form {
  display: grid;
  max-width: 480px;
  gap: 18px;
  margin-top: 28px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

[hidden] {
  display: none !important;
}

.price-lockup {
  display: flex;
  margin-top: 36px;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.price-lockup span,
.price-lockup small {
  color: rgba(255, 255, 255, 0.63);
}

.price-lockup strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8%;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(8, 47, 36, 0.2);
  border-left: 1px solid rgba(8, 47, 36, 0.2);
}

.topic-grid > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(8, 47, 36, 0.2);
  border-bottom: 1px solid rgba(8, 47, 36, 0.2);
  padding: 24px;
}

.topic-grid span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.topic-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.included-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9%;
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 18px 10px 18px 38px;
}

.included-list li::before {
  position: absolute;
  left: 5px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.included-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.packing-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
}

.packing-card,
.terms-card {
  border-radius: var(--radius);
  padding: 42px;
}

.packing-card {
  border: 1px solid var(--line);
  background: white;
}

.terms-card {
  background: var(--forest);
  color: white;
}

.terms-card h3 {
  margin: 30px 0 10px;
  font-size: 1.55rem;
}

.terms-card h3:first-of-type {
  margin-top: 0;
}

.terms-card p {
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 15px 0 15px 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.registration-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  padding: 38px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.83rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cbd5ce;
  border-radius: 12px;
  background: #fcfdfb;
  color: var(--ink);
  padding: 12px 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(47, 155, 87, 0.14);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.registration-form .button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-message--success {
  background: #def3e4;
  color: #1a6837;
}

.form-message--error {
  background: #ffe6e1;
  color: #9e2f24;
}

.form-privacy {
  color: #78857d;
  text-align: center;
}

.form-section { min-width: 0; margin: 0; border: 1px solid #dbe5dd; border-radius: 18px; padding: 22px; }
.form-section > legend, .choice-field > legend { color: var(--forest); font-weight: 850; }
.form-section > legend { padding: 0 8px; font-family: var(--font-display); font-size: 1.3rem; }
.form-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-help { margin: 0 0 18px; color: var(--muted); font-size: 0.9rem; }
.choice-field { display: flex; min-width: 0; flex-direction: column; gap: 10px; margin: 0; border: 1px solid #dbe5dd; border-radius: 14px; padding: 16px; }
.choice-field > legend { padding: 0 5px; font-size: 0.85rem; line-height: 1.45; }
.choice-field label { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 0.9rem; }
.choice-field input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--green); }
.policy-layout, .payment-layout { max-width: 980px; }
.policy-card, .payment-card { border-radius: var(--radius); background: white; box-shadow: var(--shadow); padding: clamp(22px, 5vw, 48px); }
.policy-scroll { max-height: 58vh; overflow-y: auto; border: 1px solid #dbe5dd; border-radius: 16px; background: #fcfdfb; padding: clamp(20px, 4vw, 38px); scrollbar-color: var(--green) #edf3ee; }
.policy-scroll h2 { margin-top: 0; text-transform: uppercase; }
.policy-scroll h3 { margin-top: 30px; color: var(--forest); }
.policy-scroll p { color: var(--muted); line-height: 1.75; }
.policy-actions { display: grid; gap: 18px; margin-top: 24px; }
.policy-actions .button { justify-self: start; }
.button:disabled { cursor: not-allowed; opacity: 0.56; }
.registration-hero__cta { margin-top: 26px; }
.registration-flow { scroll-margin-top: 90px; }
.registration-start-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 42px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); padding: clamp(28px, 5vw, 54px); }
.registration-start-card h2, .flow-heading h2 { margin-bottom: 14px; }
.registration-start-card p:last-child, .flow-heading p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.registration-policy-card { max-width: 980px; margin-inline: auto; }
.flow-heading { margin-bottom: 26px; }
.registration-form-panel { align-items: start; }
.standalone-form-page { padding-top: clamp(80px, 10vw, 140px); }
.standalone-form-heading { max-width: 1050px; margin-bottom: 56px; }
.standalone-form-heading h1 { margin-bottom: 20px; font-size: clamp(4rem, 9vw, 8rem); line-height: .9; }
.standalone-form-heading > p:last-child { max-width: 800px; color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.success-page { min-height: 80vh; padding-top: clamp(80px, 10vw, 140px); }
.success-card { max-width: 1040px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); padding: clamp(28px, 7vw, 78px); text-align: center; }
.success-mark { display: inline-grid; width: 74px; height: 74px; place-items: center; margin-bottom: 24px; border-radius: 50%; background: var(--green); color: white; font-size: 2.4rem; font-weight: 900; }
.success-card h1 { max-width: 850px; margin: 8px auto 24px; font-size: clamp(3.4rem, 8vw, 7rem); line-height: .94; }
.success-card > p:not(.eyebrow):not(.success-protocol) { max-width: 790px; margin-inline: auto; color: var(--muted); line-height: 1.75; }
.success-lead { font-size: clamp(1.12rem, 2vw, 1.35rem); }
.success-protocol { display: inline-block; margin: 20px 0; border-radius: 999px; background: #e4f4e9; color: var(--forest); padding: 10px 18px; }
.success-next-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 36px 0; text-align: left; }
.success-next-steps > div { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.success-next-steps strong { display: grid; min-width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--forest); color: white; }
.success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.share-card { display: grid; justify-items: center; gap: 22px; margin-top: 54px; border-radius: 22px; background: var(--forest); color: white; padding: clamp(26px,5vw,48px); }
.share-card h2 { margin-bottom: 10px; font-size: clamp(2.5rem,6vw,4.5rem); }
.share-card p { max-width: 650px; margin-inline: auto; color: rgba(255,255,255,.76); }
.share-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.share-links a { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: white; padding: 9px 15px; font-size: .88rem; font-weight: 800; text-decoration: none; }
.share-links a:hover { background: rgba(255,255,255,.12); }
.payment-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 30px; max-width: 960px; }
.payment-layout .section-heading { max-width: 780px; margin-bottom: 0; }
.payment-layout .section-heading h1 { max-width: none; font-size: clamp(3.4rem, 8vw, 6.4rem); line-height: 0.94; }
.payment-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.payment-card h2 { max-width: 720px; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.02; }
.payment-card .button { max-width: 100%; white-space: normal; text-align: center; }
.payment-status { border-radius: 999px; background: #e4f4e9; color: #1d6b3a; padding: 8px 12px; font-size: 0.76rem; font-weight: 850; letter-spacing: 0.05em; text-transform: uppercase; }
.payment-price { display: flex; flex-direction: column; gap: 2px; }
.payment-price strong { color: var(--forest); font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5rem); line-height: 1; }
.payment-card .check-list { width: 100%; margin-top: 6px; }
.payment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.payment-options .payment-card { height: 100%; }
.payment-options .payment-card h2 { font-size: clamp(2.2rem, 4vw, 3.35rem); }
.payment-card--pix { background: #f0f7ef; }
.payment-qr { width: min(260px, 100%); margin: 4px auto 0; text-align: center; }
.payment-qr img { display: block; width: 100%; height: auto; border: 10px solid white; border-radius: 18px; }
.payment-qr figcaption, .payment-help { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.payment-qr figcaption { margin-top: 10px; }
.pix-key { display: flex; width: 100%; min-width: 0; flex-direction: column; gap: 4px; border: 1px solid var(--line); border-radius: 14px; background: white; padding: 14px 16px; }
.pix-key span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pix-key strong { overflow-wrap: anywhere; color: var(--forest); }
.interest-notice { width: 100%; border: 1px solid var(--line); border-radius: 16px; background: #f7faf6; color: var(--forest); margin: 0; padding: 14px 16px; font-size: .88rem; line-height: 1.5; }
.registration-details { min-width: 200px; }
.registration-details summary { cursor: pointer; color: var(--green); font-weight: 800; }
.registration-details dl { margin: 14px 0 0; white-space: normal; }
.registration-details dt { margin-top: 10px; font-size: 0.76rem; font-weight: 850; }
.registration-details dd { margin: 3px 0 0; color: var(--muted); line-height: 1.45; }

.simple-hero {
  background:
    radial-gradient(circle at 78% 25%, rgba(214, 171, 82, 0.2), transparent 28%),
    var(--forest);
  color: white;
  padding: 140px 0 120px;
}

.simple-hero h1,
.simple-hero > div > p:last-child {
  max-width: 850px;
}

.simple-hero > div > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
}

.book-grid {
  display: grid;
  gap: 45px;
}

.book-card {
  display: grid;
  align-items: center;
  grid-template-columns: 280px 1fr;
  gap: 7%;
  border-bottom: 1px solid var(--line);
  padding-bottom: 45px;
}

.book-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.book-cover {
  position: relative;
  aspect-ratio: 0.7;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px 18px 18px 8px;
  box-shadow:
    -10px 16px 38px rgba(5, 42, 31, 0.22),
    inset 8px 0 rgba(255, 255, 255, 0.12);
  padding: 26px;
}

.book-cover::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.35;
}

.book-cover small,
.book-cover span,
.book-cover div {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-cover h2 {
  position: relative;
  z-index: 1;
  margin: 12px 0 45px;
  font-size: 2.5rem;
}

.book-cover--light {
  background: #e9eadc;
  color: var(--forest);
}

.book-cover--dark {
  background: var(--forest-deep);
  color: white;
}

.book-cover--gold {
  background: #c99b43;
  color: #162d24;
}

.book-card__copy {
  max-width: 610px;
}

.book-card__copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.book-status {
  display: inline-flex;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.book-card__copy h3 {
  margin: 20px 0 12px;
  font-size: 2.5rem;
}

.book-price {
  display: flex;
  margin: 24px 0;
  align-items: baseline;
  gap: 14px;
}

.book-price s {
  color: #8a968e;
}

.book-price strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.donation-hero__content p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
}

.impact-list {
  border-top: 1px solid var(--line);
}

.impact-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.impact-list p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

.donation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-radius: var(--radius);
  background: var(--forest);
  color: white;
  padding: 62px;
}

.donation-card h2 {
  max-width: 720px;
}

.donation-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.donation-card .button {
  flex: 0 0 auto;
}

.donation-card__action {
  flex: 0 0 230px;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.pix-qr {
  width: min(100%, 170px);
  margin: 0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  padding: 10px 10px 8px;
  color: var(--forest);
}

.pix-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.pix-qr figcaption {
  margin-top: 6px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.donation-card__action .button {
  width: 100%;
}

.admin-page {
  min-height: 75vh;
  background: var(--cream);
  padding: 84px 0 110px;
}

.admin-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.admin-heading h1,
.admin-access-card h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.admin-heading p:not(.eyebrow),
.admin-access-card p {
  color: var(--muted);
}

.admin-access-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  padding: 46px;
}

.admin-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 50px rgba(4, 34, 25, 0.09);
  padding: 22px;
}

.admin-search {
  display: flex;
  width: min(620px, 100%);
  flex-direction: column;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd5ce;
  border-radius: 12px;
  padding: 10px 14px;
}

.admin-search input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(47, 155, 87, 0.14);
}

.admin-results {
  margin: 26px 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.admin-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 14px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #eef5ec;
  color: var(--forest);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table tbody tr:hover {
  background: #fbfcf8;
}

.admin-table a {
  color: #1b7540;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-table small {
  color: var(--muted);
}

.admin-empty {
  margin: 0;
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

.popup-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 24, 17, 0.72);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.popup {
  position: relative;
  display: grid;
  width: min(850px, 100%);
  overflow: hidden;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.45);
}

.popup__image {
  position: relative;
  min-height: 540px;
  background: var(--forest);
}

.popup__image img {
  object-fit: cover;
}

.popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.popup__content h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.popup__content p:not(.eyebrow) {
  color: var(--muted);
}

.popup__close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

.site-footer {
  background: #021b14;
  color: white;
  padding: 74px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr;
  gap: 6%;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid strong {
  margin-bottom: 9px;
  color: #8be0a6;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  margin-top: 54px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  padding-top: 24px;
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    width: min(84vw, 360px);
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    box-shadow: -24px 0 70px rgba(4, 34, 25, 0.18);
    font-size: 1.15rem;
    padding: 80px 34px;
  }

  .main-nav--open {
    display: flex;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(2, 26, 19, 0.92) 0%, rgba(2, 26, 19, 0.45) 72%, rgba(2, 26, 19, 0.25) 100%);
  }

  .hero__content {
    padding-block: 80px 42px;
  }

  .intro-grid,
  .story-grid,
  .split,
  .split--video,
  .symptoms-layout,
  .registration-hero__grid,
  .form-layout,
  .included-layout,
  .packing-layout,
  .contact-strip {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefit-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .video-card {
    min-height: 380px;
  }

  .place-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .place-grid__photo,
  .place-grid__photo--large {
    min-height: 420px;
    grid-row: auto;
  }

  .cta-panel,
  .donation-card,
  .admin-heading,
  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .donation-card__action {
    width: 100%;
    max-width: 260px;
    flex-basis: auto;
  }

  .admin-toolbar .button {
    width: 100%;
  }

  .registration-hero__image {
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }

  .book-card {
    grid-template-columns: 220px 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
  .payment-options { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand {
    width: 180px;
    height: 52px;
  }

  .hero {
    min-height: calc(100svh - 70px);
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 42px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__facts div,
  .hero__facts div:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
    padding: 15px 0;
  }

  .hero__facts div:first-child {
    border-top: 0;
  }

  .benefit-grid {
    gap: 14px;
  }

  .spiritual-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .google-review:first-child {
    grid-column: auto;
  }

  .symptoms-card,
  .spiritual-card {
    padding: 26px 22px;
  }

  .benefit-card {
    min-height: 250px;
    padding: 28px;
  }

  .benefit-card h3 {
    margin-top: 48px;
  }

  .video-card,
  .place-grid__photo,
  .place-grid__photo--large {
    min-height: 300px;
  }

  .place-grid__content {
    padding: 30px 24px;
  }

  .page-hero,
  .donation-hero {
    min-height: 540px;
  }

  .page-hero__content,
  .donation-hero__content {
    padding-block: 64px;
  }

  .portrait-frame {
    min-height: 440px;
  }

  .founder-frame {
    min-height: 460px;
  }

  .values-grid {
    gap: 0;
  }

  .registration-hero__grid {
    min-height: auto;
    padding-block: 62px;
  }

  .registration-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .price-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .registration-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 18px;
  }

  .field--full {
    grid-column: auto;
  }

  .form-section { padding: 18px 14px; }
  .form-section__grid, .payment-layout { grid-template-columns: 1fr; }
  .registration-start-card { grid-template-columns: 1fr; gap: 24px; }
  .registration-start-card .button { width: 100%; }
  .standalone-form-heading { margin-bottom: 34px; }
  .standalone-form-heading h1, .success-card h1 { font-size: clamp(3.1rem,15vw,4.8rem); }
  .success-next-steps { grid-template-columns: 1fr; }
  .success-actions .button, .share-card .button { width: 100%; }
  .payment-layout .section-heading h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .policy-actions .button, .payment-card .button { width: 100%; }

  .book-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .book-cover {
    width: min(82vw, 290px);
    margin-inline: auto;
  }

  .donation-card {
    gap: 30px;
    padding: 34px 24px;
  }

  .pix-qr {
    width: min(100%, 170px);
  }

  .donation-card .button {
    width: 100%;
  }

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

  .topic-grid > div {
    min-height: 115px;
  }

  .packing-card,
  .terms-card {
    padding: 30px 22px;
  }

  .admin-page {
    padding: 58px 0 76px;
  }

  .admin-access-card {
    padding: 30px 22px;
  }

  .popup {
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    grid-template-columns: 1fr;
  }

  .popup__image {
    min-height: min(56vh, 440px);
  }

  .popup__content {
    padding: 28px 24px 30px;
  }

  .popup__content h2 {
    font-size: 2.4rem;
  }

  .popup__content .button {
    width: 100%;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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