:root {
  --maroon: #6c0505;
  --maroon-dark: #420101;
  --maroon-soft: #8c1b18;
  --ink: #111114;
  --muted: #62626a;
  --line: #e7dedb;
  --paper: #fffdfb;
  --soft: #faf6f4;
  --shadow: 0 22px 60px rgba(72, 8, 8, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body, main, section { max-width: 100%; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); font-size: 14px; line-height: 1.75; }

.section-inner {
  width: calc(100% - 110px);
  max-width: 1290px;
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 10px 48px;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  padding-block: 1px;
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 16px 45px rgba(49, 0, 0, 0.14);
}
.brand img { width: 185px; transition: filter 0.3s ease, transform 0.3s ease; }
.site-header.scrolled .brand img { filter: none; transform: scale(0.94); }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.main-nav a {
  position: relative;
  padding: 13px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 34px;
  height: 2px;
  background: black;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease, width 0.28s ease, background 0.28s ease;
}
.main-nav a:hover { color: var(--maroon); transform: translateY(-1px); }
.main-nav a:hover::after { transform: translateX(-50%) scaleX(1); width: 18px; }
.main-nav a.active::after { transform: translateX(-50%) scaleX(1); width: 42px; }
.site-header.scrolled .main-nav a { color: var(--maroon-dark); }
.site-header.scrolled .main-nav a::after { background: var(--maroon); }
.nav-cta {
  min-width: 126px;
  text-align: center;
  padding: 15px 24px !important;
  color: #fff !important;
  background: var(--maroon-dark);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(77, 3, 3, 0.2);
}
.nav-cta::after { display: none; }
.site-header.scrolled .nav-cta { background: var(--maroon-dark); color: #fff !important; }
.menu-toggle { display: none; }

.hero {
  min-height: 620px;
  padding-top: 20px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.91) 39%, rgba(255,255,255,0.28) 66%, rgba(255,255,255,0.02) 100%),
    var(--hero-image) center right / 90% auto no-repeat;

}
.inner-hero { min-height: 540px; }
.hero-copy { width: 100%; max-width: 540px; min-width: 0; padding-block: 48px; margin-top: 80px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--maroon);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1 span { color: var(--maroon-dark); }
.hero-copy > p:not(.eyebrow) { margin: 22px 0 30px; font-size: 15px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(80, 2, 2, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 42px rgba(80, 2, 2, 0.28); }
.btn.light { background: #fff; color: var(--maroon-dark); }

.service-bar {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 118px;
  padding: 30px 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(140,27,24,0.95), rgba(66,1,1,0.98)),
    var(--maroon-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(72, 8, 8, 0.13);
  overflow: hidden;
}
.service-bar::before,
.service-bar::after {
  content: "";
  width: min(18vw, 190px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), transparent);
}
.service-bar strong {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}
.service-bar span {
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}
/*
.impact-strip strong { font-size: 24px; }
.impact-strip small { color: rgba(255,255,255,0.86); font-weight: 500; }
*/

.page-section {
  padding: 66px 0;
  background: var(--paper);
}
.compact { padding-top: 26px; }
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 34px;
  text-align: center;
}
.section-title span { width: 46px; height: 1px; background: #c7aaa6; }
.section-title h2 {
  margin: 0;
  color: var(--maroon-dark);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.section-lead { max-width: 620px; margin: -18px auto 54px; text-align: center; overflow-wrap: anywhere; }

.mission-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  gap: 0;
}
.feature-card, .small-card, .info-panel, .contact-form, .contact-card, .time-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 48px rgba(35, 12, 12, 0.06);
}
.feature-card { min-height: 360px; padding: 44px 56px; }
.feature-card h3, .about-banner h2, .apply-cta h2, .info-panel h2, .contact-form h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
}
.round-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  color: #fff;
  background: radial-gradient(circle at 35% 25%, var(--maroon-soft), var(--maroon-dark));
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 15px 25px rgba(80, 2, 2, 0.22);
}
.icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.center-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  margin-inline: -15px;
  background: #fff;
  border: 1px dashed #d3c4c0;
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(30, 5, 5, 0.08);
}
.center-logo img { width: 125px; }

#mission {
  background: var(--paper);
}
.services-section {
  background: linear-gradient(180deg, #fbf4f1, #f7eeeb);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 250px;
  padding: 30px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(35, 12, 12, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 5, 5, 0.22);
  box-shadow: 0 22px 52px rgba(72, 8, 8, 0.12);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon-soft), var(--maroon-dark));
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(80, 2, 2, 0.18);
}
.service-icon svg,
.service-icon .svg-inline--fa {
  width: 32px;
  height: 32px;
}
.service-card h3 {
  margin: 0 0 12px;
  color: var(--maroon-dark);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}
.service-card p {
  margin: 0;
  font-size: 13px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: start;
}
.process-section {
  background: #fff;
}
.process-row.six { grid-template-columns: repeat(6, 1fr); }
.application-process {
  gap: 18px;
}
.application-process .process-step p {
  max-width: 150px;
  font-size: 11px;
  line-height: 1.55;
}
.application-process .process-step strong {
  display: none;
}
.application-process .process-step h3 {
  min-height: 0;
  margin: 14px 0 5px;
  font-size: 13px;
}
.application-process .process-step em {
  margin-top: 18px;
  padding-inline: 13px;
  font-size: 11px;
  white-space: nowrap;
}
.process-step { position: relative; text-align: center; }
.process-step::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 44px);
  width: calc(100% - 64px);
  height: 1px;
  background: #d8bbb6;
}
.process-step:last-child::before { display: none; }
.process-step .round-icon { margin-inline: auto; }
.process-step strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--maroon);
  font-size: 20px;
}
.process-step h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 14px;
}
.process-step p {
  max-width: 180px;
  margin: 0 auto;
  font-size: 12px;
}
.process-section .process-step strong {
  display: none;
}
.process-step em {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 18px;
  color: var(--maroon-dark);
  background: #f1e9e6;
  border-radius: 6px;
  font-style: normal;
  font-weight: 700;
}
/*
.process-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 24px;
  padding: 34px 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 10px;
  box-shadow: var(--shadow);
}
*/

/*
.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.impact-strip article { padding: 28px; text-align: center; border-right: 1px solid var(--line); }
.impact-strip article:last-child { border-right: 0; }
.impact-strip strong { color: var(--maroon-dark); display: block; }
.impact-strip small { color: var(--muted); }
*/
.card-grid { display: grid; gap: 22px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.small-card { min-height: 180px; padding: 30px; text-align: center; }
.small-card h3 { margin: 14px 0 8px; font-size: 15px; }
.small-card p { margin: 0; font-size: 13px; }
.thin-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--maroon-dark);
  margin-bottom: 12px;
  border-radius: 50%;
  background: #f5e8e5;
}
.thin-icon .icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.about-banner, .help-banner {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px;
  color: #fff;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(84,0,0,0.98), rgba(111,9,6,0.9), rgba(84,0,0,0.52)),
    url("assets/hero-contact.png") center right / cover no-repeat;
  box-shadow: var(--shadow);
}
.about-banner {
  align-items: center;
  justify-content: center;
  padding: 64px;
}
.about-copy {
  max-width: 720px;
  align-self: center;
  text-align: left;
}
.about-copy .eyebrow::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 12px;
  background: #fff;
  border-radius: 999px;
  opacity: 0.9;
}
.about-copy h2 { max-width: 760px; font-size: clamp(26px, 3vw, 40px); }
.about-copy p { max-width: 690px; margin: 0 0 16px; font-size: 15px; text-align: justify; text-align-last: auto; }
.feature-card p:not(.eyebrow) {
  text-align: justify;
  text-align-last: auto;
}
.about-points {
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
  align-self: center;
  text-align: center;
}
.about-points article {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.about-point-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: var(--maroon-dark);
  background: #fff;
  border-radius: 50%;
  margin-inline: auto;
  box-shadow: 0 12px 24px rgba(35, 0, 0, 0.16);
}
.about-point-icon svg,
.about-point-icon .svg-inline--fa {
  width: 34px;
  height: 34px;
}
.no-interest-icon {
  position: relative;
}
.no-interest-icon::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 3px;
  background: var(--maroon-dark);
  border-radius: 999px;
  transform: rotate(-38deg);
  box-shadow: 0 0 0 2px #fff;
}
.about-points strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}
.about-points span {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.65;
}
.about-banner p, .help-banner p { color: #fff; }
.about-banner .eyebrow, .help-banner .eyebrow { color: #fff; }
#about {
  background: linear-gradient(180deg, #f8efed, var(--soft));
}
.apply-cta {
  padding: 48px 0;
  background: var(--paper);
}
.apply-process-section {
  background: var(--paper);
}
.apply-docs-section {
  background: linear-gradient(180deg, #fbf4f1, #f7eeeb);
}
.apply-after-section {
  background: #fff;
}
.apply-help-section {
  background: #fff;
}
.cta-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 42px 54px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(248,238,234,0.9)),
    #fff;
  border: 1px solid rgba(108, 5, 5, 0.12);
  box-shadow: 0 18px 48px rgba(35, 12, 12, 0.06);
}
.cta-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: 14px;
}
.doc-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-soft), var(--maroon-dark));
  box-shadow: 0 15px 32px rgba(80, 2, 2, 0.18);
}
.doc-icon .icon { width: 38px; height: 38px; stroke-width: 1.9; }
.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--maroon-dark);
  background: #fff;
  border: 1px solid rgba(108, 5, 5, 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}
.cta-link {
  color: var(--maroon-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.two-col, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.info-panel { padding: 40px; min-height: 280px; }
.info-panel h2 { font-size: 22px; }
.info-panel.dark-info { color: #fff; background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); }
.info-panel.dark-info p, .info-panel.dark-info li { color: #fff; }
.info-panel ul { padding: 0; margin: 24px 0 0; list-style: none; }
.info-panel li { margin: 11px 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.info-panel li::before { content: "\2713"; margin-right: 12px; color: var(--maroon); font-weight: 800; }
.info-panel.dark-info li::before { color: #fff; }
.time-box {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 56px;
  padding: 34px 54px;
  background:
    linear-gradient(90deg, #fff, #f8eeea);
  border-color: rgba(108, 5, 5, 0.14);
  box-shadow: 0 18px 48px rgba(35, 12, 12, 0.08);
}
.time-box .round-icon { margin: 0; }
.time-box .round-icon .icon { width: 34px; height: 34px; }
.time-box .eyebrow { white-space: nowrap; }
.time-box h3 { margin: 0; font-size: 22px; }
.time-box p { margin: 0; }
.time-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.time-summary h3 {
  flex: 0 0 auto;
  padding: 13px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(80, 2, 2, 0.16);
}
.time-box strong {
  color: var(--maroon-dark);
  font-weight: 800;
  line-height: 1.7;
}
.time-note {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(108, 5, 5, 0.12);
  font-size: 16px;
}
.help-banner { min-height: 175px; }
.help-banner .round-icon { flex: 0 0 auto; background: #fff; color: var(--maroon-dark); margin: 0; }
.apply-help-banner {
  min-height: 155px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  color: var(--ink);
  background: #fff;
  background-image: none;
  border: 1px solid rgba(108, 5, 5, 0.12);
}
.apply-help-banner div { max-width: 760px; }
.apply-help-banner p { margin: 0; color: var(--muted); }
.apply-help-banner .eyebrow { margin-bottom: 8px; color: var(--maroon); }
.apply-help-banner .btn {
  min-width: 148px;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  white-space: nowrap;
}

.contact-grid {
  grid-template-columns: 390px 1fr;
  align-items: stretch;
  gap: 28px;
}
.contact-main-section {
  background: linear-gradient(180deg, #fbf4f1, #f7eeeb);
}
.contact-cards {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr);
  gap: 12px;
  height: 100%;
}
.contact-card, .feedback-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
}
.contact-card.dark { background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); color: #fff; }
.contact-card.dark p, .contact-card.dark h3 { color: #fff; }
.contact-card.dark {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 164px;
  padding: 24px;
}
.contact-card .round-icon { width: 62px; height: 62px; margin: 0; flex: 0 0 auto; }
.contact-card.dark .round-icon { background: #fff; color: var(--maroon-dark); }
.contact-card h3, .feedback-card h3 { margin: 0 0 6px; color: var(--maroon-dark); text-transform: uppercase; font-size: 14px; }
.contact-card p, .feedback-card p { margin: 0; color: var(--ink); font-weight: 600; }
.contact-card.dark p {
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 100%;
}
.contact-card > div:not(.round-icon),
.feedback-card > div:not(.thin-icon) {
  min-width: 0;
}
.contact-card p,
.contact-card a,
.feedback-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.feedback-card { background: #f8efed; border-radius: 10px; }
.feedback-card .thin-icon { margin-bottom: 0; flex: 0 0 auto; background: #fff; }
.contact-form { height: 100%; padding: 34px 38px; }
.contact-form > p { margin: 0 0 4px; }
.contact-form h2::after, .map-info h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 14px;
  background: var(--maroon-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-top: 14px; }
label span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
input, textarea {
  width: 100%;
  border: 1px solid #ddd6d2;
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea { min-height: 280px; resize: vertical; }
.contact-form .btn { margin-top: 16px; }
input:focus, textarea:focus { border-color: var(--maroon); box-shadow: 0 0 0 4px rgba(108, 5, 5, 0.08); }
label small { display: block; text-align: right; color: var(--muted); }
.hidden-field { position: absolute; left: -9999px; }
.form-alert { margin: 22px 0 0; padding: 14px 18px; border-radius: 6px; font-weight: 600; }
.form-alert.success { color: #215a30; background: #e9f7ed; }
.form-alert.error { color: #761313; background: #fbe9e8; }

.map-section { padding: 66px 0 70px; }
.contact-map-section {
  background: var(--paper);
}
.map-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #edf3f4;
}
.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}
.map-info {
  position: absolute;
  z-index: 2;
  left: 36px;
  top: 36px;
  width: min(390px, calc(100% - 72px));
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255,255,255,0.62);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.map-info .thin-icon { margin-bottom: 16px; background: rgba(255,255,255,0.76); }
.map-info p { margin: 0 0 18px; font-size: 13px; line-height: 1.65; }
.map-info .btn { white-space: nowrap; }

.site-footer {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(108,5,5,0.98), rgba(66,1,1,1));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr;
  gap: 44px;
  padding: 42px 0 34px;
}
.footer-grid img { width: 178px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.footer-grid p, .footer-grid a {
  display: block;
  margin: 6px 0;
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  line-height: 1.65;
}
.footer-brand p { max-width: 430px; margin: 0; font-size: 14px; line-height: 1.75; }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}
.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact p { margin-bottom: 8px; }
.copyright {
  width: calc(100% - 110px);
  max-width: 1290px;
  margin: auto;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.76);
  text-align: center;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {

  .section-inner { width: calc(100% - 42px); max-width: 1290px; }
  .site-header { padding-inline: 2px; }
  .menu-toggle {
    display: grid;
    gap: 23px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 6px;
    background: var(--maroon-dark);
  }
  .menu-toggle span { width: 22px; height: 2px; background: #fff; }
  .main-nav {
    position: relative;
    top: calc(100% + 10px);
    right: 2px;
    display: none;
    width: min(380px, calc(100vw - 44px));
    padding: 2px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; gap: 4px; }
  .main-nav a::after {
    left: 0;
    bottom: 1px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .main-nav a:hover::after,
  .main-nav a.active::after {
    transform: scaleX(1);
  }
  .site-header.scrolled .main-nav a { color: var(--maroon-dark); }
  .site-header.scrolled .main-nav a::after { background: var(--maroon); }
  .hero { min-height: 590px; background-position: center center, 20% center; background-size: auto, 72% auto; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  /* .impact-strip { grid-template-columns: repeat(2, 1fr); } */
  .service-bar { gap: 14px; padding-inline: 28px; }
  .service-bar::before, .service-bar::after { width: min(12vw, 90px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .two-col, .contact-grid, .time-box { grid-template-columns: 1fr; }
  .time-summary { align-items: flex-start; flex-direction: column; gap: 10px; min-width: 0; width: 100%; }
  .center-logo { margin: -20px auto; }
  .process-row, .process-row.six { grid-template-columns: repeat(3, 1fr); }
  .process-step::before { display: none; }
  .about-banner { display: grid; padding: 44px; }
  .about-points { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-block: 36px 28px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 180px)); }
}

@media (max-width: 1100px) {
  
  .site-header { padding: 12px 18px; }
  .brand img { width: 142px; }
  .hero {
    min-height: 600px;
    padding-top: 2px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 48%, rgba(255,255,255,0.54) 100%),
      var(--hero-image) center right / auto 100% no-repeat;
  }
  .inner-hero {
    min-height: 450px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 48%, rgba(255,255,255,0.52) 100%),
      var(--hero-image) center right / auto 100% no-repeat;
  }
  .hero h1 { font-size: 38px; }
  .contact-hero .hero-copy {
    max-width: calc(100vw - 42px);
    
  }


  .contact-hero h1 {
    font-size: 34px;
    line-height: 1.12;
    overflow-wrap: normal;
  }
  .hero-copy, .hero-copy p, .section-lead {
    width: calc(100vw - 42px);
    max-width: calc(100vw - 42px);
    overflow-wrap: break-word;
    word-break: normal;
  }
  .card-grid.four, .services-grid, .process-row, .process-row.six, .form-row, .cta-row { grid-template-columns: 1fr; }
  /* .impact-strip { grid-template-columns: 1fr; } */
  .process-step::before { display: none; }
  .cta-row { padding: 30px; }
  .cta-actions { justify-items: start; }
  .service-bar { flex-wrap: wrap; gap: 8px 12px; min-height: 104px; padding: 24px 20px; text-align: center; }
  .service-bar::before, .service-bar::after { display: none; }
  .service-bar span { flex: 1 1 100%; font-size: 20px; }
  .service-bar strong { flex: 1 1 100%; }
  .section-title { gap: 14px; }
  .section-title span { width: 42px; flex: 0 0 42px; }
  .section-title h2 { max-width: 230px; font-size: 18px; overflow-wrap: anywhere; }
  .feature-card, .small-card, .service-card, .process-step, .info-panel, .contact-form, .contact-card { max-width: 100%; }
  .contact-cards,
  .contact-form,
  .map-card {
    width: calc(100vw - 42px);
    max-width: 100%;
    margin-inline: auto;
  }


  .dark{
    height: 180px !important;
  }

  .contact-card {
    width: calc(100vw - 42px);
    height: 130px;
  }
  .feature-card p, .service-card p, .process-step p, .info-panel li, .contact-card p { overflow-wrap: anywhere; }
  .contact-card {
    gap: 14px;
    align-items: flex-start;
    padding: 20px 54px 20px 20px;
  }
  .contact-card .round-icon {
    width: 54px;
    height: 54px;
  }

  
  .contact-card h3 {
    font-size: 13px;
  }
  .contact-card p,
  .contact-card a {
    font-size: 13px;
    line-height: 1.55;
  }
  .contact-hero .hero-copy > p:not(.eyebrow),
  .contact-form > p {
    max-width: 300px;
  }
  /* .impact-strip article { border-right: 0; border-bottom: 1px solid rgba(120,60,60,0.18); } */
  .feature-card, .contact-form, .info-panel { padding: 28px; }
  .time-box { padding: 28px; }
  .time-box .eyebrow { white-space: normal; }
  .time-summary h3 { white-space: normal; }
  .time-note { min-width: 0; overflow-wrap: anywhere; }
  .about-banner, .help-banner { padding: 30px; display: grid; }
  .apply-help-banner { grid-template-columns: 1fr; gap: 22px; }
  .about-copy h2 { font-size: 25px; }
  .about-points article { padding: 18px; }
  .map-card { min-height: 520px; }
  .map-info { left: 22px; right: 22px; top: 22px; width: auto; }
  .map-info .btn { width: 100%; white-space: normal; }
  .contact-main-section .section-inner,
  .contact-map-section .section-inner {
    width: 100%;
    padding-inline: 21px;
  }
  .section-inner{}
  .contact-main-section .contact-cards,
  .contact-main-section .contact-form,
  .contact-map-section .map-card {
    width: 100%;
  }
  .contact-main-section .contact-card {
    width: calc(100% - 42px);
    margin-inline: auto;
  }

  
  .footer-links { grid-template-columns: 1fr; }
  .copyright { width: calc(100% - 42px); max-width: 1290px; }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .section-inner {
    width: calc(100% - 64px);
  }


  .site-header {
    padding: 12px 28px;
  }

  .menu-toggle {
    gap: 5px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-copy {
    width: min(52vw, 540px);
    max-width: 540px;
    margin-top: 0;
    padding-block: 90px 56px;
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 58px);
  }

  .hero-copy > p:not(.eyebrow) {
    width: 100%;
    max-width: 460px;
  }

  .hero-copy p,
  .section-lead {
    width: 100%;
    max-width: 720px;
  }

  .card-grid.four,
  .services-grid,
  .process-row,
  .process-row.six,
  .form-row,
  .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-process.process-row,
  .application-process.process-row.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-grid,
  .two-col,
  .contact-grid,
  .time-box {
    grid-template-columns: 1fr;
  }

  .contact-cards,
  .contact-form,
  .map-card,
  .contact-main-section .contact-card {
    width: 100%;
  }

  .contact-card,
  .contact-card.dark {
    height: auto !important;
    min-height: 132px;
  }

  .contact-card {
    padding: 22px;
    align-items: center;
  }

  .contact-main-section .section-inner,
  .contact-map-section .section-inner {
    width: calc(100% - 64px);
    padding-inline: 0;
  }

  .contact-hero .hero-copy,
  .contact-hero .hero-copy > p:not(.eyebrow),
  .contact-form > p {
    max-width: 540px;
  }

  .about-banner,
  .help-banner {
    padding: 44px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 180px));
  }
}

@media (max-width: 680px) {
  .menu-toggle {
    gap: 5px;
  }


  .hero {
    padding-top: 0;
  }

  .hero-copy {
    margin-top: 0;
    padding-block: 118px 52px;
  }

  .contact-card,
  .contact-card.dark {
    height: auto !important;
    min-height: 130px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 12px 18px;
    gap: 16px;
  }

  .brand img {
    width: 142px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    gap: 5px;
    place-content: center;
    padding: 0;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    width: auto;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(108, 5, 5, 0.1);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 2px;
  }

  .main-nav a {
    display: block;
    width: fit-content;
    padding: 10px 0;
    color: var(--maroon-dark);
    transform: none;
  }

  .main-nav a:hover {
    transform: none;
  }

  .main-nav a::after {
    left: 0;
    bottom: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    width: 28px;
    transform: scaleX(1);
  }

  .main-nav .nav-cta {
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 14px 18px !important;
    text-align: center;
  }
}
