:root {
  --green-950: #031f15;
  --green-900: #063322;
  --green-800: #08452e;
  --green-700: #0b5d3b;
  --green-600: #0f7a4a;
  --green-500: #12a463;
  --green-100: #e8f6ee;
  --green-50: #f3fbf6;
  --black: #0a0d0b;
  --white: #ffffff;
  --cream: #f8f5ec;
  --muted: #637069;
  --border: rgba(6, 51, 34, 0.12);
  --shadow: 0 24px 70px rgba(3, 31, 21, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--green-950);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 51, 34, 0.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(3,31,21,.08); }
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo { width: 48px; height: 48px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { letter-spacing: .04em; font-size: 1.05rem; }
.brand-text small { color: var(--muted); font-size: .78rem; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: rgba(3,31,21,.82);
  font-weight: 650;
  font-size: .94rem;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 0; height: 2px;
  background: var(--green-600);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 9px 17px; font-size: .9rem; }
.btn-primary { background: var(--green-700); color: var(--white); box-shadow: 0 12px 28px rgba(11,93,59,.25); }
.btn-primary:hover { background: var(--green-600); }
.btn-secondary { background: var(--white); color: var(--green-900); border-color: rgba(6,51,34,.18); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.08); }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--green-100);
}
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--green-900); transition: .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section { padding: 92px 0; }
.section-pad { padding: 92px 0 80px; }
.section-light { background: var(--white); }
.section-green {
  background: radial-gradient(circle at 20% 20%, rgba(18,164,99,.32), transparent 25%), linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--white);
}
.section-dark { background: var(--black); color: var(--white); }
.section-pattern {
  background:
    radial-gradient(circle at top left, rgba(18,164,99,.16), transparent 34%),
    linear-gradient(180deg, var(--green-50), var(--white));
  position: relative;
  overflow: hidden;
}
.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230b5d3b' stroke-width='2'%3E%3Cpath d='M40 4l10 26 26 10-26 10-10 26-10-26L4 40l26-10z'/%3E%3Cpath d='M40 18l6 16 16 6-16 6-6 16-6-16-16-6 16-6z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-pattern > * { position: relative; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(18,164,99,.2), transparent 24%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23063322' stroke-width='2'%3E%3Cpath d='M60 8l12 28 30 4-22 20 6 30-26-15-26 15 6-30-22-20 30-4z'/%3E%3Cpath d='M0 60h120M60 0v120' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
}
.eyebrow.light { color: #a7f2c9; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); letter-spacing: -.06em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.045em; }
h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #415149; max-width: 680px; margin: 24px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 34px 0 0; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 560px; margin-top: 38px; }
.hero-stats div { background: rgba(255,255,255,.75); border: 1px solid var(--border); border-radius: 20px; padding: 16px; box-shadow: 0 12px 30px rgba(3,31,21,.06); }
.hero-stats strong { display: block; font-size: 1.7rem; color: var(--green-700); line-height: 1; }
.hero-stats span { color: var(--muted); font-weight: 700; font-size: .86rem; }
.hero-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: var(--green-900); min-height: 560px; }
.hero-card img { width: 100%; height: 560px; object-fit: cover; filter: saturate(.95) contrast(1.06); }
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,31,21,.76));
}
.hero-card-note {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  background: rgba(3,31,21,.68);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
}
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 8px rgba(18,164,99,.18); }

.split { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 70px; }
.section-copy p:not(.eyebrow) { color: #4d5c55; font-size: 1.05rem; }
.quote-card {
  margin-top: 28px;
  border-left: 5px solid var(--green-600);
  background: var(--green-50);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 6px;
}
.quote-card span { font-size: 1.4rem; font-weight: 900; color: var(--green-900); }
.quote-card small { color: var(--muted); }
.image-stack { position: relative; }
.image-stack img { width: 100%; min-height: 430px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.mini-card {
  position: absolute;
  left: -28px; bottom: 30px;
  width: min(320px, 80%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 22px;
}
.mini-card strong { display: block; color: var(--green-700); font-size: 1.2rem; }
.mini-card span { color: var(--muted); font-weight: 700; }

.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head p:not(.eyebrow) { color: inherit; opacity: .78; font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  min-height: 270px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 70px rgba(0,0,0,.12);
}
.icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: rgba(255,255,255,.1); font-size: 1.6rem; margin-bottom: 24px; }
.feature-card p { color: rgba(255,255,255,.76); }

.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 270px;
  box-shadow: 0 14px 40px rgba(3,31,21,.07);
  position: relative;
  overflow: hidden;
}
.course-card::before { content:""; position:absolute; inset:0 0 auto; height: 5px; background: linear-gradient(90deg, var(--green-700), var(--green-500)); }
.course-tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 22px;
}
.course-card p { color: var(--muted); min-height: 74px; }
.course-card strong { color: var(--green-700); }
.center-actions { display: flex; justify-content: center; margin-top: 36px; }

.event-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 52px; align-items: start; }
.event-highlight {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(3,31,21,.07);
}
.date-box {
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  border-radius: 20px;
  background: var(--green-900);
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: .8;
  flex: 0 0 auto;
}
.date-box small { font-size: .82rem; color: #a7f2c9; }
.event-highlight p { margin: 8px 0 0; color: var(--muted); }
.event-cards { display: grid; gap: 16px; }
.small-event-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(3,31,21,.07);
}
.small-event-card p { color: var(--muted); margin-bottom: 0; }

.cta-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 52px; align-items: center; }
.section-dark p { color: rgba(255,255,255,.74); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.support-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(18,164,99,.2), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  padding: 34px;
}
.support-card ul { padding-left: 20px; margin-bottom: 0; color: rgba(255,255,255,.78); }
.support-card li + li { margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 58px; align-items: start; }
.contact-list { display: grid; gap: 10px; margin-top: 26px; }
.contact-list a, .contact-list span {
  display: flex;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--green-50);
  color: var(--green-900);
  font-weight: 800;
}
.contact-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; color: var(--green-900); font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6,51,34,.16);
  background: #fbfdfb;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--green-950);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(18,164,99,.12); }

.site-footer { background: var(--green-950); color: var(--white); padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 32px; }
.footer-brand { margin-bottom: 12px; }
.site-footer h3 { font-size: 1rem; margin-bottom: 14px; color: #a7f2c9; }
.site-footer a { display: block; color: rgba(255,255,255,.76); margin: 8px 0; }
.site-footer p { color: rgba(255,255,255,.66); margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 22px; color: rgba(255,255,255,.62); font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 1040px) {
  .desktop-only { display: none; }
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 16px; border-radius: 14px; }
  .main-nav a:hover { background: var(--green-50); }
  .main-nav a::after { display: none; }
  .hero-grid, .split, .event-layout, .cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card, .hero-card img { min-height: auto; height: 460px; }
  .feature-grid, .course-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section, .section-pad { padding: 66px 0; }
  .nav-wrap { min-height: 70px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-text small { display: none; }
  .main-nav { top: 70px; left: 14px; right: 14px; }
  h1 { font-size: clamp(2.4rem, 14vw, 4rem); }
  .hero-grid { gap: 34px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-grid, .course-grid, .footer-grid { grid-template-columns: 1fr; }
  .mini-card { position: relative; left: 0; bottom: auto; width: 100%; margin-top: 14px; }
  .event-highlight { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

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


.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.social-pills a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 93, 59, 0.08);
  color: var(--green-900);
  font-weight: 800;
  border: 1px solid rgba(6, 51, 34, 0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(3,31,21,.07);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery-copy {
  padding: 22px;
}
.gallery-copy p {
  color: var(--muted);
  margin-bottom: 0;
}
.donation-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.donation-box h4 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}
.donation-box p {
  margin: 0 0 14px;
}
.iban {
  display: inline-block;
  font-weight: 900;
  letter-spacing: .08em;
}
.donation-note {
  color: #d3f7e4 !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}
.footer-inline-link {
  display: inline !important;
  color: #a7f2c9 !important;
  margin: 0 !important;
}
.legal-page main {
  min-height: calc(100vh - 180px);
}
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 32px;
}
.legal-card h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 18px;
}
.legal-card h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: 26px;
  margin-bottom: 10px;
}
.legal-card p, .legal-card li {
  color: #4d5c55;
}
.notice-box {
  background: var(--green-50);
  border-left: 5px solid var(--green-600);
  padding: 18px 20px;
  border-radius: 16px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 24px;
}
@media (max-width: 1040px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .social-pills { flex-direction: column; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr; }
}


.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.social-pills a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 93, 59, 0.08);
  color: var(--green-900);
  font-weight: 800;
  border: 1px solid rgba(6, 51, 34, 0.08);
}
.section-prayer {
  background:
    radial-gradient(circle at 85% 10%, rgba(18,164,99,.14), transparent 28%),
    linear-gradient(180deg, var(--white), var(--green-50));
}
.prayer-frame-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.prayer-frame {
  display: block;
  width: 100%;
  height: min(78vh, 760px);
  min-height: 620px;
  border: 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(3,31,21,.07);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery-copy { padding: 22px; }
.gallery-copy p { color: var(--muted); margin-bottom: 0; }
.donation-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.donation-box h4 { margin: 0 0 14px; font-size: 1.1rem; }
.donation-box p { margin: 0 0 14px; }
.iban { display: inline-block; font-weight: 900; letter-spacing: .08em; }
.donation-note { color: #d3f7e4 !important; font-weight: 700; margin-bottom: 0 !important; }
.footer-inline-link { display: inline !important; color: #a7f2c9 !important; margin: 0 !important; }
.legal-page main { min-height: calc(100vh - 180px); }
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 32px;
}
.legal-card h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 18px; }
.legal-card h2 { font-size: clamp(1.2rem, 3vw, 1.8rem); margin-top: 26px; margin-bottom: 10px; }
.legal-card p, .legal-card li { color: #4d5c55; }
.notice-box {
  background: var(--green-50);
  border-left: 5px solid var(--green-600);
  padding: 18px 20px;
  border-radius: 16px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 24px;
}
@media (max-width: 1040px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .social-pills { flex-direction: column; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr; }
  .prayer-frame { min-height: 720px; height: 80vh; }
}


.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.checkbox-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--muted) !important;
  font-weight: 700 !important;
}
.checkbox-label input {
  width: auto !important;
  margin-top: 4px;
  flex: 0 0 auto;
}
.checkbox-label a {
  color: var(--green-700);
  text-decoration: underline;
}
.status-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.status-card .btn {
  margin-top: 22px;
}


.donation-note-sub {
  margin-top: 12px !important;
  color: rgba(255,255,255,.78) !important;
  font-weight: 600;
}
.checkbox-label {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--muted) !important;
  font-weight: 700 !important;
}
.checkbox-label input {
  width: auto !important;
  margin-top: 4px;
}
.checkbox-text {
  display: inline;
}
.checkbox-text a {
  display: inline;
  color: var(--green-700);
  text-decoration: underline;
}


.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  margin-right: 7px;
  font-size: 1.05em;
  line-height: 1;
}
.contact-list a .link-icon,
.site-footer a .link-icon {
  flex: 0 0 auto;
}
