/* ============================================================
   Deutsch am Abend v2 — Shared Stylesheet
   Theme: Warm terracotta & forest green, human-centered design
   ============================================================ */

:root {
  --orange: #ff751f; /* professional orange, primary accent */
  --orange-dark: #a84a2e;
  --forest: #2d5016; /* grounded forest green */
  --forest-light: #d4ddce;
  --cream: #f5f1e8; /* warm off-white background */
  --paper: #ffffff;
  --charcoal: #3a3a3a; /* body text */
  --slate: #6b6b6b; /* secondary text */
  --sage: #8ba888; /* soft green accent */
  --gold: #d4a574; /* warm highlight */
  --line: #e8e0d6; /* hairline borders */
  --shadow: 0 12px 40px rgba(45, 80, 22, 0.08);

  --display: "Crimson Text", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em 0;
  color: var(--forest);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}

p {
  margin: 0 0 1.1em 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.9em;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 6px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);

  /* linear-gradient(
    135deg,
    var(--orange) 60%,
    var(--orange-dark) 60%,
    var(--gold) 100%
  ); */

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200, 90, 58, 0.18);
}
.brand-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 2px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
nav.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.28s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a[aria-current="page"]::after {
  width: 100%;
}
nav.main-nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 600;
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}
.lang-switch a {
  text-decoration: none;
  padding: 6px 11px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  color: var(--slate);
  transition: all 0.2s ease;
}
.lang-switch a.active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.lang-switch a:hover:not(.active) {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    color: var(--charcoal);
  }
  .nav-toggle svg {
    width: 20px;
    height: 20px;
  }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  nav.main-nav.open {
    display: flex;
  }
  .lang-switch {
    order: 99;
    margin-top: 8px;
  }
}

/* Hero */
.hero {
  position: relative;
  /* overflow: hidden; */
  background: var(--paper);
  padding: 96px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(200, 90, 58, 0.12) 0%,
    rgba(200, 90, 58, 0) 70%
  );
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(45, 80, 22, 0.08) 0%,
    rgba(45, 80, 22, 0) 70%
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 680px;
}
.hero h1 {
  color: var(--forest);
}
.hero p.lede {
  font-size: 1.16rem;
  color: var(--slate);
  max-width: 580px;
  margin-bottom: 32px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--body);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 90, 58, 0.25);
}
.btn-secondary {
  background: #2d5016;
  color: #fff;
}
.btn-secondary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(69, 119, 44, 0.25);
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: #fff;
}

/* Sections */
section {
  padding: 80px 0;
}
.section-cream {
  background: var(--cream);
}
.section-paper {
  background: var(--paper);
}
.section-forest {
  background: var(--forest);
  color: #fff;
}
.section-forest h2,
.section-forest h3 {
  color: #fff;
}

.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}
.card h3 {
  margin-top: 0;
  color: var(--forest);
}
.card p {
  color: var(--slate);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split h2 {
  color: var(--forest);
}
.split p {
  color: var(--slate);
  font-size: 0.98rem;
}

.stat-box {
  background: rgba(45, 80, 22, 0.04);
  border: 1px solid rgba(45, 80, 22, 0.1);
  border-radius: 14px;
  padding: 28px;
  margin-top: 24px;
}
.stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.stat:last-child {
  margin-bottom: 0;
}
.stat-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  font-weight: 600;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
  align-self: center;
}

.fact-list {
  display: flex;
  flex-direction: column;
}
.fact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}
.fact-item:first-child {
  padding-top: 0;
}
.fact-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.fact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 117, 31, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.fact-item h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--forest);
  margin: 0 0 2px;
}
.fact-item p {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* Course cards */
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 14px 14px 0 0;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.course-level {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.course-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}
.course-card .desc {
  color: var(--slate);
  font-size: 0.93rem;
  flex-grow: 1;
  margin-bottom: 18px;
  line-height: 1.7;
}
.course-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: flex-end;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
}
.price small {
  font-family: var(--body);
  font-size: 0.7rem;
  color: var(--slate);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.price-compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 7px;
}
.price-row .price-row-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.price-row .price-row-amount {
  font-family: var(--display);
  font-weight: 700;
  white-space: nowrap;
}
.price-row.is-regular {
  background: transparent;
}
.price-row.is-regular .price-row-label {
  color: var(--slate);
}
.price-row.is-regular .price-row-amount {
  font-size: 1.05rem;
  color: var(--slate);
}
.price-row.is-member {
  background: rgba(255, 117, 31, 0.08);
  border: 1px solid rgba(255, 117, 31, 0.18);
}
.price-row.is-member .price-row-label {
  color: var(--orange-dark);
}
.price-row.is-member .price-row-amount {
  font-size: 1.35rem;
  color: var(--orange);
}
.price-row .price-unit {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--slate);
}
.duration {
  font-size: 0.8rem;
  color: var(--slate);
  text-align: right;
  line-height: 1.5;
}
.course-card .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.exam-card {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    var(--forest-light) 100%
  );
  color: #fff;
  border: none;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.exam-card::before {
  display: none;
}
.exam-card h3 {
  color: #fff;
  margin-top: 0;
}
.exam-card .course-level {
  color: var(--gold);
}
.exam-card .desc {
  color: rgba(255, 255, 255, 0.85);
}
.exam-card .price {
  color: var(--gold);
}
.exam-card .duration {
  color: rgba(255, 255, 255, 0.8);
}
.exam-card .course-meta {
  border-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 760px) {
  .exam-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

.price-note {
  font-size: 0.83rem;
  color: var(--slate);
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(200, 90, 58, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
}

/* ========== SCHEDULE TABLE ========== */
.schedule-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
table.schedule {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 640px;
}
table.schedule th,
table.schedule td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.schedule th {
  background: #2d5016;
  color: #fff;
  font-weight: 600;
  font-family: var(--body);
  font-size: 1.05rem;
}
table.schedule tr:last-child td {
  border-bottom: 0;
}
table.schedule tr:nth-child(even) td {
  background: var(--cream);
}
.admin-note {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--green-dark);
  margin-top: 1rem;
}
/* Included features */
.included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
@media (max-width: 880px) {
  .included {
    grid-template-columns: 1fr;
  }
}
.included-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.included-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
  width: 22px;
  height: 22px;
}
.included-item strong {
  display: block;
  font-family: var(--display);
  color: var(--forest);
  margin-bottom: 4px;
  font-weight: 600;
}
.included-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Form */
.form-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .form-shell {
    padding: 32px 24px;
  }
}

fieldset {
  border: none;
  margin: 0 0 36px 0;
  padding: 0;
}
fieldset legend {
  font-family: var(--display);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.1rem;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--orange);
  width: 100%;
  padding-bottom: 12px;
}

.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.89rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 0.96rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: all 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: var(--paper);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 90, 58, 0.1);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) {
  .field-row-3 {
    grid-template-columns: 1fr;
  }
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) {
  .radio-grid {
    grid-template-columns: 1fr;
  }
}
.radio-card {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  background: var(--cream);
  transition: all 0.2s ease;
}
.radio-card:hover {
  border-color: var(--orange);
  background: rgba(200, 90, 58, 0.04);
}
.radio-card input {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.radio-card input:checked + span {
  color: var(--forest);
  font-weight: 600;
}

.required-mark {
  color: var(--orange);
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--slate);
  max-width: 380px;
}

.form-status {
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
  font-size: 0.9rem;
}
.form-status.error {
  background: rgba(200, 90, 58, 0.1);
  border-left: 3px solid var(--orange);
  color: var(--orange);
  display: block;
}
.form-status.success {
  background: rgba(45, 80, 22, 0.1);
  border-left: 3px solid var(--forest);
  color: var(--forest);
  display: block;
}

/* Nonprofit banner */
.np-banner {
  background: var(--orange);
  color: #fff;
}
.np-banner .container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-size: 0.84rem;
  line-height: 1.4;
}
.np-banner svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Footer */
footer.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--body);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 12px;
  font-size: 0.91rem;
}
.footer-grid a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.footer-grid a:hover {
  color: var(--orange);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.91rem;
  line-height: 1.7;
  max-width: 340px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA band */
.cta-band {
  background: #2d5016;
  color: #fff;
  border-radius: 18px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(255, 255, 255, 0.08),
    transparent 50%
  );
}

.cta-band > * {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 0.98rem;
}
.cta-band .btn {
  margin: 0 auto;
}
@media (max-width: 600px) {
  .cta-band {
    padding: 40px 28px;
  }
}

.cta-band2 {
  background: #fff;
  color: #2d5016;
  border-radius: 18px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(255, 255, 255, 0.08),
    transparent 50%
  );
}

.cta-band2 > * {
  position: relative;
  z-index: 2;
}
.cta-band2 h2 {
  color: #2d5016;
  margin-bottom: 12px;
}
.cta-band2 p {
  color: #6b6b6b;
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 0.98rem;
}
.cta-band2 .btn {
  margin: 0 auto;
}
@media (max-width: 600px) {
  .cta-band2 {
    padding: 40px 28px;
  }
}

/* Donation box */
.donation-box {
  /* border: 1px solid var(--line); */
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.donation-box h3 {
  color: var(--forest);
  margin-top: 0;
  font-size: 1.3rem;
}
.donation-box p {
  color: var(--charcoal);
  margin: 0 0 18px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.donation-methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.donation-method {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.donation-method:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Membership */
.membership-card {
  background: var(--forest);
  color: #fff;
  border-radius: 14px;
  padding: 44px;
  margin-top: 30px;
}
.membership-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.membership-card .member-tagline {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.membership-card p {
  color: rgba(255, 255, 255, 0.88);
}
.membership-pricing {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 6px 24px;
  margin-top: 20px;
}
.membership-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
}
.membership-price-row + .membership-price-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.membership-price-row .price-amount {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.membership-price-row .price-for {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 480px) {
  .membership-price-row {
    flex-direction: column;
    gap: 2px;
  }
}
.membership-benefit-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .membership-benefit-list {
    grid-template-columns: 1fr;
  }
}
.membership-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.membership-benefit-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.membership-steps {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 24px;
}
.membership-steps ol {
  margin: 10px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.8;
}
.membership-steps strong {
  color: #fff;
}

/* ---------- Donate page ---------- */
.donate-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .donate-grid {
    grid-template-columns: 1fr;
  }
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.impact-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.impact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 117, 31, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.impact-item h3 {
  font-size: 1.02rem;
  margin: 0 0 4px;
  color: var(--forest);
}
.impact-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.testimonial-box {
  background: var(--forest);
  color: #fff;
  border-radius: 12px;
  padding: 30px 28px;
  margin-top: 28px;
  position: relative;
}
.testimonial-box .quote-mark {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testimonial-box p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 14px;
}
.testimonial-box cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.bank-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 28px;
  margin-top: 28px;
}
.bank-box h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bank-box > p {
  color: var(--slate);
  font-size: 0.88rem;
  margin: 0 0 18px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.bank-row:first-of-type {
  border-top: none;
}
.bank-row .bank-label {
  color: var(--slate);
  flex-shrink: 0;
}
.bank-row .bank-value {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--charcoal);
  text-align: right;
}
.copy-btn {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.copy-btn:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}
.copy-btn.copied {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.bank-admin-note {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(255, 117, 31, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--orange-dark);
}

/* Donation widget (sticky form) */
.donate-widget {
  background: var(--paper);
  border-radius: 16px;
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
  padding: 32px;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .donate-widget {
    position: static;
  }
}
.donate-widget h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.donate-widget > p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.freq-toggle {
  display: flex;
  background: var(--cream);
  border-radius: 9px;
  padding: 4px;
  margin-bottom: 22px;
}
.freq-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  border-radius: 7px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s ease;
}
.freq-toggle button.active {
  background: var(--paper);
  color: var(--forest);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.donate-widget label.field-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.amount-btn {
  border: 1.5px solid var(--line);
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.15s ease;
}
.amount-btn:hover {
  border-color: var(--orange);
}
.amount-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.amount-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.amount-slider-row .currency-prefix {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--slate);
  font-size: 0.85rem;
}
.amount-slider-row input[type="range"] {
  flex: 1;
  accent-color: var(--orange);
}

.donate-total {
  background: rgba(139, 168, 136, 0.18);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.donate-total .total-label {
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 600;
}
.donate-total .total-amount {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-dark);
}

.donate-widget .field {
  margin-bottom: 16px;
}
.donate-widget .field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.donate-widget .field input,
.donate-widget .field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--charcoal);
}
.donate-widget .field input:focus,
.donate-widget .field textarea:focus {
  border-color: var(--orange);
  background: var(--paper);
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(255, 117, 31, 0.1);
}
.donate-widget .field textarea {
  min-height: 80px;
  resize: vertical;
}

.receipt-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 0.86rem;
  color: var(--slate);
}
.receipt-check input {
  margin-top: 3px;
  accent-color: var(--orange);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 24px;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.terms-check input {
  margin-top: 4px;
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.terms-check label {
  cursor: pointer;
}
.terms-check a {
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: none;
}
.terms-check a:hover {
  text-decoration: underline;
}

.donate-widget .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 0;
}
.donate-widget .alt-contact {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--slate);
}
.donate-widget .alt-contact a {
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Policy / legal content ---------- */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}
.policy-content .updated-date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 40px;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.policy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.policy-content h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-top: 24px;
  margin-bottom: 8px;
}
.policy-content p {
  color: var(--charcoal);
  font-size: 0.98rem;
}
.policy-content ul {
  margin: 0 0 1.1em 0;
  padding-left: 22px;
  color: var(--charcoal);
}
.policy-content li {
  margin-bottom: 8px;
  font-size: 0.97rem;
}
.policy-content li strong {
  color: var(--forest);
}
.policy-content a {
  color: var(--orange-dark);
  text-decoration: none;
  font-weight: 600;
}
.policy-content a:hover {
  text-decoration: underline;
}
.policy-content .policy-note {
  background: rgba(255, 117, 31, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--slate);
  margin: 28px 0;
}
.policy-toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.policy-toc h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--body);
  font-weight: 700;
  color: var(--slate);
  margin: 0 0 12px;
  padding: 0;
  border: none;
}
.policy-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 24px;
}
@media (max-width: 600px) {
  .policy-toc ol {
    columns: 1;
  }
}
.policy-toc li {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.policy-toc a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
}
.policy-toc a:hover {
  color: var(--orange-dark);
}

/* Misc */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
