:root {
  --bg: #eef5f2;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: rgba(248, 251, 252, 0.96);
  --surface-tint: #e7f2e1;
  --text: #153037;
  --text-soft: #5b7077;
  --headline: #0d252b;
  --line: rgba(9, 32, 44, 0.12);
  --line-strong: rgba(9, 32, 44, 0.2);
  --primary: #0d343c;
  --primary-soft: #145059;
  --accent: #6baa1a;
  --accent-strong: #4f7e12;
  --accent-soft: #e6f3d4;
  --gold: #d8aa29;
  --gold-soft: #f4e5a8;
  --success-soft: #eef8f5;
  --shadow: 0 24px 64px rgba(7, 26, 37, 0.13);
  --shadow-soft: 0 14px 34px rgba(7, 26, 37, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 170, 26, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(216, 170, 41, 0.09), transparent 26%),
    linear-gradient(180deg, #f9fcf8 0%, var(--bg) 48%, #edf4f0 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(31, 143, 127, 0.18);
  color: var(--headline);
}

:focus-visible {
  outline: 3px solid rgba(31, 143, 127, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6.25rem 0;
}

.section[id] {
  scroll-margin-top: 6.5rem;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(226, 241, 239, 0.5));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading h1,
.section-heading h2,
.about-card h2,
.hero-copy h1,
.contact-copy h2,
.form-card-head h3 {
  margin: 0;
  color: var(--headline);
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.section-heading p,
.contact-copy p,
.hero-copy p,
.about-copy p {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.section-heading p {
  max-width: 62ch;
  margin-inline: auto;
}

.eyebrow,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-label::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow-balanced {
  justify-content: center;
}

.eyebrow-balanced::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 247, 0.86);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(248, 251, 247, 0.96);
  border-color: rgba(13, 52, 60, 0.08);
  box-shadow: 0 12px 34px rgba(7, 26, 37, 0.09);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 3.45rem;
  padding: 0.28rem 0.36rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 52, 60, 0.08);
  box-shadow: 0 16px 30px rgba(9, 29, 32, 0.1);
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  color: var(--headline);
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.79rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  padding: 0.35rem;
  border: 1px solid rgba(13, 52, 60, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(7, 26, 37, 0.06);
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--headline);
  background: rgba(107, 170, 26, 0.1);
}

.site-nav a.is-active:not(.mobile-nav-cta) {
  color: var(--accent-strong);
  background: rgba(107, 170, 26, 0.14);
  box-shadow: inset 0 0 0 1px rgba(107, 170, 26, 0.14);
}

.site-nav .mobile-nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(13, 52, 60, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  border-radius: 999px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f3840, #5c9316);
  box-shadow: 0 16px 34px rgba(18, 61, 48, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 40px rgba(18, 61, 48, 0.3);
}

.button-secondary {
  color: var(--headline);
  border-color: rgba(13, 52, 60, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.button-full {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.hero {
  overflow: hidden;
  padding-top: 5.35rem;
}

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

.hero::before {
  width: 32rem;
  height: 32rem;
  right: -12rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(26, 154, 148, 0.18), transparent 68%);
}

.hero::after {
  width: 24rem;
  height: 24rem;
  left: -10rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(13, 44, 56, 0.12), transparent 70%);
}

.hero-grid,
.trust-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-grid {
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2.35rem;
  align-items: center;
}

.trust-grid,
.about-grid,
.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.35rem;
}

.hero-copy,
.hero-card,
.contact-copy,
.form-card,
.section-heading,
.about-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(2.9rem, 5.4vw, 5.2rem);
}

.hero-lead {
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-trust {
  max-width: 60ch;
  padding-left: 1rem;
  border-left: 3px solid rgba(107, 170, 26, 0.42);
  font-weight: 700;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.hero-highlights span {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(13, 52, 60, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--headline);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

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

.trust-band-item,
.service-card,
.step-card,
.profile-card,
.contact-point-card,
.contact-assurance-item,
.trust-item {
  border: 1px solid rgba(9, 32, 44, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.trust-band-item {
  position: relative;
  padding: 1.15rem 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-band-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(107, 170, 26, 0.92), rgba(216, 170, 41, 0.62));
}

.trust-band-item strong,
.hero-note strong,
.contact-assurance-item strong {
  display: block;
  color: var(--headline);
  font-size: 0.98rem;
}

.trust-band-item p,
.hero-note p,
.contact-assurance-item p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
  padding: 2.15rem;
  border: 1px solid rgba(13, 52, 60, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 236, 0.96));
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(9, 32, 44, 0.05);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, rgba(107, 170, 26, 0.92), rgba(216, 170, 41, 0.58));
}

.hero-card h2 {
  margin: 0;
  color: var(--headline);
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.16;
  font-family: "Fraunces", serif;
}

.hero-card p {
  color: var(--text-soft);
}

.hero-card-media,
.about-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.hero-card-media {
  aspect-ratio: 1 / 1;
  margin-bottom: 1.55rem;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(13, 52, 60, 0.08);
  background: linear-gradient(135deg, rgba(16, 48, 58, 0.12), rgba(107, 170, 26, 0.08));
  box-shadow: 0 22px 40px rgba(7, 26, 37, 0.16);
}

.hero-card-media::after,
.about-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 31, 42, 0) 42%, rgba(8, 31, 42, 0.16) 100%);
  pointer-events: none;
}

.hero-card-media img,
.about-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-media img {
  object-position: center top;
}

.hero-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-card-list article {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 32, 51, 0.07);
}

.hero-card-list strong,
.profile-card h3,
.service-card h3,
.trust-item h3,
.step-card h3,
.contact-points strong,
.about-role {
  color: var(--headline);
}

.hero-card-list p,
.service-card p,
.trust-item p,
.profile-card p,
.step-card p,
.form-note,
.form-card-head p,
.contact-points span,
.footer-meta,
.site-footer p,
.about-card p,
.contact-copy p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.hero-note {
  margin-top: 1.3rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(107, 170, 26, 0.08);
  border: 1px solid rgba(107, 170, 26, 0.14);
}

.contact-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-mini div {
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0d3139, #154852);
  color: #fff;
}

.contact-mini span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
}

.contact-mini strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-mini strong a {
  color: inherit;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-points strong a {
  color: inherit;
}

@media (max-width: 1180px) {
  .contact-mini {
    grid-template-columns: 1fr;
  }
}

.services-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.step-card,
.profile-card,
.contact-point-card,
.contact-assurance-item {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.service-card:hover,
.step-card:hover,
.profile-card:hover,
.contact-point-card:hover,
.contact-assurance-item:hover,
.trust-band-item:hover,
.trust-item:hover {
  border-color: rgba(107, 170, 26, 0.24);
  box-shadow: 0 14px 34px rgba(9, 23, 39, 0.1);
}

.service-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(107, 170, 26, 0.18), rgba(216, 170, 41, 0.18));
}

.service-card h3,
.step-card h3,
.profile-card h3,
.form-card-head h3 {
  margin: 0;
  font-size: 1.14rem;
}

.trust-list,
.contact-assurance,
.contact-points {
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
}

.trust-item span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.trust-item h3 {
  margin: 0;
  font-size: 1.08rem;
}

.about-card,
.form-card {
  position: sticky;
  top: 7rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(9, 32, 44, 0.08);
  box-shadow: var(--shadow);
}

.about-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 2.5rem 2.2rem 2.35rem;
  background:
    linear-gradient(180deg, #0b242a 0%, #103942 44%, #16515a 100%);
  color: #fff;
}

.about-card::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 170, 26, 0.28), transparent 68%);
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about-badge {
  display: grid;
  place-items: center;
  width: 5.45rem;
  height: 5.45rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(107, 170, 26, 0.96), rgba(216, 170, 41, 0.72));
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 32px rgba(5, 17, 24, 0.22);
}

.about-card .card-label,
.about-card h2,
.about-card p,
.about-role {
  color: #fff;
}

.about-card .card-label::before {
  background: rgba(107, 170, 26, 0.78);
}

.about-role {
  margin-top: 0.6rem;
  color: #d8f4a8;
  font-weight: 700;
}

.about-card-media {
  z-index: 1;
  aspect-ratio: 4 / 5;
  margin-top: 1.5rem;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 38px rgba(4, 16, 24, 0.28);
}

.about-card-media img {
  object-position: center top;
}

.about-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding-top: 0.5rem;
}

.about-copy > p {
  max-width: 66ch;
  line-height: 1.78;
}

.about-copy > p:first-of-type {
  color: var(--headline);
  font-size: 1.05rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.45rem;
  align-items: stretch;
}

.profile-card {
  position: relative;
  min-height: 0;
  padding: 1.45rem 1.45rem 1.55rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 241, 0.94));
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(107, 170, 26, 0.92), rgba(216, 170, 41, 0.56));
}

.profile-card:last-child {
  grid-column: 1 / -1;
}

.profile-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(107, 170, 26, 0.18), rgba(216, 170, 41, 0.14));
  border: 1px solid rgba(107, 170, 26, 0.14);
}

.profile-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-card h3 {
  max-width: 18ch;
  line-height: 1.28;
}

.profile-card p {
  max-width: 42ch;
  font-size: 0.965rem;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.contact-section {
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  right: -8rem;
  top: 1rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 143, 127, 0.14), transparent 68%);
  pointer-events: none;
}

.contact-assurance {
  margin-top: 1.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-points {
  grid-template-columns: 1fr;
  margin-top: 1.1rem;
}

.contact-point-card {
  display: grid;
  gap: 0.2rem;
  position: relative;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 241, 0.94));
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.contact-point-card:focus-visible {
  outline-offset: 4px;
}

.contact-point-card span {
  display: block;
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-point-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-point-card:hover,
.contact-point-card:focus-visible {
  transform: translateY(-1px);
}

.contact-point-card:active {
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(237, 245, 228, 0.96), rgba(255, 255, 255, 0.98));
}

.contact-point-card:hover strong,
.contact-point-card:focus-visible strong {
  color: var(--accent-strong);
}

.subpage-hero {
  padding-bottom: 2.2rem;
}

.subpage-hero .section-heading {
  max-width: 860px;
  margin-bottom: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 2rem;
  align-items: start;
}

.legal-shell {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.55rem;
  border: 1px solid rgba(9, 32, 44, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-soft);
}

.legal-card h2,
.legal-card h3 {
  margin: 0;
  color: var(--headline);
  font-family: "Fraunces", serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.legal-card h2 {
  font-size: 1.55rem;
}

.legal-card h3 {
  font-size: 1.18rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.legal-card p {
  margin: 0.8rem 0 0;
}

.legal-card strong {
  color: var(--headline);
}

.legal-card a,
.legal-meta a {
  color: var(--accent-strong);
  font-weight: 700;
}

.legal-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 0.55rem;
}

.legal-meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.legal-meta article {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-meta span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.legal-meta strong {
  color: #ffffff;
}

.about-card .legal-meta a {
  color: #ffffff;
}

.legal-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(26, 154, 148, 0.08);
  border: 1px solid rgba(26, 154, 148, 0.12);
}

.form-card {
  color: var(--text);
  background: rgba(255, 255, 255, 0.93);
}

.form-card-head {
  margin-bottom: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  color: var(--headline);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: rgba(244, 248, 251, 0.86);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #75869a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 143, 127, 0.72);
  box-shadow: 0 0 0 4px rgba(31, 143, 127, 0.12);
  background: #fff;
}

.contact-form textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--success-soft);
  border: 1px solid rgba(31, 143, 127, 0.2);
  color: var(--headline);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-error {
  background: #fff1f1;
  border-color: rgba(164, 38, 44, 0.18);
  color: #7e1f24;
}

.form-status.is-success {
  background: var(--success-soft);
  border-color: rgba(31, 143, 127, 0.2);
  color: var(--headline);
}

.site-footer {
  padding: 2.15rem 0 3rem;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(249, 252, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-copy strong,
.footer-inner strong {
  color: var(--headline);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--headline);
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-grid,
  .about-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .steps-grid,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-card,
  .form-card {
    position: static;
  }

  .section {
    padding: 5.2rem 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.78rem 0;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 4.7rem;
    height: 3.05rem;
    padding: 0.24rem 0.3rem;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.74rem;
  }

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

  .header-cta {
    display: none;
  }

  .site-nav {
    display: grid;
    gap: 0.2rem;
    width: 100%;
    margin-left: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height var(--transition), opacity var(--transition), padding var(--transition);
  }

  .site-nav.is-open {
    max-height: 28rem;
    opacity: 1;
    pointer-events: auto;
    padding: 0.75rem 0 0.25rem;
  }

  .site-nav a {
    padding: 0.8rem 0.15rem;
    border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.mobile-nav-cta {
    display: inline-flex;
    justify-self: start;
    margin-top: 0.5rem;
    padding: 0.95rem 1.35rem;
    border-bottom: none;
    background: linear-gradient(135deg, #0f3840, #5c9316);
    color: #fff;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 7vw, 4rem);
  }

  .contact-mini,
  .contact-assurance {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.95rem 0;
  }

  .services-grid,
  .steps-grid,
  .profile-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .profile-card:last-child {
    grid-column: auto;
  }

  .hero-card,
  .about-card,
  .form-card,
  .legal-card {
    padding: 1.25rem;
  }

  .brand {
    gap: 0.62rem;
  }

  .brand-mark {
    width: 4.25rem;
    height: 2.75rem;
    padding: 0.22rem 0.28rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.05rem, 10.2vw, 3rem);
    line-height: 1.04;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.5rem);
  }

  #leistungen .section-heading h2 {
    font-size: clamp(1.8rem, 7.8vw, 2.3rem);
  }

  .hero-lead,
  .hero-trust {
    font-size: 0.99rem;
    line-height: 1.65;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    gap: 0.65rem;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-point-card {
    padding: 1rem 0.95rem;
    gap: 0.12rem;
  }

  .contact-point-card span {
    font-size: 0.76rem;
  }

  .contact-point-card strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .contact-mini div {
    padding: 0.85rem 0.95rem;
  }

  .contact-mini strong {
    font-size: 0.9rem;
  }

  .section-heading {
    margin-bottom: 2.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
