:root {
  --bg: #fbf7ef;
  --paper: #fffdf8;
  --soft: #f1eadc;
  --text: #27302b;
  --muted: #5f6b63;
  --green: #456b57;
  --green-dark: #2f4d3d;
  --tan: #d8c5a3;
  --border: #ded2bd;
  --shadow: 0 14px 35px rgba(39, 48, 43, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--green-dark);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-logo {
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.93rem;
}

.site-nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 1rem;
  background:
    radial-gradient(circle at top left, rgba(216, 197, 163, 0.6), transparent 34rem),
    linear-gradient(135deg, #fbf7ef 0%, #f4ead9 100%);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-dark);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 0.45rem;
}

p {
  margin-top: 0;
}

.hero-text {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  max-width: 760px;
  margin: 0 auto 1.7rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--green);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(39, 48, 43, 0.12);
}

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

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.small-note {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.75rem) 1rem;
}

.section.soft {
  background: var(--soft);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.centered-note {
  text-align: center;
  font-weight: 800;
  margin: 2rem 0 0;
}

.steps h2 {
  text-align: center;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.step {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.25rem;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--green);
  color: white;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 1rem;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.notice {
  background: var(--paper);
  border: 2px solid var(--tan);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.final-cta {
  text-align: center;
}

.site-footer {
  padding: 2.5rem 1rem;
  background: var(--green-dark);
  color: white;
  text-align: center;
}

.site-footer a {
  color: white;
}

.site-footer p {
  margin: 0.25rem 0;
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .card-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    text-align: left;
  }

  .button-row {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }
}

.page-hero {
  padding: clamp(2.8rem, 7vw, 5rem) 1rem;
  background: linear-gradient(135deg, #fbf7ef 0%, #f4ead9 100%);
  border-bottom: 1px solid var(--border);
}

.hero-text.left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.readable {
  font-size: 1.08rem;
}

.readable p {
  margin-bottom: 1.2rem;
}


.help-form {
  display: grid;
  gap: 1.4rem;
}

.form-section {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.form-step {
  margin: 0 0 0.6rem;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.form-help {
  color: var(--muted);
  margin-bottom: 1rem;
}

.help-form label,
.help-form fieldset {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  font-weight: 800;
}

.help-form input,
.help-form select,
.help-form textarea {
  width: 100%;
  font: inherit;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  background: white;
  color: var(--text);
}

.help-form textarea {
  resize: vertical;
}

.help-form input:focus,
.help-form select:focus,
.help-form textarea:focus {
  outline: 4px solid rgba(69, 107, 87, 0.18);
  border-color: var(--green);
}

.choice-grid,
.checkbox-grid {
  display: grid;
  gap: 0.9rem;
}

.choice-card,
.checkbox-card {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem !important;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
}

.choice-card:hover,
.checkbox-card:hover {
  border-color: var(--green);
}

.choice-card input,
.checkbox-card input,
.agreement input,
.small-checkboxes input {
  width: auto;
  margin-top: 0.25rem;
  transform: scale(1.25);
}

.choice-card span {
  font-size: 1.05rem;
}

.checkbox-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.checkbox-card span {
  color: var(--muted);
  font-weight: 600;
}

.checkbox-card strong {
  color: var(--text);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

fieldset {
  border: 0;
  padding: 0;
}

legend {
  font-weight: 900;
  margin-bottom: 0.65rem;
}

.small-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.small-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-weight: 700;
}

.form-notice {
  margin: 1.5rem 0;
  box-shadow: none;
}

.form-notice h2 {
  font-size: 1.4rem;
}

.agreement {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700 !important;
}

.form-submit {
  border: 0;
  cursor: pointer;
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

.left-note {
  text-align: left;
  margin-left: 0;
}

@media (max-width: 700px) {
  .two-column,
  .small-checkboxes {
    grid-template-columns: 1fr;
  }
}


.compact-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.compact-section {
  padding-top: 2rem;
}

.compact-form {
  gap: 0.95rem;
}

.compact-card {
  padding: clamp(1rem, 3vw, 1.45rem);
  border-radius: 22px;
}

.compact-card h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.compact-card label {
  margin: 0.7rem 0;
}

.compact-card input,
.compact-card select,
.compact-card textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 13px;
}

.compact-choices {
  grid-template-columns: 1fr 1fr;
}

.compact-choices .choice-card {
  padding: 0.75rem;
}

.compact-checkboxes {
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.compact-checkboxes .checkbox-card {
  padding: 0.7rem;
  border-radius: 16px;
}

.compact-checkboxes .checkbox-card strong {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.compact-help {
  margin-bottom: 0.65rem;
}

.optional-text {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.9rem;
}

.availability-note {
  background: #f7efe0;
  border: 1px solid var(--tan);
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.8rem;
}

.availability-note p {
  margin: 0;
  color: var(--text);
}

.compact-notice {
  padding: 1rem;
  border-radius: 18px;
  margin: 0 0 0.8rem;
}

.compact-notice h2 {
  font-size: 1.2rem;
}

.compact-notice p {
  margin-bottom: 0.65rem;
}

.compact-notice p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .compact-choices,
  .compact-checkboxes {
    grid-template-columns: 1fr;
  }
}


.form-success {
  background: var(--paper);
  border: 2px solid var(--green);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.form-success h2 {
  color: var(--green-dark);
}

.form-success p:last-child {
  margin-bottom: 0;
}


.form-error {
  background: #fff3f0;
  border: 2px solid #a24b3f;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.form-error p {
  margin: 0.35rem 0 0;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}


.donation-box {
  background: var(--paper);
  border: 2px solid var(--green);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  margin: 2rem 0;
}

.donation-box h2 {
  color: var(--green-dark);
}

.donation-button {
  margin: 0.4rem 0 0.8rem;
}


.service-area-box {
  background: var(--paper);
  border: 2px solid var(--tan);
  border-radius: 24px;
  padding: 1.15rem 1.25rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.service-area-box h3 {
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.service-area-box p {
  margin-bottom: 0.75rem;
}

.service-area-box p:last-child {
  margin-bottom: 0;
  font-weight: 800;
}


@media (max-width: 850px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .site-logo {
    font-size: 1.05rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.9rem;
    text-align: center;
  }

  .site-nav a[aria-current="page"] {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero,
  .page-hero {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .section {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

@media (max-width: 420px) {
  .site-nav {
    grid-template-columns: 1fr;
  }
}


/* Mobile menu override */
.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  border: 2px solid var(--green);
  background: var(--paper);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-nav a[aria-current="page"] {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

@media (max-width: 850px) {
  .site-header {
    display: block;
    padding: 0.8rem 1rem;
  }

  .site-header-top {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-top: 0.75rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--paper);
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
  }

  .site-nav a[aria-current="page"] {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }
}
/* Remove current page highlighting */
.site-nav a[aria-current="page"] {
  background: var(--paper) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

/* Shorter homepage layout */
.short-hero {
  padding-top: clamp(2.5rem, 6vw, 4.75rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.75rem);
}

.home-short-section {
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.compact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.compact-service-grid div {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 8px 20px rgba(39, 48, 43, 0.06);
}

.mini-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.mini-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  font-weight: 800;
  text-decoration: none;
}

.compact-home-notice {
  margin-bottom: 1.25rem;
}

.home-contact-box,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.15rem, 4vw, 1.75rem);
  box-shadow: var(--shadow);
}

.home-contact-box {
  text-align: center;
}

@media (max-width: 700px) {
  .compact-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-contact-box {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .compact-service-grid {
    grid-template-columns: 1fr;
  }
}

.compact-card-grid {
  margin-top: 1.25rem;
}

.compact-card-grid .card {
  padding: 1rem;
  border-radius: 20px;
}

.compact-card-grid .card h3 {
  font-size: 1.08rem;
}

.compact-card-grid .card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-availability {
  margin: 1.25rem 0;
}

.contact-availability h3 {
  margin-bottom: 0.4rem;
}

.contact-availability p {
  margin-bottom: 0.6rem;
}

.contact-availability p:last-child {
  margin-bottom: 0;
}

.contact-shortcut-box {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1rem;
  margin-top: 1.25rem;
  box-shadow: 0 8px 20px rgba(39, 48, 43, 0.06);
}

.contact-shortcut-box h2 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.contact-shortcut-box p {
  margin-bottom: 0.8rem;
  color: var(--muted);
}
