/* =========================================
   TOGETHER FOR CHILDREN
   Global Design System
========================================= */

:root {

  /* Brand */
  --green: #02a95c;
  --green-hover: #018e4e;
  --green-soft: #eaf8f1;

  /* Neutral */
  --black: #242424;
  --heading: #2f2f2f;
  --text: #5a5a5a;
  --muted: #767676;

  --white: #ffffff;
  --off-white: #fbfaf8;

  --border: #e5e5e5;

  /* Layout */
  --container: 1200px;

  /* Radius */
  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 24px;

  /* Shadow */
  --shadow-small:
    0 2px 8px rgba(0, 0, 0, 0.04);

  --shadow-medium:
    0 10px 35px rgba(0, 0, 0, 0.08);

}


/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


/*
 * Anchored sections should not end up
 * underneath the sticky header.
 */

#story,
#authorization,
#help,
#contact {
  scroll-margin-top: 100px;
}


body {
  min-height: 100vh;

  background: var(--white);

  color: var(--text);

  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}


body.menu-open {
  overflow: hidden;
}


img {
  display: block;

  max-width: 100%;
}


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


button,
input,
textarea {
  font: inherit;
}


button {
  border: 0;
}


/* =========================================
   LAYOUT
========================================= */

.container {
  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin-inline: auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
  color: var(--heading);

  line-height: 1.08;

  letter-spacing: -0.035em;
}


h1 {
  font-size: clamp(
    3rem,
    5.3vw,
    5.4rem
  );

  font-weight: 600;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 24px;

  border-radius: 999px;

  cursor: pointer;

  font-size: 0.94rem;
  font-weight: 600;

  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}


.btn:hover {
  transform: translateY(-1px);
}


.btn-primary {
  background: var(--green);
  color: var(--white);
}


.btn-primary:hover {
  background: var(--green-hover);

  box-shadow:
    0 6px 18px rgba(2, 169, 92, 0.18);
}


.btn-large {
  min-height: 54px;

  padding-inline: 30px;

  font-size: 1rem;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  width: 100%;

  background:
    rgba(255, 255, 255, 0.96);

  border-bottom:
    1px solid transparent;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}


.site-header.scrolled {
  border-color: var(--border);

  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.04);
}


.nav-container {
  display: flex;

  align-items: center;

  min-height: 76px;

  gap: 32px;
}


/* =========================================
   LOGO
========================================= */

.logo {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  flex-shrink: 0;
}


.logo-mark {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: var(--green);

  color: white;

  font-size: 1rem;
  font-weight: 700;
}


.logo-text {
  color: var(--heading);

  font-size: 1rem;
  font-weight: 700;

  letter-spacing: -0.025em;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 34px;

  margin-left: auto;
}


.desktop-nav a {
  position: relative;

  color: var(--black);

  font-size: 0.91rem;
  font-weight: 500;

  transition:
    color 180ms ease;
}


.desktop-nav a:hover {
  color: var(--green);
}


.nav-donate {
  margin-left: 4px;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  margin-left: auto;

  padding: 9px;

  background: transparent;

  cursor: pointer;
}


.menu-button span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px 0;

  border-radius: 10px;

  background: var(--heading);

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}


.mobile-nav {
  display: none;
}


/* =========================================
   LANGUAGE SWITCHER
========================================= */

.language-switcher {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-left: 10px;

  color: var(--border);
}


.language-button {
  padding:
    5px
    2px;

  border: 0;

  background: transparent;

  color: var(--muted);

  font-family: inherit;

  font-size: 0.76rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 180ms ease;
}


.language-button:hover {
  color:
    var(--heading);
}


.language-button.active {
  color:
    var(--green);
}


.mobile-language-switcher {
  margin:
    15px
    0;

  padding:
    14px
    0;

  border-top:
    1px solid
    var(--border);

  border-bottom:
    1px solid
    var(--border);
}


/* =========================================
   HERO
========================================= */

.hero {
  padding:
    62px
    0
    88px;
}


.hero-container {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap: clamp(
    50px,
    7vw,
    100px
  );
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  max-width: 570px;
}


.hero-description {
  max-width: 540px;

  margin-top: 27px;

  color: var(--text);

  font-size: 1.08rem;

  line-height: 1.75;
}


.hero-actions {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-top: 36px;
}


.hero-story-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--heading);

  font-size: 0.96rem;
  font-weight: 600;

  transition:
    color 180ms ease,
    gap 180ms ease;
}


.hero-story-link:hover {
  gap: 12px;

  color: var(--green);
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-media {
  position: relative;

  overflow: hidden;

  min-height: 610px;

  border-radius: var(--radius-large);

  background: var(--off-white);
}


.hero-media img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 600ms ease;
}


.hero-media:hover img {
  transform: scale(1.015);
}
/* =========================================
   SECTION LABEL
========================================= */

.section-label {
  display: inline-block;

  margin-bottom: 20px;

  color: var(--green);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* =========================================
   OUR STORY
========================================= */

.story-section {
  padding:
    120px
    0;

  background: var(--off-white);
}


.story-container {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.92fr);

  align-items: center;

  gap: clamp(
    60px,
    8vw,
    110px
  );
}


/* =========================================
   STORY IMAGE
========================================= */

.story-media {
  position: relative;

  overflow: hidden;

  min-height: 720px;

  border-radius: var(--radius-large);

  background: #eeeeeb;
}


.story-media img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Small decorative shape */

.story-media::after {
  content: "";

  position: absolute;

  right: 22px;
  bottom: 22px;

  width: 72px;
  height: 72px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.92);
}


/* =========================================
   STORY CONTENT
========================================= */

.story-content {
  max-width: 570px;
}


.story-content h2 {
  max-width: 550px;

  margin-bottom: 27px;

  font-size:
    clamp(
      2.35rem,
      4vw,
      3.7rem
    );

  font-weight: 600;
}


.story-intro {
  margin-bottom: 28px;

  color: var(--heading);

  font-size: 1.08rem;
  font-weight: 500;

  line-height: 1.7;
}


.story-text {
  display: flex;

  flex-direction: column;

  gap: 20px;
}


.story-text p {
  color: var(--text);

  font-size: 0.98rem;

  line-height: 1.75;
}


/* =========================================
   STORY MESSAGE
========================================= */

.story-message {
  display: grid;

  grid-template-columns:
    3px
    1fr;

  gap: 18px;

  margin:
    34px
    0;
}


.story-message-line {
  width: 3px;

  height: 100%;

  border-radius: 999px;

  background: var(--green);
}


.story-message p {
  color: var(--heading);

  font-size: 1.04rem;
  font-weight: 600;

  line-height: 1.65;
}


/* =========================================
   HOPE STATEMENT
========================================= */

.hope-section {
  padding:
    125px
    0;

  background: var(--white);
}


.hope-container {
  max-width: 960px;

  text-align: center;
}


.hope-eyebrow {
  display: block;

  margin-bottom: 24px;

  color: var(--green);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.hope-container h2 {
  font-size:
    clamp(
      2.4rem,
      5vw,
      4.7rem
    );

  font-weight: 500;

  line-height: 1.15;
}


.hope-container h2 span {
  display: inline;
}


.hope-container h2 span:last-child {
  color: var(--green);
}
/* =========================================
   HOW YOUR DONATION HELPS
========================================= */

.help-section {
  padding:
    125px
    0;

  background: var(--off-white);
}


/* =========================================
   HELP HEADER
========================================= */

.help-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap: 80px;

  margin-bottom: 70px;
}


.help-heading {
  max-width: 680px;
}


.help-heading h2 {
  font-size:
    clamp(
      2.5rem,
      4.5vw,
      4.2rem
    );

  font-weight: 600;
}


.help-introduction {
  max-width: 470px;

  padding-bottom: 6px;
}


.help-introduction p {
  color: var(--text);

  font-size: 1rem;

  line-height: 1.75;
}


/* =========================================
   HELP LIST
========================================= */

.help-list {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  column-gap: 80px;

  border-top:
    1px solid var(--border);
}


.help-item {
  display: grid;

  grid-template-columns:
    48px
    minmax(0, 1fr);

  gap: 20px;

  min-height: 190px;

  padding:
    34px
    0;

  border-bottom:
    1px solid var(--border);
}


/* =========================================
   NUMBER
========================================= */

.help-number {
  padding-top: 4px;

  color: var(--green);

  font-size: 0.76rem;
  font-weight: 700;

  letter-spacing: 0.06em;
}


/* =========================================
   ITEM CONTENT
========================================= */

.help-item-content {
  max-width: 440px;
}


.help-item-content h3 {
  margin-bottom: 13px;

  color: var(--heading);

  font-size: 1.3rem;
  font-weight: 600;

  letter-spacing: -0.025em;
}


.help-item-content p {
  color: var(--muted);

  font-size: 0.94rem;

  line-height: 1.7;
}


/* =========================================
   SUBTLE HOVER
========================================= */

.help-item {
  transition:
    padding-left 180ms ease;
}


.help-item:hover {
  padding-left: 8px;
}


.help-item:hover .help-item-content h3 {
  color: var(--green);
}


/* =========================================
   HELP FOOTER
========================================= */

.help-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 70px;

  margin-top: 70px;

  padding:
    42px
    46px;

  border-radius:
    var(--radius-large);

  background: var(--white);

  box-shadow:
    var(--shadow-small);
}


.help-footer-content {
  max-width: 650px;
}


.help-footer-content h3 {
  margin-bottom: 10px;

  font-size: 1.35rem;
  font-weight: 600;
}


.help-footer-content p {
  max-width: 600px;

  color: var(--text);

  font-size: 0.95rem;

  line-height: 1.7;
}


.help-footer .btn {
  flex-shrink: 0;
}
/* =========================================
   IMPACT STATEMENT
========================================= */

.impact-section {
  padding:
    105px
    0;

  background:
    var(--white);
}


.impact-container {
  max-width:
    900px;

  text-align:
    center;
}


.impact-mark {
  display:
    block;

  height:
    48px;

  margin-bottom:
    10px;

  color:
    var(--green);

  font-family:
    Georgia,
    serif;

  font-size:
    4.5rem;

  line-height:
    1;
}


.impact-container blockquote {
  margin:
    0;

  color:
    var(--heading);

  font-size:
    clamp(
      2.1rem,
      4.2vw,
      3.7rem
    );

  font-weight:
    500;

  line-height:
    1.2;

  letter-spacing:
    -0.04em;
}


.impact-container p {
  margin-top:
    27px;

  color:
    var(--muted);

  font-size:
    0.78rem;

  font-weight:
    700;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}


/* =========================================
   TRANSPARENCY
========================================= */

.transparency-section {
  padding:
    105px
    0;

  background:
    var(--off-white);
}


.transparency-container {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 0.75fr);

  gap:
    clamp(
      60px,
      10vw,
      140px
    );
}


.transparency-heading {
  max-width: 620px;
}


.transparency-heading h2 {
  font-size:
    clamp(
      2.5rem,
      4.5vw,
      4.1rem
    );

  font-weight: 600;
}


/* =========================================
   TRANSPARENCY CONTENT
========================================= */

.transparency-content {
  max-width: 530px;

  padding-top: 38px;
}


.transparency-content p {
  margin-bottom: 20px;

  color: var(--text);

  font-size: 0.97rem;

  line-height: 1.75;
}


.transparency-content .transparency-lead {
  color: var(--heading);

  font-size: 1.08rem;
  font-weight: 500;
}


/* =========================================
   TRANSPARENCY LINK
========================================= */

.transparency-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 12px;

  color: var(--heading);

  font-size: 0.94rem;
  font-weight: 600;

  transition:
    color 180ms ease,
    gap 180ms ease;
}


.transparency-link:hover {
  gap: 12px;

  color: var(--green);
}


/* =========================================
   DONATION CTA
========================================= */

.donation-cta {
  padding:
    90px
    0;

  background:
    var(--green);

  color:
    var(--white);
}


.donation-cta-container {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 80px;
}


.donation-cta-content {
  max-width: 760px;
}


.donation-cta-label {
  display: block;

  margin-bottom: 20px;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 0.76rem;
  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


.donation-cta h2 {
  color: var(--white);

  font-size:
    clamp(
      2.5rem,
      4.5vw,
      4.2rem
    );

  font-weight: 600;
}


.donation-cta p {
  max-width: 620px;

  margin-top: 22px;

  color:
    rgba(255, 255, 255, 0.84);

  font-size: 1rem;

  line-height: 1.7;
}


/* =========================================
   DONATION CTA BUTTON
========================================= */

.donation-cta-button {
  flex-shrink: 0;

  min-height: 56px;

  padding:
    0
    30px;

  background:
    var(--white);

  color:
    var(--heading);

  box-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.1);
}


.donation-cta-button:hover {
  background:
    #f5f5f5;

  box-shadow:
    0 14px 34px
    rgba(0, 0, 0, 0.14);
}
/* =========================================
   BITCOIN DONATION MODAL
========================================= */

.donation-modal {
  position: fixed;
  inset: 0;

  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 200ms ease,
    visibility 200ms ease;
}


.donation-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* =========================================
   BACKDROP
========================================= */

.donation-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(20, 20, 20, 0.65);

  backdrop-filter:
    blur(5px);

  -webkit-backdrop-filter:
    blur(5px);
}


/* =========================================
   DIALOG
========================================= */

.donation-modal-dialog {
  position: relative;

  z-index: 1;

  width: min(100%, 560px);

  max-height:
    calc(100vh - 48px);

  overflow-y: auto;

  padding:
    42px;

  border-radius:
    24px;

  background:
    var(--white);

  box-shadow:
    0 30px 90px
    rgba(0, 0, 0, 0.22);

  transform:
    translateY(18px)
    scale(0.98);

  transition:
    transform 220ms ease;
}


.donation-modal.active
.donation-modal-dialog {
  transform:
    translateY(0)
    scale(1);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.donation-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 5;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    #f4f4f2;

  cursor: pointer;

  transition:
    background 180ms ease,
    transform 180ms ease;
}


.donation-modal-close:hover {
  background:
    #eaeae7;

  transform:
    rotate(4deg);
}


.donation-modal-close span {
  position: absolute;

  top: 20px;
  left: 12px;

  width: 18px;
  height: 2px;

  border-radius: 20px;

  background:
    var(--heading);
}


.donation-modal-close
span:first-child {
  transform:
    rotate(45deg);
}


.donation-modal-close
span:last-child {
  transform:
    rotate(-45deg);
}


/* =========================================
   BITCOIN MARK
========================================= */

.bitcoin-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  margin-bottom: 25px;

  border-radius: 50%;

  background:
    var(--green-soft);

  color:
    var(--green);

  font-size: 1.55rem;
  font-weight: 700;
}


/* =========================================
   MODAL HEADER
========================================= */

.donation-modal-header {
  padding-right: 38px;
}


.donation-modal-header
.section-label {
  margin-bottom: 10px;
}


.donation-modal-header h2 {
  margin-bottom: 14px;

  color:
    var(--heading);

  font-size:
    clamp(
      2rem,
      4vw,
      2.45rem
    );

  font-weight: 600;

  letter-spacing:
    -0.035em;
}


.donation-modal-header > p {
  max-width: 470px;

  color:
    var(--text);

  font-size: 0.94rem;

  line-height: 1.65;
}


/* =========================================
   QR SECTION
========================================= */

.donation-qr-section {
  display: flex;

  flex-direction: column;
  align-items: center;

  margin:
    30px
    0
    27px;

  text-align: center;
}


/* QR CARD */

.donation-qr-card {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 210px;
  height: 210px;

  padding: 12px;

  border:
    1px solid
    var(--border);

  border-radius:
    16px;

  background:
    #ffffff;

  box-shadow:
    0 8px 30px
    rgba(0, 0, 0, 0.06);
}


/* ACTUAL QR IMAGE */

.donation-qr-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius:
    8px;
}


/* QR TEXT */

.donation-qr-info {
  display: flex;

  flex-direction: column;

  gap: 4px;

  margin-top: 15px;
}


.donation-qr-title {
  color:
    var(--heading);

  font-size: 0.88rem;
  font-weight: 600;
}


.donation-qr-subtitle {
  color:
    var(--muted);

  font-size: 0.75rem;
}


/* =========================================
   DIVIDER
========================================= */

.donation-divider {
  display: flex;

  align-items: center;

  gap: 14px;

  margin:
    27px
    0;
}


.donation-divider::before,
.donation-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    var(--border);
}


.donation-divider span {
  flex-shrink: 0;

  color:
    var(--muted);

  font-size: 0.72rem;
}


/* =========================================
   WALLET
========================================= */

.wallet-section {
  width: 100%;
}


.wallet-heading {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 12px;
}


.wallet-label {
  display: block;

  margin-bottom: 3px;

  color:
    var(--heading);

  font-size: 0.84rem;
  font-weight: 600;
}


.wallet-network {
  display: block;

  color:
    var(--muted);

  font-size: 0.72rem;
}


/* =========================================
   NETWORK BADGE
========================================= */

.network-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 46px;

  padding:
    6px
    10px;

  border-radius:
    999px;

  background:
    var(--green-soft);

  color:
    var(--green);

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing:
    0.03em;
}


/* =========================================
   ADDRESS BOX
========================================= */

.wallet-address-box {
  display: flex;

  align-items: center;

  gap: 12px;

  padding:
    13px
    13px
    13px
    16px;

  border:
    1px solid
    var(--border);

  border-radius:
    12px;

  background:
    #fafaf8;

  transition:
    border-color 180ms ease,
    background 180ms ease;
}


.wallet-address-box:focus-within {
  border-color:
    #c8c8c3;

  background:
    var(--white);
}


.wallet-address-box code {
  flex: 1;

  min-width: 0;

  color:
    var(--heading);

  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;

  font-size: 0.78rem;

  line-height: 1.5;

  overflow-wrap: anywhere;
}


/* =========================================
   COPY BUTTON
========================================= */

.wallet-copy-button {
  flex-shrink: 0;

  min-width: 70px;

  padding:
    10px
    14px;

  border:
    1px solid
    var(--border);

  border-radius:
    8px;

  background:
    var(--white);

  color:
    var(--heading);

  font-size: 0.77rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}


.wallet-copy-button:hover {
  color:
    var(--green);

  border-color:
    var(--green);
}


.wallet-copy-button.copied {
  color:
    var(--green);

  border-color:
    var(--green);

  background:
    var(--green-soft);
}


/* =========================================
   SECURITY NOTICE
========================================= */

.donation-notice {
  display: grid;

  grid-template-columns:
    24px
    minmax(0, 1fr);

  gap: 11px;

  margin-top: 20px;

  padding:
    15px;

  border:
    1px solid
    #ecece8;

  border-radius:
    10px;

  background:
    #f8f8f6;
}


.donation-notice-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 21px;
  height: 21px;

  border:
    1px solid
    #b8b8b2;

  border-radius: 50%;

  color:
    var(--muted);

  font-size: 0.68rem;
  font-weight: 700;
}


.donation-notice p {
  color:
    var(--muted);

  font-size: 0.74rem;

  line-height: 1.55;
}


/* =========================================
   MODAL FOOTER
========================================= */

.donation-modal-footer {
  margin-top: 24px;

  text-align: center;
}


.donation-modal-footer p {
  margin-bottom: 4px;

  color:
    var(--muted);

  font-size: 0.76rem;
}


.donation-modal-footer a {
  color:
    var(--heading);

  font-size: 0.78rem;
  font-weight: 600;

  overflow-wrap: anywhere;

  transition:
    color 180ms ease;
}


.donation-modal-footer a:hover {
  color:
    var(--green);
}


/* =========================================
   MODAL BODY LOCK
========================================= */

body.donation-open {
  overflow: hidden;
}


body.privacy-open {
  overflow: hidden;
}
/* =========================================
   MARLON RITTER AUTHORIZATION
========================================= */

.authorization-section {
  padding:
    115px
    0;

  background:
    var(--white);
}


.authorization-container {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  align-items: center;

  gap:
    clamp(
      70px,
      10vw,
      140px
    );
}


/* =========================================
   CONTENT
========================================= */

.authorization-content {
  max-width:
    650px;
}


.authorization-content h2 {
  max-width:
    620px;

  margin-bottom:
    27px;

  color:
    var(--heading);

  font-size:
    clamp(
      2.5rem,
      4.5vw,
      4rem
    );

  font-weight:
    600;

  line-height:
    1.1;

  letter-spacing:
    -0.045em;
}


.authorization-lead {
  max-width:
    590px;

  margin-bottom:
    18px;

  color:
    var(--heading);

  font-size:
    1.08rem;

  font-weight:
    500;

  line-height:
    1.7;
}


.authorization-text {
  max-width:
    570px;

  color:
    var(--text);

  font-size:
    0.97rem;

  line-height:
    1.75;
}


/* =========================================
   AUTHORIZATION NOTE
========================================= */

.authorization-note {
  display: grid;

  grid-template-columns:
    38px
    minmax(0, 1fr);

  gap:
    15px;

  max-width:
    560px;

  margin-top:
    32px;

  padding:
    22px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-medium);

  background:
    var(--off-white);
}


.authorization-note-mark {
  display: flex;

  align-items: center;
  justify-content: center;

  width:
    34px;

  height:
    34px;

  border-radius:
    50%;

  background:
    var(--green-soft);

  color:
    var(--green);

  font-size:
    0.9rem;

  font-weight:
    700;
}


.authorization-note strong {
  display:
    block;

  margin-bottom:
    5px;

  color:
    var(--heading);

  font-size:
    0.9rem;

  font-weight:
    600;
}


.authorization-note p {
  color:
    var(--muted);

  font-size:
    0.82rem;

  line-height:
    1.6;
}


/* =========================================
   PERSON
========================================= */

.authorization-person {
  width:
    100%;
}


/* =========================================
   PHOTO
========================================= */

.authorization-photo {
  position:
    relative;

  overflow:
    hidden;

  width:
    100%;

  aspect-ratio:
    4 / 5;

  border-radius:
    var(--radius-large);

  background:
    #eeeeeb;
}


.authorization-photo img {
  display:
    block;

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  object-position:
    center;
}


/* subtle green detail */

.authorization-photo::after {
  content:
    "";

  position:
    absolute;

  right:
    18px;

  bottom:
    18px;

  width:
    12px;

  height:
    12px;

  border:
    4px solid
    var(--white);

  border-radius:
    50%;

  background:
    var(--green);

  box-shadow:
    0 4px 12px
    rgba(0, 0, 0, 0.12);
}


/* =========================================
   PERSON INFORMATION
========================================= */

.authorization-person-info {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  padding:
    18px
    4px
    0;
}


.authorization-person-info strong {
  color:
    var(--heading);

  font-size:
    0.95rem;

  font-weight:
    600;
}


.authorization-person-info span {
  color:
    var(--muted);

  font-size:
    0.75rem;
}
/* =========================================
   DONATION STEPS
========================================= */

.donation-step {
  display:
    none;
}


.donation-step.active {
  display:
    block;
}


/* =========================================
   AMOUNT HEADING
========================================= */

.donation-amount-heading {
  margin-top:
    32px;

  margin-bottom:
    18px;
}


.donation-amount-heading h3 {
  margin-bottom:
    5px;

  color:
    var(--heading);

  font-size:
    1rem;

  font-weight:
    600;
}


.donation-amount-heading p {
  color:
    var(--muted);

  font-size:
    0.84rem;

  line-height:
    1.55;
}


/* =========================================
   AMOUNT GRID
========================================= */

.donation-amount-grid {
  display:
    grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    12px;
}


.donation-amount-option {
  display:
    flex;

  min-height:
    94px;

  padding:
    17px;

  border:
    1px solid
    var(--border);

  border-radius:
    13px;

  background:
    var(--white);

  text-align:
    left;

  cursor:
    pointer;

  flex-direction:
    column;

  justify-content:
    space-between;

  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}


.donation-amount-option:hover {
  border-color:
    rgba(2, 169, 92, 0.5);

  transform:
    translateY(-1px);
}


.donation-amount-option.selected {
  border-color:
    var(--green);

  background:
    var(--green-soft);

  box-shadow:
    0 0 0 1px
    var(--green);
}


.donation-amount {
  color:
    var(--heading);

  font-size:
    1.35rem;

  font-weight:
    700;

  letter-spacing:
    -0.025em;
}


.donation-amount-option.selected
.donation-amount {
  color:
    var(--green);
}


.donation-amount-description {
  margin-top:
    10px;

  color:
    var(--muted);

  font-size:
    0.76rem;

  line-height:
    1.4;
}


/* =========================================
   OTHER AMOUNT
========================================= */

.other-amount-section {
  overflow:
    hidden;

  margin-top:
    12px;

  border:
    1px solid
    var(--border);

  border-radius:
    13px;

  background:
    var(--white);

  transition:
    border-color 180ms ease,
    background 180ms ease;
}


.other-amount-section.active {
  border-color:
    var(--green);

  background:
    var(--green-soft);
}


.other-amount-toggle {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  width:
    100%;

  padding:
    17px;

  border:
    0;

  background:
    transparent;

  text-align:
    left;

  cursor:
    pointer;
}


.other-amount-toggle strong {
  display:
    block;

  margin-bottom:
    3px;

  color:
    var(--heading);

  font-size:
    0.9rem;
}


.other-amount-toggle small {
  display:
    block;

  color:
    var(--muted);

  font-size:
    0.75rem;
}


.other-amount-arrow {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    30px;

  height:
    30px;

  flex-shrink:
    0;

  border-radius:
    50%;

  background:
    var(--off-white);

  color:
    var(--heading);

  font-size:
    1.15rem;

  transition:
    transform 180ms ease,
    background 180ms ease;
}


.other-amount-section.active
.other-amount-arrow {
  background:
    var(--white);

  color:
    var(--green);

  transform:
    rotate(45deg);
}


/* =========================================
   CUSTOM AMOUNT INPUT
========================================= */

.other-amount-field {
  display:
    none;

  padding:
    0
    17px
    17px;
}


.other-amount-section.active
.other-amount-field {
  display:
    block;
}


.other-amount-field label {
  display:
    block;

  margin-bottom:
    7px;

  color:
    var(--text);

  font-size:
    0.75rem;

  font-weight:
    600;
}


.currency-input {
  display:
    flex;

  align-items:
    center;

  overflow:
    hidden;

  height:
    52px;

  border:
    1px solid
    var(--border);

  border-radius:
    10px;

  background:
    var(--white);
}


.currency-input:focus-within {
  border-color:
    var(--green);

  box-shadow:
    0 0 0 3px
    rgba(2, 169, 92, 0.1);
}


.currency-input span {
  padding-left:
    16px;

  color:
    var(--heading);

  font-size:
    1rem;

  font-weight:
    600;
}


.currency-input input {
  width:
    100%;

  height:
    100%;

  padding:
    0 16px 0 8px;

  border:
    0;

  outline:
    0;

  background:
    transparent;

  color:
    var(--heading);

  font-family:
    inherit;

  font-size:
    1rem;

  font-weight:
    600;
}


/* Hide number arrows */

.currency-input input::-webkit-inner-spin-button,
.currency-input input::-webkit-outer-spin-button {
  margin:
    0;

  -webkit-appearance:
    none;
}


/* =========================================
   ERROR
========================================= */

.donation-selection-error {
  min-height:
    20px;

  margin:
    12px 0 2px;

  color:
    #b42318;

  font-size:
    0.77rem;

  line-height:
    1.4;
}


/* =========================================
   CONTINUE
========================================= */

.donation-continue-button {
  width:
    100%;

  min-height:
    54px;

  margin-top:
    5px;
}


.donation-payment-note {
  margin-top:
    12px;

  color:
    var(--muted);

  font-size:
    0.72rem;

  line-height:
    1.5;

  text-align:
    center;
}


/* =========================================
   DONOR INFORMATION
========================================= */

.donation-back-button {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    7px;

  margin-bottom:
    25px;

  padding:
    0;

  border:
    0;

  background:
    transparent;

  color:
    var(--muted);

  font-family:
    inherit;

  font-size:
    0.8rem;

  font-weight:
    600;

  cursor:
    pointer;

  transition:
    color 180ms ease;
}


.donation-back-button:hover {
  color:
    var(--green);
}


/* =========================================
   DONATION SUMMARY
========================================= */

.donor-donation-summary {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  margin:
    30px
    0;

  padding:
    18px
    20px;

  border:
    1px solid
    var(--border);

  border-radius:
    13px;

  background:
    var(--off-white);
}


.donor-summary-label {
  display:
    block;

  margin-bottom:
    4px;

  color:
    var(--muted);

  font-size:
    0.72rem;

  font-weight:
    600;

  text-transform:
    uppercase;

  letter-spacing:
    0.06em;
}


.donor-summary-amount {
  display:
    block;

  color:
    var(--heading);

  font-size:
    1.45rem;

  font-weight:
    700;

  letter-spacing:
    -0.03em;
}


.donor-change-amount {
  padding:
    8px
    12px;

  border:
    1px solid
    var(--border);

  border-radius:
    8px;

  background:
    var(--white);

  color:
    var(--green);

  font-family:
    inherit;

  font-size:
    0.75rem;

  font-weight:
    600;

  cursor:
    pointer;

  transition:
    border-color 180ms ease,
    background 180ms ease;
}


.donor-change-amount:hover {
  border-color:
    var(--green);

  background:
    var(--green-soft);
}


/* =========================================
   FORM
========================================= */

.donor-information-form {
  display:
    flex;

  flex-direction:
    column;

  gap:
    23px;
}


.donor-field label {
  display:
    block;

  margin-bottom:
    8px;

  color:
    var(--heading);

  font-size:
    0.82rem;

  font-weight:
    600;

  line-height:
    1.5;
}


.required-mark {
  color:
    #b42318;
}


.donor-field input,
.donor-field select {
  width:
    100%;

  min-height:
    52px;

  padding:
    0
    15px;

  border:
    1px solid
    var(--border);

  border-radius:
    10px;

  outline:
    none;

  background:
    var(--white);

  color:
    var(--heading);

  font-family:
    inherit;

  font-size:
    0.9rem;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}


.donor-field select {
  cursor:
    pointer;
}


.donor-field input:focus,
.donor-field select:focus {
  border-color:
    var(--green);

  box-shadow:
    0 0 0 3px
    rgba(2, 169, 92, 0.1);
}


.donor-field input.error {
  border-color:
    #b42318;
}


.donor-field-error {
  min-height:
    18px;

  margin-top:
    6px;

  color:
    #b42318;

  font-size:
    0.74rem;

  line-height:
    1.4;
}


.donor-field-help {
  margin-top:
    7px;

  color:
    var(--muted);

  font-size:
    0.72rem;

  line-height:
    1.5;
}


/* =========================================
   PRIVACY NOTICE
========================================= */

.donor-information-notice {
  display:
    grid;

  grid-template-columns:
    25px
    minmax(0, 1fr);

  gap:
    11px;

  padding:
    15px;

  border-radius:
    10px;

  background:
    var(--off-white);
}


.donor-information-notice-icon {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    22px;

  height:
    22px;

  border-radius:
    50%;

  background:
    var(--green-soft);

  color:
    var(--green);

  font-size:
    0.72rem;

  font-weight:
    700;
}


.donor-information-notice p {
  color:
    var(--muted);

  font-size:
    0.74rem;

  line-height:
    1.55;
}


/* =========================================
   CONTINUE
========================================= */

.donor-continue-button {
  width:
    100%;

  min-height:
    54px;
}


.donor-payment-note {
  margin-top:
    13px;

  color:
    var(--muted);

  font-size:
    0.72rem;

  line-height:
    1.5;

  text-align:
    center;
}


/* =========================================
   BITCOIN PAYMENT STEP
========================================= */

.payment-summary {
  margin:
    28px
    0
    30px;

  padding:
    20px;

  border:
    1px solid
    var(--border);

  border-radius:
    14px;

  background:
    var(--off-white);
}


/* Header */

.payment-summary-header {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  padding-bottom:
    14px;

  border-bottom:
    1px solid
    var(--border);
}


.payment-summary-header > span {
  color:
    var(--heading);

  font-size:
    0.78rem;

  font-weight:
    700;

  letter-spacing:
    0.04em;

  text-transform:
    uppercase;
}


.payment-edit-button {
  padding:
    6px
    10px;

  border:
    1px solid
    var(--border);

  border-radius:
    7px;

  background:
    var(--white);

  color:
    var(--green);

  font-family:
    inherit;

  font-size:
    0.72rem;

  font-weight:
    600;

  cursor:
    pointer;

  transition:
    border-color 180ms ease,
    background 180ms ease;
}


.payment-edit-button:hover {
  border-color:
    var(--green);

  background:
    var(--green-soft);
}


/* Summary rows */

.payment-summary-row {
  display:
    grid;

  grid-template-columns:
    120px
    minmax(0, 1fr);

  gap:
    20px;

  padding:
    13px
    0;

  border-bottom:
    1px solid
    var(--border);
}


.payment-summary-row:last-child {
  padding-bottom:
    0;

  border-bottom:
    0;
}


.payment-summary-row > span {
  color:
    var(--muted);

  font-size:
    0.77rem;
}


.payment-summary-row strong {
  color:
    var(--heading);

  font-size:
    0.82rem;

  font-weight:
    600;

  line-height:
    1.45;

  text-align:
    right;

  overflow-wrap:
    anywhere;
}


/* =========================================
   WALLET VERIFICATION
========================================= */

.wallet-verification-message {
  margin-top:
    8px;

  color:
    var(--muted);

  font-size:
    0.7rem;

  line-height:
    1.5;
}


.wallet-address-box code {
  user-select:
    all;

  cursor:
    text;
}


/* =========================================
   PAYMENT CURRENCY NOTICE
========================================= */

.payment-currency-notice {
  margin-top:
    14px;

  padding:
    14px
    16px;

  border:
    1px solid
    var(--border);

  border-radius:
    10px;

  background:
    var(--off-white);
}


.payment-currency-notice p {
  color:
    var(--muted);

  font-size:
    0.71rem;

  line-height:
    1.55;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
  padding:
    110px
    0;

  background:
    var(--off-white);
}


.contact-container {
  display:
    grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(420px, 1fr);

  gap:
    clamp(
      70px,
      10vw,
      140px
    );

  align-items:
    start;
}


/* =========================================
   CONTACT INTRO
========================================= */

.contact-intro {
  max-width:
    510px;
}


.contact-intro h2 {
  margin-bottom:
    22px;

  color:
    var(--heading);

  font-size:
    clamp(
      2.7rem,
      4.7vw,
      4.3rem
    );

  font-weight:
    600;

  line-height:
    1.05;

  letter-spacing:
    -0.045em;
}


.contact-intro p {
  max-width:
    470px;

  color:
    var(--text);

  font-size:
    1rem;

  line-height:
    1.75;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
  border-top:
    1px solid
    var(--border);
}


.contact-item {
  display:
    grid;

  grid-template-columns:
    44px
    minmax(0, 1fr)
    auto;

  align-items:
    center;

  gap:
    18px;

  min-height:
    105px;

  padding:
    22px
    0;

  border-bottom:
    1px solid
    var(--border);

  color:
    inherit;

  text-decoration:
    none;
}


a.contact-item {
  transition:
    padding-left 180ms ease;
}


a.contact-item:hover {
  padding-left:
    8px;
}


/* Icon */

.contact-icon {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    42px;

  height:
    42px;

  border-radius:
    50%;

  background:
    var(--green-soft);

  color:
    var(--green);

  font-size:
    0.95rem;

  font-weight:
    700;
}


/* Content */

.contact-item-content span {
  display:
    block;

  margin-bottom:
    5px;

  color:
    var(--muted);

  font-size:
    0.7rem;

  font-weight:
    700;

  letter-spacing:
    0.07em;

  text-transform:
    uppercase;
}


.contact-item-content strong {
  display:
    block;

  color:
    var(--heading);

  font-size:
    0.93rem;

  font-weight:
    600;

  line-height:
    1.5;

  overflow-wrap:
    anywhere;
}


.contact-item-content p {
  margin-top:
    5px;

  color:
    var(--text);

  font-size:
    0.85rem;

  line-height:
    1.6;
}


.contact-arrow {
  color:
    var(--green);

  font-size:
    1rem;
}


.contact-item-static {
  align-items:
    start;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding:
    75px
    0
    28px;

  background:
    #242424;

  color:
    var(--white);
}


.footer-main {
  display:
    grid;

  grid-template-columns:
    minmax(280px, 1.5fr)
    repeat(3, minmax(120px, 0.65fr));

  gap:
    60px;

  padding-bottom:
    65px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
  max-width:
    390px;
}


.footer-logo {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    11px;

  color:
    var(--white);

  font-size:
    0.95rem;

  font-weight:
    700;

  text-decoration:
    none;
}


.footer-logo-mark {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    35px;

  height:
    35px;

  border-radius:
    50%;

  background:
    var(--green);

  color:
    var(--white);

  font-size:
    0.9rem;

  font-weight:
    700;
}


.footer-brand > p {
  max-width:
    370px;

  margin:
    22px
    0
    27px;

  color:
    rgba(255, 255, 255, 0.62);

  font-size:
    0.85rem;

  line-height:
    1.7;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
  margin-bottom:
    20px;

  color:
    rgba(255, 255, 255, 0.45);

  font-size:
    0.68rem;

  font-weight:
    700;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;
}


.footer-links,
.footer-contact {
  display:
    flex;

  align-items:
    flex-start;

  flex-direction:
    column;

  gap:
    13px;
}


.footer-links a,
.footer-contact a {
  color:
    rgba(255, 255, 255, 0.78);

  font-size:
    0.79rem;

  line-height:
    1.5;

  text-decoration:
    none;

  overflow-wrap:
    anywhere;

  transition:
    color 180ms ease;
}


.footer-links a:hover,
.footer-contact a:hover {
  color:
    var(--white);
}


/* =========================================
   FOOTER LANGUAGE
========================================= */

.footer-language-switcher {
  margin:
    0;

  justify-content:
    flex-start;
}


.footer-language-switcher
.language-button {
  color:
    rgba(255, 255, 255, 0.48);
}


.footer-language-switcher
.language-button:hover {
  color:
    var(--white);
}


.footer-language-switcher
.language-button.active {
  color:
    #4dd994;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;

  padding-top:
    25px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);
}


.footer-bottom p,
.footer-bottom a {
  color:
    rgba(255, 255, 255, 0.48);

  font-size:
    0.7rem;

  line-height:
    1.5;
}


.footer-bottom a {
  text-decoration:
    none;

  transition:
    color 180ms ease;
}


.footer-bottom a:hover {
  color:
    var(--white);
}


.footer-legal {
  display:
    flex;

  align-items:
    center;

  gap:
    20px;
}


/* =========================================
   STORY GALLERY
========================================= */

.story-gallery {
  margin-top:
    95px;
}


/*
 * The scroller spans the full width of the
 * section while its content lines up with
 * the container.
 */

.story-gallery-header,
.story-gallery-track {
  padding-inline:
    max(
      24px,
      calc((100% - var(--container)) / 2)
    );
}


.story-gallery-header {
  display:
    flex;

  align-items:
    flex-end;

  justify-content:
    space-between;

  gap:
    24px;

  margin-bottom:
    22px;
}


.story-gallery-label {
  display:
    block;

  margin-bottom:
    7px;

  color:
    var(--heading);

  font-size:
    0.78rem;

  font-weight:
    700;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;
}


.story-gallery-hint {
  color:
    var(--muted);

  font-size:
    0.8rem;

  line-height:
    1.5;
}


/* =========================================
   GALLERY CONTROLS
========================================= */

.story-gallery-controls {
  display:
    flex;

  flex-shrink:
    0;

  gap:
    10px;
}


/*
 * The controls are hidden by JavaScript
 * when every image already fits on screen.
 */

.story-gallery-controls[hidden] {
  display:
    none;
}


.story-gallery-button {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    40px;

  height:
    40px;

  padding:
    0;

  border:
    1px solid
    var(--border);

  border-radius:
    50%;

  background:
    var(--white);

  color:
    var(--heading);

  font-size:
    0.95rem;

  cursor:
    pointer;

  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}


.story-gallery-button:hover:not(:disabled) {
  border-color:
    var(--green);

  background:
    var(--green-soft);

  color:
    var(--green);
}


.story-gallery-button:disabled {
  opacity:
    0.35;

  cursor:
    default;
}


/* =========================================
   GALLERY TRACK
========================================= */

.story-gallery-track {
  display:
    flex;

  gap:
    18px;

  padding-block:
    10px
    22px;

  overflow-x:
    auto;

  overscroll-behavior-x:
    contain;

  scroll-behavior:
    smooth;

  scroll-snap-type:
    x proximity;

  -webkit-overflow-scrolling:
    touch;

  scrollbar-width:
    thin;

  scrollbar-color:
    rgba(2, 169, 92, 0.4)
    transparent;
}


.story-gallery-track:focus-visible {
  outline:
    2px solid
    var(--green);

  outline-offset:
    4px;
}


.story-gallery-track::-webkit-scrollbar {
  height: 6px;
}


.story-gallery-track::-webkit-scrollbar-track {
  background: transparent;
}


.story-gallery-track::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(2, 169, 92, 0.35);
}


.story-gallery-track::-webkit-scrollbar-thumb:hover {
  background:
    rgba(2, 169, 92, 0.6);
}


/* =========================================
   GALLERY ITEMS
========================================= */

.story-gallery-item {
  flex:
    0 0 auto;

  margin:
    0;

  overflow:
    hidden;

  border:
    1px solid
    var(--border);

  border-radius:
    18px;

  background:
    var(--white);

  box-shadow:
    var(--shadow-small);

  scroll-snap-align:
    start;
}


/*
 * Images keep their own proportions so no
 * photograph is cropped. The shared height
 * keeps the strip even.
 */

.story-gallery-item img {
  display:
    block;

  width:
    auto;

  max-width:
    none;

  height:
    clamp(
      200px,
      30vw,
      290px
    );

  object-fit:
    cover;
}


/* =========================================
   PRIVACY POLICY MODAL
========================================= */

.privacy-modal {
  position: fixed;
  inset: 0;

  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 200ms ease,
    visibility 200ms ease;
}


.privacy-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* =========================================
   PRIVACY MODAL BACKDROP
========================================= */

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(20, 20, 20, 0.65);

  backdrop-filter:
    blur(5px);

  -webkit-backdrop-filter:
    blur(5px);
}


/* =========================================
   PRIVACY MODAL DIALOG
========================================= */

.privacy-modal-dialog {
  position: relative;

  z-index: 1;

  width: min(100%, 720px);

  max-height:
    calc(100vh - 48px);

  overflow-y: auto;

  padding:
    46px
    48px
    40px;

  border-radius:
    24px;

  background:
    var(--white);

  box-shadow:
    0 30px 90px
    rgba(0, 0, 0, 0.22);

  transform:
    translateY(18px)
    scale(0.98);

  transition:
    transform 220ms ease;
}


.privacy-modal.active
.privacy-modal-dialog {
  transform:
    translateY(0)
    scale(1);
}


/* =========================================
   PRIVACY MODAL CLOSE BUTTON
========================================= */

.privacy-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 5;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    #f4f4f2;

  cursor: pointer;

  transition:
    background 180ms ease,
    transform 180ms ease;
}


.privacy-modal-close:hover {
  background:
    #eaeae7;

  transform:
    rotate(4deg);
}


.privacy-modal-close span {
  position: absolute;

  top: 20px;
  left: 12px;

  width: 18px;
  height: 2px;

  border-radius: 20px;

  background:
    var(--heading);
}


.privacy-modal-close
span:first-child {
  transform:
    rotate(45deg);
}


.privacy-modal-close
span:last-child {
  transform:
    rotate(-45deg);
}


/* =========================================
   PRIVACY MODAL HEADER
========================================= */

.privacy-modal-header {
  padding-right: 46px;
}


.privacy-modal-header
.section-label {
  margin-bottom: 12px;
}


.privacy-modal-header h2 {
  margin-bottom: 12px;

  color:
    var(--heading);

  font-size:
    clamp(
      1.8rem,
      3.5vw,
      2.2rem
    );

  font-weight: 600;

  letter-spacing:
    -0.035em;
}


.privacy-modal-updated {
  color:
    var(--muted);

  font-size:
    0.78rem;

  line-height:
    1.6;
}


/* =========================================
   PRIVACY MODAL CONTENT
========================================= */

.privacy-modal-body {
  margin-top: 30px;
}


.privacy-modal-intro {
  color:
    var(--text);

  font-size:
    0.9rem;

  line-height:
    1.72;
}


.privacy-section {
  margin-top: 30px;

  padding-top: 30px;

  border-top:
    1px solid var(--border);
}


.privacy-section h3 {
  margin-bottom: 10px;

  color:
    var(--heading);

  font-size:
    1rem;

  font-weight: 600;

  letter-spacing:
    -0.01em;
}


.privacy-section p,
.privacy-section li {
  color:
    var(--text);

  font-size:
    0.86rem;

  line-height:
    1.72;
}


.privacy-section p + p,
.privacy-section p + ul,
.privacy-section ul + p {
  margin-top: 12px;
}


.privacy-section ul {
  margin-top: 12px;

  padding-left: 20px;
}


.privacy-section li + li {
  margin-top: 8px;
}


.privacy-section a {
  color:
    var(--green);

  text-decoration:
    none;
}


.privacy-section a:hover {
  text-decoration:
    underline;
}


/* =========================================
   PRIVACY MODAL ACTION
========================================= */

.privacy-modal-footer {
  margin-top: 34px;
}