:root {
  --teal: #007a78;
  --teal-dark: #005958;
  --coral: #ef5b4c;
  --coral-hover: #d94839;
  --ink: #1d1d1d;
  --muted: #5c5c5c;
  --line: #d9d9d9;
  --bg: #ffffff;
  --panel: #f4f4f4;
  --max: 1140px;
  --font: "Open Sans", sans-serif;
  --display: "Montserrat", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { list-style: none; }

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

.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px 0 24px;
  box-sizing: border-box;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo img { height: 44px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  margin-right: 230px;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111;
  -webkit-text-stroke: 0.15px #111;
  paint-order: stroke fill;
}
.main-nav a:hover { color: #000; }
.nav-cta {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  height: 58px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #e85d04;
  color: #fff !important;
  padding: 0 32px 0 26px;
  line-height: 1;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px #fff;
  paint-order: stroke fill;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 2px) 100%, 0 100%);
}
.nav-cta:hover {
  background: #c94e00;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--teal);
  display: block;
}

.page-banner {
  position: relative;
  width: 100%;
  height: clamp(430px, 57vw, 700px);
  overflow: hidden;
  background: #0b4f4e;
  display: flex;
  align-items: flex-start;
}
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 40, 40, 0.78) 0%,
    rgba(0, 40, 40, 0.4) 42%,
    rgba(0, 40, 40, 0.08) 68%,
    rgba(0, 40, 40, 0) 100%
  );
  pointer-events: none;
}
.banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 160px 0 48px;
  color: #fff;
  text-align: left;
}
.banner-content .container {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.banner-content .container.narrow {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.banner-content .container.narrow > * {
  max-width: 36rem;
  margin-left: 0;
  margin-right: auto;
}
.banner-content h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}
.banner-content .lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
  max-width: 40rem;
}
.banner-content .secure-line {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 40rem;
}

.donate-section {
  padding: 48px 0 72px;
}
.donate-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.donate-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.card-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.freq-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--teal);
  margin-bottom: 22px;
}
.freq-tab {
  border: 0;
  background: #fff;
  color: var(--teal);
  padding: 13px 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.freq-tab + .freq-tab { border-left: 1px solid var(--teal); }
.freq-tab.active {
  background: var(--teal);
  color: #fff;
}
.amount-heading {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.amount-btn {
  border: 2px solid #ccc;
  background: #fff;
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: background .15s ease, border-color .15s ease;
}
.amount-btn span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
}
.amount-btn:hover {
  border-color: var(--teal);
  background: rgba(0, 122, 120, 0.06);
}
.amount-btn.active {
  border-color: var(--teal);
  background: rgba(0, 122, 120, 0.14);
}
.amount-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.amount-row {
  width: 100%;
  text-align: left;
  border: 2px solid #ccc;
  background: #fff;
  padding: 14px 16px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.amount-row strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 6px;
}
.amount-row span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.amount-row:hover {
  border-color: var(--teal);
  background: rgba(0, 122, 120, 0.06);
}
.amount-row.active {
  border-color: var(--teal);
  background: rgba(0, 122, 120, 0.14);
}
.other-amount {
  margin-bottom: 18px;
}
.other-amount label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.other-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
}
.other-row em {
  font-style: normal;
  background: #ececec;
  color: #666;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.other-row input {
  flex: 1;
  border: 0;
  padding: 12px;
  outline: none;
  min-width: 0;
}
.btn-donate {
  width: 100%;
  border: 0;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
}
.btn-donate:hover { background: var(--coral-hover); }

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.checkout-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px 12px;
  font: inherit;
  font-weight: 400;
}
.check-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px;
  border: 1px solid transparent;
  background: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.check-line.is-on {
  background: rgba(0, 122, 120, 0.12);
  border-color: var(--teal);
}
.check-line input { margin-top: 3px; }
.fine-print {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.subhead {
  font-family: var(--display);
  font-size: 16px;
  margin-top: 8px;
}
.tribute-box,
.reveal-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #cfcfcf;
}
.reveal-box[hidden] { display: none; }
.reveal-box .reveal-box {
  background: #fafafa;
}
.send-choice {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.send-choice legend {
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.send-choice label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.send-choice label.is-on {
  background: rgba(0, 122, 120, 0.12);
  border-color: var(--teal);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-grid .span-2 { grid-column: 1 / -1; }
.field-grid small {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.pay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pay-tab {
  border: 2px solid var(--line);
  background: #fff;
  padding: 12px 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.pay-tab.active {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 122, 120, 0.14);
}
.give-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
}
.give-summary strong { color: var(--teal); }
.edit-amount {
  border: 0;
  background: transparent;
  color: var(--coral);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.side-panel h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1.25;
  margin-bottom: 12px;
}
.side-panel > p {
  color: var(--muted);
  margin-bottom: 16px;
}
.side-links {
  margin-bottom: 18px;
}
.side-links li { margin-bottom: 8px; }
.side-links a {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}
.side-links a:hover { color: var(--coral); }
.side-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.trust-block {
  background: #f7f7f7;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.trust-block h2,
.stay-block h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal);
  margin-bottom: 12px;
}
.trust-intro {
  max-width: 42rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.rating-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  margin-bottom: 36px;
}
.rating-mark {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff8e8;
  border: 2px solid #e8a838;
  color: #e8a838;
  display: grid;
  place-items: center;
  letter-spacing: 1px;
}
.stars {
  color: #e8a838;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}
.star-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--ink);
}
.star-row .stars { font-size: 22px; }
.rating-copy h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.rating-copy p {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 15px;
}
.text-link {
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-top: 4px;
}
.text-link:hover { color: var(--coral); }
.money-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.money-head h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
}
.money-bars {
  display: grid;
  gap: 16px;
  max-width: 720px;
}
.money-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}
.money-meta strong {
  font-family: var(--display);
}
.bar {
  height: 12px;
  background: #e2e2e2;
  border-radius: 99px;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  border-radius: 99px;
  min-width: 8px;
}
.money-item.programs .money-meta strong,
.money-item.programs .bar span { color: #007a78; background: #007a78; }
.money-item.programs .money-meta strong { background: none; }
.money-item.admin .money-meta strong { color: #e8a838; }
.money-item.admin .bar span { background: #e8a838; }
.money-item.fundraise .money-meta strong { color: #ef5b4c; }
.money-item.fundraise .bar span { background: #ef5b4c; }
.stay-block {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.stay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.stay-block h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.stay-block p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.stay-form label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stay-row {
  display: flex;
  gap: 10px;
}
.stay-row input {
  flex: 1;
  border: 1px solid var(--line);
  padding: 16px 14px;
  min-width: 0;
  font-size: 16px;
}
.stay-row button {
  border: 0;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 22px;
  cursor: pointer;
  white-space: nowrap;
}
.stay-row button:hover { background: var(--coral-hover); }
.stay-block .stay-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  background: var(--teal-dark);
  color: #dff1f0;
  padding: 48px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-grid h4 {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid a {
  color: #c7e3e2;
  font-size: 14px;
}
.footer-grid a:hover { color: #fff; }
.footer-grid li { margin-bottom: 8px; }
.newsletter p {
  font-size: 14px;
  color: #c7e3e2;
  margin-bottom: 12px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  border: 0;
  padding: 11px 12px;
  min-width: 0;
}
.newsletter-form button {
  border: 0;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  padding: 11px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  font-size: 13px;
  color: #9fc4c3;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .main-nav { margin-right: 150px; }
  .nav-group { gap: 12px; }
  .main-nav a { font-size: 13px; }
  .nav-cta {
    right: 16px;
    height: 52px;
    font-size: 16px;
    letter-spacing: 0.06em;
    padding: 0 14px 0 12px;
    gap: 2px;
  }
  .header-inner { padding-left: 16px; }
  .donate-wrap { gap: 20px; }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 76px;
    padding: 0 16px 0 10px;
  }
  .logo img { height: 38px; }
  .main-nav {
    margin-right: 0;
  }
  .donate-wrap,
  .footer-grid,
  .stay-inner,
  .rating-card { grid-template-columns: 1fr; }
  .page-banner { height: auto; min-height: 400px; }
  .banner-img { object-position: 68% center; }
  .banner-content { padding: 72px 0 36px; }
  .nav-toggle { display: flex; position: relative; z-index: 5; }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;
    z-index: 20;
    background: #fff;
    border: 1px solid var(--line);
    padding: 14px;
  }
  .main-nav.open { display: block; }
  .nav-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-cta {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    clip-path: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: auto;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0;
    background: none;
    color: #111 !important;
    -webkit-text-stroke: 0.15px #111;
    gap: 6px;
  }
  .nav-cta span {
    display: inline;
  }
  .nav-cta:hover {
    background: none;
    color: #000 !important;
  }
  .site-header { position: relative; z-index: 30; }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid .span-2 { grid-column: auto; }
  .pay-tabs,
  .give-summary { grid-template-columns: 1fr; display: grid; }
}
