:root {
  --graphite: #3f4247;
  --graphite-deep: #292c31;
  --gold-1: #a68f5b;
  --gold-2: #b89f5d;
  --gold-3: #c8b273;
  --gold-deep: var(--gold-1);
  --gold: var(--gold-2);
  --gold-light: var(--gold-3);
  --stone: #c8c5c3;
  --silver: var(--stone);
  --white: #ffffff;
  --paper: #f3f1ed;
  --text-gold-on-light: #6b572b;
  --text-gold-on-dark: #dbc887;
  --text-on-gold: #332d21;
  --focus-on-light: #5b481f;
  --focus-on-dark: #f2dda0;
  --ink: #24272b;
  --muted: #676a6e;
  --cream: #e9e5dd;
  --line: rgba(63, 66, 71, 0.16);
  --shadow: 0 22px 54px rgba(33, 35, 38, 0.12);
  --radius: 6px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.14;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 6.5vw, 5.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--graphite);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus-on-light);
  outline-offset: 4px;
}

.hero :focus-visible,
.section--graphite :focus-visible,
.schedule-card :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--focus-on-dark);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--text-gold-on-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.65rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: #1f2023;
  background: var(--gold-light);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #d5c381;
  transform: translateY(-2px);
}

.button--small {
  min-height: 48px;
  padding-inline: 1.2rem;
}

.button--outline {
  color: var(--paper);
  background: transparent;
}

.button--outline:hover {
  color: var(--graphite);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--graphite);
  font-weight: 700;
  text-underline-offset: 5px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(34, 36, 39, 0.05);
}

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

.brand-lockup {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-frame {
  display: flex;
  width: 112px;
  height: 64px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 48px;
  background: var(--silver);
}

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

.site-nav > a:not(.button) {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--text-gold-on-light);
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--graphite);
  background: var(--paper);
  cursor: pointer;
  gap: 0.6rem;
  font-weight: 700;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 84% 26%, rgba(200, 178, 115, 0.28), transparent 34%),
    radial-gradient(circle at 14% 90%, rgba(166, 143, 91, 0.12), transparent 28%),
    linear-gradient(120deg, var(--graphite-deep) 0%, var(--graphite) 56%, #484a4d 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -180px;
  right: -120px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(200, 178, 115, 0.38);
  border-radius: 50%;
}

.hero::after {
  right: 6%;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200, 178, 115, 0.2);
  transform: rotate(45deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero h1 {
  max-width: 17ch;
  color: var(--white);
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
}

.hero .eyebrow,
.section--graphite .eyebrow {
  color: var(--text-gold-on-dark);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero-highlights {
  display: flex;
  margin: 2.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  gap: 1rem 2rem;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-highlights li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(200, 178, 115, 0.45);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(47, 50, 54, 0.92);
  box-shadow: var(--shadow);
}

.hero-card__label {
  display: block;
  margin-bottom: 2.3rem;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--gold-light);
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero .text-link {
  color: var(--gold-light);
}

.section {
  padding: clamp(4.8rem, 9vw, 8rem) 0;
}

.section--light {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfaf8;
}

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

.section--graphite {
  color: rgba(255, 255, 255, 0.76);
  background: var(--graphite);
}

.section--gold {
  background: var(--gold-3);
}

.split,
.scope-grid,
.service-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.split--center {
  align-items: center;
}

.prose {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading > p:last-child,
.section-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--inverse h2,
.section--graphite h2,
.section--graphite h3 {
  color: var(--paper);
}

.beneficiary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.beneficiary-card {
  min-height: 250px;
  padding: 2.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.beneficiary-card > span {
  display: inline-block;
  margin-bottom: 2.2rem;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.area-card {
  min-height: 290px;
  padding: 2rem;
  background: var(--graphite);
}

.area-card__mark {
  display: flex;
  width: 50px;
  height: 50px;
  margin-bottom: 4rem;
  border: 1px solid var(--gold);
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
}

.area-card p {
  margin-bottom: 0;
}

.scope-grid {
  align-items: center;
}

.scope-panel {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-left: 4px solid var(--gold);
  background: var(--cream);
}

.scope-panel h3 {
  margin-bottom: 1.6rem;
}

.scope-exclusions {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  color: var(--muted);
}

.scope-exclusions::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 13px;
  height: 1px;
  background: var(--gold-1);
  content: "";
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list--negative li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 13px;
  height: 1px;
  background: var(--gold-deep);
  content: "";
}

.offer {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.offer-number {
  color: rgba(63, 66, 71, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 12vw, 9.5rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.offer .eyebrow {
  color: var(--text-on-gold);
}

.offer h2 {
  max-width: 800px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.offer p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  color: #484333;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  gap: 1rem;
}

.steps li > span {
  color: var(--text-gold-on-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.steps h3 {
  margin-bottom: 0.35rem;
}

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

.service-grid {
  align-items: center;
}

.schedule-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: rgba(255, 255, 255, 0.82);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.schedule-card h3 {
  margin-bottom: 1.8rem;
  color: var(--paper);
}

.schedule-card dl {
  margin: 0;
}

.schedule-card dl > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  gap: 1rem;
}

.schedule-card dt {
  color: var(--gold-light);
  font-weight: 700;
}

.schedule-card dd {
  margin: 0;
}

.office-visual {
  position: relative;
  display: flex;
  min-height: 380px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 48%, rgba(166, 143, 91, 0.18) 49%, rgba(166, 143, 91, 0.18) 51%, transparent 52%),
    var(--cream);
}

.office-visual span {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
}

.office-visual span:nth-child(2) {
  margin-inline: 0.65rem;
  color: var(--gold-deep);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic;
}

.profile-section {
  overflow: hidden;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.profile-photo {
  position: relative;
}

.profile-photo::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  width: 78%;
  height: 70%;
  border: 1px solid var(--gold-deep);
  content: "";
}

.profile-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04);
}

.profile-copy {
  max-width: 610px;
}

.profile-copy > p:not(.eyebrow):not(.profile-credential) {
  margin-bottom: 2rem;
  font-size: 1.08rem;
}

.profile-credential {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.form-section {
  background: #fbfaf8;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.form-intro {
  position: sticky;
  top: 146px;
}

.form-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.privacy-note {
  margin-top: 2.2rem;
  padding: 1.4rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}

.privacy-note strong {
  color: var(--graphite);
}

.privacy-note p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(33, 35, 38, 0.07);
  gap: 1.4rem 1.2rem;
}

.field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > label:not(.choice):not(.consent),
.field legend {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.9rem;
  border: 1px solid #9c9c99;
  border-radius: 2px;
  color: var(--ink);
  background: var(--paper);
}

.field input:hover,
.field select:hover {
  border-color: var(--gold-deep);
}

.field input:focus,
.field select:focus {
  border-color: var(--gold-deep);
}

.field-help {
  margin: 0.45rem 0 0;
  color: #62656a;
  font-size: 0.78rem;
  line-height: 1.4;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

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

.choice {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  gap: 0.55rem;
  cursor: pointer;
}

.choice:hover {
  border-color: var(--gold-deep);
  background: var(--cream);
}

.choice input,
.consent input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  accent-color: var(--gold-deep);
}

.consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 0.65rem;
  color: #505358;
  font-size: 0.87rem;
  cursor: pointer;
}

.consent input {
  margin-top: 0.15rem;
}

.button--submit {
  width: 100%;
  border: 1px solid var(--graphite);
  color: var(--paper);
  background: var(--graphite);
  cursor: pointer;
}

.button--submit:hover {
  color: var(--graphite);
  background: var(--gold-light);
}

.form-footnote {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--graphite);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--text-gold-on-light);
  content: "+";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 620px;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--muted);
}

.site-footer {
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.66);
  background: #2f3236;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  padding-bottom: 3rem;
  gap: 2.5rem;
}

.footer-brand {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.footer-brand span {
  color: var(--gold-light);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--paper);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: #1f7a49;
  box-shadow: 0 12px 30px rgba(21, 70, 44, 0.3);
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover {
  background: #17633a;
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow:
    0 0 0 6px var(--focus-on-light),
    0 12px 30px rgba(21, 70, 44, 0.3);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.confirmation-main {
  display: grid;
  min-height: calc(100vh - 106px);
  align-items: center;
  background:
    radial-gradient(circle at 85% 12%, rgba(200, 178, 115, 0.15), transparent 30%),
    var(--cream);
}

.confirmation-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.confirmation-card {
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(33, 35, 38, 0.09);
}

.confirmation-card h1 {
  max-width: 720px;
  margin-top: 0.45rem;
}

.confirmation-card > p:not(.eyebrow) {
  max-width: 720px;
}

.confirmation-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--graphite);
  background: var(--gold-light);
  font-size: 1.65rem;
  font-weight: 700;
}

.confirmation-lead {
  color: var(--graphite);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.confirmation-notice {
  max-width: 720px;
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  border-left: 4px solid var(--gold);
  background: var(--cream);
}

.confirmation-notice p {
  margin: 0.45rem 0 0;
}

.confirmation-actions {
  display: flex;
  align-items: center;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.confirmation-contact {
  padding: 2rem;
  border-top: 4px solid var(--gold);
  background: var(--graphite);
  color: var(--paper);
}

.confirmation-contact h2 {
  margin-top: 0.45rem;
  color: var(--paper);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.confirmation-contact a {
  color: var(--paper);
}

.confirmation-contact .eyebrow {
  color: var(--text-gold-on-dark);
}

.confirmation-contact .privacy-note {
  margin-top: 1.6rem;
  border-color: var(--gold);
  color: var(--graphite);
}

.confirmation-header-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 90px;
  }

  .header-inner {
    min-height: 88px;
    padding-block: 0.5rem;
    flex-wrap: wrap;
  }

  .brand-frame {
    width: 88px;
    height: 52px;
  }

  .brand-divider {
    height: 38px;
  }

  .site-nav {
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
  }

  .has-js .nav-toggle {
    display: inline-flex;
  }

  .has-js .site-nav {
    position: absolute;
    z-index: 100;
    top: calc(100% + 1px);
    right: max(16px, calc((100vw - var(--max-width)) / 2));
    left: max(16px, calc((100vw - var(--max-width)) / 2));
    display: none;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(33, 35, 38, 0.12);
    flex-direction: column;
    gap: 0.25rem;
  }

  .has-js .site-nav[data-open] {
    display: flex;
  }

  .has-js .site-nav > a:not(.button) {
    display: flex;
    padding-inline: 0.8rem;
  }

  .has-js .site-nav .button {
    margin-top: 0.4rem;
  }

  .hero-grid,
  .split,
  .scope-grid,
  .service-grid,
  .faq-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 580px;
  }

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

  .offer {
    grid-template-columns: 190px 1fr;
  }

  .profile-grid {
    gap: 4rem;
  }

  .form-intro {
    position: static;
  }

  .confirmation-layout {
    grid-template-columns: 1fr;
  }

  .confirmation-contact {
    max-width: 680px;
  }
}

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

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 82px;
    gap: 0.7rem;
  }

  .brand-lockup {
    min-height: 58px;
    gap: 0.55rem;
  }

  .brand-frame {
    width: 68px;
    height: 44px;
  }

  .brand-divider {
    height: 32px;
  }

  .site-nav .button {
    min-height: 48px;
    padding-inline: 0.75rem;
    font-size: 0.76rem;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-highlights {
    display: grid;
  }

  .beneficiary-grid,
  .area-grid,
  .offer,
  .profile-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .beneficiary-card,
  .area-card {
    min-height: 0;
  }

  .area-card__mark {
    margin-bottom: 2rem;
  }

  .offer-number {
    font-size: 6rem;
  }

  .profile-photo {
    max-width: 440px;
  }

  .lead-form,
  .choice-grid,
  .choice-grid--two {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
