/* Header: nav beside logo, Donate on the right */
.header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  flex: 1;
}

.header-give {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-give:hover {
  background: #a50d25;
  border-color: #a50d25;
  color: #fff;
}

.nav-item { position: relative; }

.nav-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 20rem;
  background: #fff;
  border: 1px solid #e6e4de;
  border-radius: 12px;
  padding: 0.55rem 0;
  box-shadow: 0 16px 36px rgba(15, 15, 15, 0.12);
  z-index: 40;
}

.nav-item:hover > .nav-menu,
.nav-item:focus-within > .nav-menu,
.nav-item.is-open > .nav-menu {
  display: block;
}

.nav-menu a {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: left;
  justify-content: flex-start;
  padding: 0.95rem 1.35rem;
  color: var(--text);
  white-space: normal;
  line-height: 1.35;
}

.nav-menu a:hover {
  background: #f5f4f0;
  color: var(--chrome-blue);
}

/* Giving pages — more air under the sticky Donate button */
.giving-page .page {
  padding-top: 3.75rem;
  padding-bottom: 5.5rem;
}

.giving-page .page-wrap { max-width: 720px; }

.giving-kicker {
  margin: 0 0 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.giving-title {
  font-size: clamp(2.15rem, 5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
  line-height: 1.12;
  margin: 0 0 1.4rem;
  overflow-wrap: normal;
  color: var(--chrome-blue-deep);
}

.giving-lead {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 3rem;
  max-width: 38rem;
}

.give-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin: 0 0 3.75rem;
}

.give-path {
  display: block;
  background: var(--white);
  border: 1px solid #e6e4de;
  border-radius: 14px;
  padding: 1.5rem 1.55rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.give-path:hover {
  border-color: var(--chrome-blue);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  transform: translateY(-2px);
}

.give-path strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  color: var(--chrome-blue-deep);
}

.give-path span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.give-block { margin: 0 0 3.35rem; }

.give-block h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 0 1.15rem;
  color: var(--chrome-blue-deep);
}

.giving-page .give-block p,
.giving-page .give-block li {
  font-size: 1.08rem;
  line-height: 1.8;
}

.giving-page .give-block p { margin: 0 0 1.35rem; }
.giving-page .give-block p:last-child { margin-bottom: 0; }

.contact-panel {
  background: var(--white);
  border: 1px solid #e6e4de;
  border-radius: 14px;
  padding: 1.85rem 1.9rem;
  margin: 0.5rem 0 0;
}

.contact-panel p { margin: 0 0 0.65rem; }
.contact-panel p:last-child { margin-bottom: 0; color: var(--muted); }

@media (max-width: 1100px) {
  .header-give { margin-left: 0.5rem; margin-right: 0.2rem; padding: 0.65rem 1rem; }
  .nav-item {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
  }
  .nav-menu {
    position: static;
    min-width: 0;
    margin-top: 0.55rem;
    box-shadow: none;
    border-radius: 10px;
  }
  .giving-page .page { padding-top: 2.5rem; }
}

@media (min-width: 901px) {
  .give-paths { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}


.giving-hours {
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 2.25rem;
  max-width: 36rem;
}

.footer-brand p {
  font-style: italic;
}

.giving-page .give-block p.fine-print,
.giving-page .donate-panel .fine-print {
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted);
  margin: 0 0 1rem;
}
.giving-page .give-block p.fine-print:last-child,
.giving-page .donate-panel .fine-print:last-child {
  margin-bottom: 0;
}
