:root {
  --bg: #fbfaf8;
  --paper: #ffffff;
  --paper-soft: #f7f2ec;
  --ink: #1e1a16;
  --muted: #6f675f;
  --soft: #9b9186;
  --line: #e7ded2;
  --line-strong: #d8c8b7;
  --gold: #bd9258;
  --gold-dark: #9f743f;
  --gold-pale: #ead8bf;
  --sage: #526b62;
  --sage-soft: #edf3ef;
  --shadow: 0 18px 45px rgba(73, 55, 37, 0.1);
  --shadow-strong: 0 24px 70px rgba(50, 39, 28, 0.16);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(237, 243, 239, 0.5), transparent 360px),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(100% - clamp(44px, 9vw, 180px), 1120px);
  margin: 0 auto;
}

.site-header .container {
  width: min(100% - clamp(36px, 6.8vw, 120px), 1160px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-anchor {
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 222, 211, 0.85);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 5px solid rgba(178, 136, 82, 0.5);
  border-radius: 50%;
  opacity: 0.92;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 3px;
  border-top: 4px solid rgba(178, 136, 82, 0.45);
  border-bottom: 4px solid rgba(178, 136, 82, 0.32);
  border-radius: 999px;
}

.brand-mark::after {
  inset: 5px 16px;
  border: 0;
  border-left: 4px solid rgba(178, 136, 82, 0.35);
}

.brand-copy {
  display: grid;
  gap: 1px;
  color: var(--gold-dark);
  opacity: 0.96;
}

.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 8px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 26px 0 24px;
  color: #302b27;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c7a06c, #b4874d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(155, 108, 55, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.btn:hover,
.newsletter-form button:hover,
.social:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.btn-primary:hover {
  background: linear-gradient(180deg, #d1ad7e, #a9793f);
  box-shadow: 0 14px 30px rgba(155, 108, 55, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 3px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px) 0;
  background:
    radial-gradient(circle at 0% 45%, rgba(232, 211, 185, 0.58), transparent 34%),
    linear-gradient(90deg, #fffaf3 0%, #fdfbf8 49%, #f3eee8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 4.5vw, 64px);
  min-height: clamp(480px, 49vw, 560px);
  align-items: center;
}

.hero-copy {
  max-width: 610px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow.centered {
  text-align: center;
}

.hero h1,
.section-heading h2,
.contact-panel h2,
.modal-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.99;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(44px, 5.25vw, 66px);
  letter-spacing: 0;
}

.hero-lead {
  max-width: 520px;
  margin: 18px 0 22px;
  color: #4d4741;
  font-size: 17px;
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-primary {
  background: linear-gradient(180deg, #c9a16b, #b4864c);
  color: #fff;
  box-shadow: 0 12px 24px rgba(155, 108, 55, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: #302b27;
  border-color: #bfb2a4;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 12px 24px rgba(73, 55, 37, 0.08);
}

.hero-actions .btn {
  min-height: 46px;
  padding: 0 20px;
  font-size: 13px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 16px;
  max-width: 650px;
  margin-top: 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #423b35;
  font-size: 12px;
  line-height: 1.34;
}

.proof-item strong {
  font-weight: 750;
}

.proof-icon,
.card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  flex: 0 0 auto;
}

.proof-icon {
  width: 23px;
  height: 23px;
}

.card-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 5px;
}

.icon-user::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-6px);
}

.icon-user::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 20px;
  height: 11px;
  border: 2px solid currentColor;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom: 0;
}

.icon-star::before {
  content: "";
  width: 23px;
  height: 23px;
  background: currentColor;
  clip-path: polygon(50% 4%, 61% 35%, 94% 35%, 67% 54%, 78% 88%, 50% 68%, 22% 88%, 33% 54%, 6% 35%, 39% 35%);
}

.icon-care::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-4px);
}

.icon-care::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 25px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-lock::before {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 18px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-lock::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 13px;
  height: 14px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.icon-group::before {
  content: "";
  width: 28px;
  height: 24px;
  background:
    radial-gradient(circle at 50% 27%, transparent 0 5px, currentColor 5px 7px, transparent 7px),
    radial-gradient(circle at 22% 42%, transparent 0 4px, currentColor 4px 6px, transparent 6px),
    radial-gradient(circle at 78% 42%, transparent 0 4px, currentColor 4px 6px, transparent 6px),
    linear-gradient(currentColor, currentColor) 50% 82% / 18px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 18% 89% / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 82% 89% / 12px 2px no-repeat;
}

.icon-leaf::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 22px 2px 22px 2px;
  transform: rotate(-45deg);
}

.icon-leaf::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background: currentColor;
  transform: rotate(-45deg);
}

.icon-building::before {
  content: "";
  width: 20px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background:
    linear-gradient(currentColor, currentColor) 5px 6px / 3px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 6px / 3px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 5px 13px / 3px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 13px / 3px 3px no-repeat;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(216, 200, 183, 0.82);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-strong);
}

.hero-media::before {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust {
  padding: 24px 0 26px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust .eyebrow {
  margin-bottom: 16px;
  font-size: 10px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
  color: #777;
  opacity: 0.72;
  text-align: center;
}

.trust-logos span {
  font-size: clamp(14px, 1.55vw, 17px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  filter: grayscale(1);
  white-space: nowrap;
}

.trust-logos span:nth-child(1) {
  text-transform: none;
}

.section {
  padding: clamp(58px, 7vw, 92px) 0;
  background: var(--bg);
}

.section-soft {
  background: linear-gradient(180deg, #fbfaf8, #f8f5f1);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 10px;
}

.section-heading h2,
.contact-panel h2,
.modal-panel h2 {
  font-size: clamp(34px, 3.2vw, 46px);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.support-card,
.program-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.support-card {
  min-height: 230px;
  padding: 28px 22px 24px;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 9px 24px rgba(73, 55, 37, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.support-card:hover,
.program-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-pale);
  background: #fff;
  box-shadow: var(--shadow);
}

.support-card h3,
.program-card h3,
.testimonial-card strong,
.steps h3 {
  margin: 0;
  color: #29231f;
  font-size: 18px;
  font-weight: 700;
}

.support-card p {
  margin: 12px auto 16px;
  max-width: 235px;
  color: #4e4741;
  font-size: 14px;
  line-height: 1.52;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
}

.learn-more span {
  transition: transform 180ms ease;
}

.support-card:hover .learn-more span,
.program-card:hover .learn-more span {
  transform: translateX(3px);
}

.program-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.program-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.program-body {
  padding: 22px 22px 24px;
}

.program-body p {
  margin: 10px 0 16px;
  color: #4e4741;
  font-size: 14px;
  line-height: 1.52;
}

.testimonial-card {
  position: relative;
  min-height: 230px;
  padding: 30px 24px 24px 68px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-mark {
  position: absolute;
  top: 26px;
  left: 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: #433d37;
  font-size: 14px;
  line-height: 1.56;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(189, 146, 88, 0.24);
}

.author span {
  display: grid;
  gap: 1px;
}

.author small {
  color: var(--muted);
  font-size: 12px;
}

.method {
  padding: clamp(58px, 6vw, 86px) 0;
  background: #fff;
  border-top: 1px solid rgba(232, 222, 211, 0.55);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  text-align: center;
}

.steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 11%;
  right: 11%;
  border-top: 1px dashed #d7b88f;
}

.steps li {
  position: relative;
  padding: 0 14px;
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #caa46f, #b98b4d);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 0 9px #fff;
}

.steps h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  color: #5b544d;
  font-size: 13px;
  line-height: 1.48;
}

.contact-band {
  padding: 0;
  background: linear-gradient(90deg, #f7f1e9, #fbfaf8 43%, #f4eee6);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: 420px;
  align-items: stretch;
}

.faq-panel {
  padding: 58px 42px 58px 0;
}

.faq-panel .eyebrow,
.contact-panel .eyebrow {
  margin-bottom: 18px;
  font-size: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: #3d3732;
  padding: 0 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 650;
}

.faq-question span:last-child {
  color: var(--gold-dark);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  color: #615950;
  font-size: 13px;
  line-height: 1.5;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-top: 6px;
  padding-bottom: 13px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 58px 44px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, #fff 52%, rgba(255, 255, 255, 0.58) 73%, rgba(255, 255, 255, 0.12) 100%);
}

.contact-panel img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.contact-panel h2 {
  font-size: clamp(36px, 3.8vw, 52px);
}

.contact-panel p:not(.eyebrow) {
  margin: 18px 0 24px;
  max-width: 420px;
  color: #4d4741;
  font-size: 15px;
  line-height: 1.56;
}

.site-footer {
  background: #fffaf5;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.75fr 0.82fr 1.1fr;
  gap: 34px;
  padding: 46px 0 42px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-about p,
.newsletter p {
  max-width: 240px;
  margin: 0 0 16px;
  color: #5e574f;
  font-size: 13px;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: #6a625a;
  font-size: 13px;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.footer-col,
.newsletter {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h2,
.newsletter h2 {
  margin: 0 0 8px;
  color: #2d2824;
  font-size: 14px;
}

.footer-col a {
  color: #4e4741;
  font-size: 13px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--gold-dark);
  transform: translateX(2px);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  max-width: 280px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.newsletter-form input {
  width: 100%;
  border: 0;
  padding: 0 12px;
  color: var(--ink);
  font-size: 12px;
  outline: 0;
  background: transparent;
}

.newsletter-form button {
  border: 0;
  background: linear-gradient(180deg, #c9a16b, #b4864c);
  color: #fff;
  font-size: 17px;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-bottom {
  background: #efe2d2;
}

.footer-bottom-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #695f55;
  font-size: 12px;
}

.heart {
  color: #b33838;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, 0.52);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 216, 191, 0.65), transparent 36%),
    #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #3a332e;
  font-size: 23px;
  line-height: 1;
}

.modal-lead {
  margin: 13px 0 22px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #3f3934;
  font-size: 12px;
  font-weight: 750;
}

.contact-form small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  font-size: 14px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(189, 146, 88, 0.13);
}

.form-status {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(189, 146, 88, 0.35);
  border-radius: 6px;
  background: #fbf6ef;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
}

body:has(.weworkweb-return-bar) {
  padding-bottom: 92px;
}

body:has(.weworkweb-return-bar) .weworkweb-return-bar {
  top: auto !important;
  bottom: 18px !important;
  left: 18px !important;
  right: auto !important;
  max-width: min(calc(100vw - 36px), 520px) !important;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 56px, 900px);
  }

  .site-header .container {
    width: min(100% - 48px, 900px);
  }

  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 13px;
  }

  .nav-link {
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .hero-media {
    min-height: 410px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    margin-top: 22px;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) 1fr;
  }

  .program-card img {
    height: 100%;
    min-height: 220px;
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 0.8fr);
  }

  .newsletter {
    grid-column: 1 / -1;
  }

  .newsletter-form {
    max-width: 320px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 18px;
    right: 18px;
    z-index: 95;
    display: grid;
    gap: 0;
    padding: 10px;
    max-height: calc(100vh - 86px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: var(--paper-soft);
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 16px 0 0;
  }

  .hero-media {
    height: 390px;
    min-height: 0;
    margin: 0;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    object-position: center 34%;
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-grid,
  .program-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 0;
  }

  .faq-panel {
    padding: 42px 0;
  }

  .contact-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
    min-height: 430px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-about,
  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 100%);
  }

  .site-header .container {
    width: min(100% - 32px, 100%);
  }

  .brand-copy {
    max-width: 116px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.03;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    min-height: 44px;
    width: 100%;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 20px;
  }

  .proof-item {
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  .hero-media {
    height: min(70vw, 290px);
    margin: 0;
  }

  .hero-media img {
    object-position: center 30%;
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .contact-panel h2,
  .modal-panel h2 {
    font-size: clamp(31px, 9vw, 39px);
  }

  .support-grid,
  .program-grid,
  .testimonial-grid {
    gap: 16px;
  }

  .support-card {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .support-card,
  .program-body,
  .testimonial-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .support-card h3,
  .program-card h3,
  .testimonial-card strong,
  .steps h3 {
    font-size: 16px;
  }

  .support-card p,
  .program-body p,
  .testimonial-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .learn-more {
    font-size: 12px;
  }

  .program-card {
    display: block;
  }

  .program-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .testimonial-card {
    min-height: 0;
    padding-left: 56px;
  }

  .quote-mark {
    top: 18px;
    left: 20px;
    font-size: 42px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .steps p {
    font-size: 12px;
    line-height: 1.48;
  }

  .faq-question,
  .faq-answer p {
    font-size: 13px;
  }

  .contact-panel {
    padding: 34px 20px 232px;
  }

  .contact-panel::before {
    background: linear-gradient(180deg, #fff 0%, #fff 62%, rgba(255, 255, 255, 0.68) 82%, rgba(255, 255, 255, 0.18) 100%);
  }

  .contact-panel img {
    inset: auto 0 0 auto;
    width: 100%;
    height: 220px;
    object-position: center 58%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about p,
  .newsletter p,
  .footer-col a {
    font-size: 12px;
    line-height: 1.48;
  }

  .footer-col h2,
  .newsletter h2 {
    font-size: 13px;
  }

  .footer-bottom-inner {
    min-height: 54px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    padding: 30px 20px;
  }

  body:has(.weworkweb-return-bar) {
    padding-bottom: 76px;
  }

  body:has(.weworkweb-return-bar) .weworkweb-return-bar {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 0 !important;
    padding: 6px !important;
    max-width: none !important;
    width: auto !important;
  }

  body:has(.weworkweb-return-bar) .weworkweb-return-bar a:nth-child(2) {
    display: none !important;
  }

  body:has(.weworkweb-return-bar) .weworkweb-return-bar a,
  body:has(.weworkweb-return-bar) .weworkweb-return-bar button {
    min-height: 38px !important;
    flex: 1 1 0 !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 360px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
