:root {
  --ink: #173f39;
  --paper: #f3ead6;
  --cream: #f8f0de;
  --orange: #e87e6f;
  --yellow: #e9b0a7;
  --green: #226b60;
  --line: rgba(34, 107, 96, 0.28);
  --max: 1180px;
  --gutter: max(24px, calc((100vw - var(--max)) / 2));
  --header-h: 70px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

a {
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-h);
  width: calc(100% + 2 * var(--gutter));
  margin-left: calc(-1 * var(--gutter));
  padding: 0 var(--gutter);
  background: rgba(243, 234, 214, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.language-switch {
  display: flex;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 3px;
}
.language-switch button {
  min-width: 38px;
  min-height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}
.language-switch button[aria-pressed="true"] {
  color: white;
  background: var(--green);
}
.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}
.logo-crop {
  position: relative;
  display: block;
  width: auto;
  height: calc(var(--header-h) - 12px);
  max-height: 100%;
  overflow: hidden;
}
.logo-crop img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.header-cta {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-section,
main .language-page > section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  box-sizing: border-box;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding: 40px var(--gutter);
  overflow: hidden;
  background: #e9b0a7;
}
.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 720px;
  padding-top: 54px;
  padding-bottom: 64px;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
h1 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 7.2vw, 7rem);
}
.hero h1 em,
h1 em {
  color: #f8f0de;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.28);
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-intro {
  max-width: 650px;
  margin: 0 0 36px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero .sun,
.hero .arch {
  position: absolute;
  z-index: 0;
}
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.hero .sun {
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  top: 11%;
  right: 0;
}
.hero .arch {
  width: 62%;
  height: 48%;
  border: 26px solid var(--green);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  bottom: -5%;
}
.hero .arch-one {
  left: -12%;
}
.hero .arch-two {
  right: -22%;
  transform: scale(0.7);
  transform-origin: bottom;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}
.button-primary {
  background: var(--orange);
}
.text-link,
.card-link {
  font-weight: 800;
  text-underline-offset: 5px;
}

.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
  background: var(--green);
  color: white;
}

.qa-section {
  padding-top: 65px;
  padding-bottom: 72px;
}
.section-heading {
  display: grid;
  align-items: start;
  margin-bottom: 60px;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}
.accordion {
  border-top: 1px solid var(--ink);
}
details {
  border-bottom: 1px solid var(--ink);
}
summary {
  list-style: none;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 28px 8px;
  cursor: pointer;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  grid-column: 3;
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 400;
}
details[open] summary::after {
  content: "−";
}
summary span,
.card-number {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.answer {
  max-width: 760px;
  margin-left: 70px;
  padding: 0 8px 30px;
  font-size: 1.08rem;
}
.answer p:last-child {
  margin-bottom: 0;
}

.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--orange);
}
.numbers h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.numbers > p {
  max-width: 600px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.support {
  padding-top: 70px;
  padding-bottom: 70px;
}
.support-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 65px;
}
.support-intro > p:last-child {
  margin: 0;
  font-size: 1.05rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.support-card {
  min-height: 350px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.support-card.featured {
  background: var(--orange);
}
.support-card h3 {
  margin: 30px 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
}
.support-card p:not(.card-number) {
  max-width: 470px;
}
.support-card .button,
.support-card .card-link {
  margin-top: auto;
  align-self: flex-start;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  box-shadow: 5px 5px 0 white;
}

.patron-focus {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
  background: var(--orange);
}
.patron-card {
  padding: 42px;
  color: white;
  background: var(--green);
}
.patron-card .amount {
  margin: 0 0 24px;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.patron-card .amount span {
  display: inline-block;
  margin-left: 8px;
  font-size: 1rem;
  letter-spacing: 0;
}
.patron-card > p:not(.amount) {
  margin-bottom: 32px;
  font-size: 1.12rem;
}
.patron-card small {
  display: block;
  margin-top: 18px;
  opacity: 0.8;
}

.bank-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 65px;
  padding-bottom: 65px;
}
.bank-intro > p:last-child {
  max-width: 610px;
  font-size: 1.08rem;
}
.bank-card {
  padding: 38px;
  border: 2px solid var(--green);
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--green);
}
.bank-card dl {
  margin: 0 0 30px;
}
.bank-card dl > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.bank-card dl > div:first-child {
  padding-top: 0;
}
.bank-card dt {
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bank-card dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}
.bank-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  word-break: break-word;
}
.copy-iban {
  width: 100%;
  min-height: 52px;
  border: 0;
  color: white;
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.closing {
  padding-top: 65px;
  padding-bottom: 60px;
  text-align: center;
  color: white;
  background: var(--green);
}
.closing h2 {
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-weight: 400;
}
.closing > p:not(.eyebrow):not(.signoff) {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.2rem;
}
.button-light {
  border-color: white;
  background: var(--cream);
  color: var(--ink);
  word-break: break-word;
}
.button-light:hover {
  box-shadow: 5px 5px 0 var(--orange);
}
.contact {
  padding-top: 32px;
  font-size: 0.88rem;
}
.signoff {
  margin-top: 32px;
}
footer {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  display: flex;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: var(--ink);
  color: white;
  font-size: 0.85rem;
}
footer p {
  margin: 0;
}

@media (max-width: 800px) {
  .site-header {
    min-height: 62px;
  }
  .header-right {
    gap: 12px;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .hero-copy {
    padding: 64px 24px 62px;
  }
  .hero .sun {
    width: min(45vw, 300px);
    top: 24%;
    right: -8%;
  }
  .promise,
  .numbers {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .qa-section,
  .support {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 38px;
  }
  summary {
    grid-template-columns: 42px 1fr;
    padding: 24px 0;
  }
  .answer {
    margin-left: 42px;
  }
  .numbers {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .support-intro {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .support-card {
    min-height: 330px;
    padding: 28px;
  }
  .closing {
    padding-top: 48px;
    padding-bottom: 45px;
  }
  .patron-focus {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .bank-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .bank-card {
    padding: 26px;
    box-shadow: 7px 7px 0 var(--green);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.8rem;
  }
  .header-cta {
    display: none;
  }
  .logo-crop {
    width: auto;
    max-width: 120px;
  }
  .button {
    width: 100%;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .text-link {
    align-self: center;
  }
  footer {
    flex-direction: column;
    gap: 8px;
  }
}

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