:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-soft: #eaf4ef;
  --ink: #233732;
  --muted: #526a63;
  --brand: #2a8b73;
  --brand-dark: #233732;
  --brand-hover: #1f705d;
  --accent: #2a8c3c;
  --accent-dark: #236f35;
  --accent-soft: #e5f2e7;
  --line: #c9ddd6;
  --shadow: 0 18px 50px rgba(35, 55, 50, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

img,
audio,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

iframe,
video {
  display: block;
}

a {
  color: var(--brand-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-dark);
}

:focus-visible {
  outline: 4px solid #146b56;
  outline-offset: 4px;
}

main:focus {
  outline: none;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar {
  background: linear-gradient(90deg, #d9eee7 0%, #e8f4e9 100%);
  color: var(--brand-dark);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.topbar a {
  color: var(--brand-dark);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1480px, calc(100% - 36px));
  min-height: 78px;
  position: relative;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand__name,
.brand__subline {
  display: block;
}

.brand__name {
  font-size: 23px;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand__subline {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 1px;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.main-nav a {
  color: var(--ink);
  padding: 9px 7px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  margin-left: 4px;
  background: var(--brand);
  color: #fff;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.is-active {
  background: var(--brand-dark);
  color: #fff;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

@media (max-width: 1360px) {
  .nav-toggle {
    position: absolute;
    right: 18px;
    z-index: 3;
    display: block;
    width: 42px;
    height: 42px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  .nav-toggle-label {
    pointer-events: none;
  }

  .nav-toggle:focus-visible + .nav-toggle-label {
    outline: 4px solid #146b56;
    outline-offset: 4px;
  }
}

.page-wide-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--brand-dark);
}

.page-wide-image img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
  object-position: center;
}

.page-image-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 620px);
  isolation: isolate;
}

.page-image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.page-image-hero:after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(35, 55, 50, 0.88) 0%, rgba(35, 55, 50, 0.5) 52%, rgba(35, 55, 50, 0.25) 100%);
  content: "";
  pointer-events: none;
}

.page-image-hero__overlay {
  position: relative;
  z-index: 2;
}

.page-image-hero .page-hero {
  display: flex;
  min-height: clamp(280px, 42vw, 620px);
  flex-direction: column;
  justify-content: center;
  padding: 42px 0;
}

.page-image-hero--text-right:after {
  background: linear-gradient(270deg, rgba(35, 55, 50, 0.88) 0%, rgba(35, 55, 50, 0.54) 50%, rgba(35, 55, 50, 0.18) 100%);
}

.page-image-hero--text-right .page-hero {
  align-items: flex-end;
}

.page-image-hero--text-right .eyebrow,
.page-image-hero--text-right .page-hero h1,
.page-image-hero--text-right .lead,
.page-image-hero--text-right .hero-actions {
  width: min(100%, 640px);
}

.page-image-hero .eyebrow,
.page-image-hero .page-hero h1,
.page-image-hero .lead {
  color: #fff;
}

.page-image-hero .page-hero h1 {
  max-width: 740px;
  font-size: 58px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.page-image-hero .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.page-image-hero .button-primary {
  background: #fff;
  color: var(--brand-dark);
}

.page-image-hero .button-primary:hover {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.page-image-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.page-image-hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-hero {
  min-height: 680px;
}

.home-hero img {
  object-position: center 42%;
}

.home-hero .hero {
  min-height: 680px;
  padding: 48px 0;
  z-index: 2;
}

.home-hero .hero:after,
.home-hero .hero > div:first-child:after {
  display: none;
}

.home-hero .eyebrow,
.home-hero .hero h1 {
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.home-hero .hero-card {
  z-index: 3;
}

.home-hero .hero-card:before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 72%);
  filter: blur(8px);
}

.home-hero .hero-card__image {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.home-hero .hero-card__image img {
  object-position: center 22%;
}

.home-hero .hero-card__image:after {
  display: none;
}

.home-overview {
  margin-top: -38px;
  padding: 78px 0 82px;
  background:
    linear-gradient(180deg, rgba(250, 252, 247, 0) 0%, rgba(250, 252, 247, 0.92) 10%, #eef6f2 100%),
    radial-gradient(circle at 8% 12%, rgba(42, 140, 60, 0.09), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #eef6f2 100%);
}

.home-overview .content-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-overview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.home-overview-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(42, 139, 115, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(35, 55, 50, 0.07);
}

.home-overview-welcome {
  position: relative;
  grid-column: span 12;
  overflow: hidden;
  padding-right: min(25vw, 250px);
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 247, 243, 0.95) 100%);
  isolation: isolate;
}

.home-overview-welcome:after {
  position: absolute;
  right: -8%;
  bottom: -42px;
  z-index: 0;
  width: 56%;
  height: 150px;
  background: linear-gradient(180deg, rgba(237, 247, 243, 0) 0%, rgba(237, 247, 243, 0.76) 48%, rgba(255, 255, 255, 0.96) 100%);
  content: "";
  pointer-events: none;
}

.home-overview-welcome > * {
  position: relative;
  z-index: 1;
}

.home-overview-focus {
  grid-column: span 7;
}

.home-overview-fit {
  grid-column: span 5;
  border-color: rgba(42, 140, 60, 0.24);
  background: linear-gradient(160deg, #f4faf4 0%, #ffffff 72%);
}

.home-overview-number {
  position: absolute;
  top: 20px;
  right: 24px;
  margin: 0;
  color: rgba(42, 139, 115, 0.19);
  font-family: Arial, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.home-overview-panel h2 {
  max-width: calc(100% - 56px);
}

.home-overview-panel ul {
  margin-bottom: 0;
}

.home-quote-intro {
  margin: 42px 0 12px;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-overview .content-section blockquote {
  margin: 0;
  padding: 32px 36px;
  border: 0;
  border-left: 5px solid var(--accent);
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(35, 55, 50, 0.14);
}

.home-overview blockquote footer {
  color: rgba(255, 255, 255, 0.68);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.92fr);
  gap: 38px;
  align-items: center;
  padding: 70px 0 58px;
  isolation: isolate;
}

.hero:after {
  position: absolute;
  right: 0;
  bottom: -44px;
  left: 38%;
  z-index: -1;
  height: 170px;
  background: linear-gradient(180deg, rgba(250, 252, 247, 0) 0%, rgba(250, 252, 247, 0.9) 62%, rgba(238, 246, 242, 0.96) 100%);
  content: "";
  pointer-events: none;
}

.hero > div:first-child {
  position: relative;
  z-index: 2;
}

.hero > div:first-child:after {
  position: absolute;
  inset: 18% -54px -28px -36px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(250, 252, 247, 0.98) 0%, rgba(250, 252, 247, 0.9) 68%, rgba(250, 252, 247, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: 72px;
  line-height: 0.98;
  font-weight: 500;
}

.hero h1 {
  max-width: 780px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #405952;
  font-size: 22px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.contact-band__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  overflow-wrap: anywhere;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--brand-dark);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 112, 93, 0.2);
}

.button-secondary {
  border-color: rgba(42, 139, 115, 0.42);
  background: var(--surface);
  color: var(--brand-dark);
}

.button-secondary:hover {
  border-color: var(--brand);
  background: #edf7f3;
  transform: translateY(-1px);
}

.hero-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  border: 0;
  background: transparent;
  text-align: center;
}

.hero-card:before {
  position: absolute;
  inset: -5% -22% 16% 5%;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(42, 139, 115, 0.15), rgba(42, 140, 60, 0.075));
  content: "";
  filter: blur(10px);
}

.hero-card__image {
  position: relative;
  display: block;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(35, 55, 50, 0.17),
    26px 18px 76px rgba(42, 139, 115, 0.13);
}

.hero-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-card__image:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 252, 247, 0) 58%, rgba(250, 252, 247, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.hero-card__note {
  margin: 14px 4px 2px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.hero-card__vita {
  min-height: 40px;
  margin-top: 18px;
  padding: 8px 15px;
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

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

.priority-section {
  padding-top: 28px;
}

.priority-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.priority-panel {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(42, 52, 47, 0.08);
}

.priority-panel-why {
  border-top: 5px solid var(--brand);
  background: linear-gradient(180deg, #f4faf7 0%, #ffffff 34%);
}

.priority-panel-audio {
  border-top: 5px solid var(--accent);
  background: linear-gradient(180deg, #f4faf4 0%, #ffffff 34%);
}

.priority-panel h2 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
}

.priority-panel p:not(.eyebrow) {
  margin: 0 0 20px;
}

.priority-panel audio {
  width: 100%;
  margin-top: 10px;
}

.section h2,
.content-section h2,
.content-section h3,
.contact-band h2,
.site-footer h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.18;
}

.section h2,
.contact-band h2 {
  font-size: 46px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: rgba(42, 139, 115, 0.42);
  box-shadow: 0 14px 34px rgba(42, 52, 47, 0.09);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.25;
}

.card:nth-child(3n+2) {
  border-top-color: var(--accent);
}

.card:nth-child(3n+2) h3 {
  color: var(--accent-dark);
}

.card p {
  margin: 0 0 18px;
}

.card a {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.page-hero {
  padding: 70px 0 44px;
}

.content-shell {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 70px;
}

.content-section {
  margin: 0 0 38px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(42, 52, 47, 0.045);
}

.image-text-section {
  overflow: hidden;
  padding-top: 0;
}

.inline-image-hero {
  position: relative;
  min-height: clamp(340px, 42vw, 470px);
  margin: 0 -34px 30px;
  overflow: hidden;
  background: var(--brand-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  isolation: isolate;
}

.inline-image-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inline-image-hero:after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, #fff 100%),
    linear-gradient(90deg, rgba(35, 55, 50, 0.78) 0%, rgba(35, 55, 50, 0.42) 58%, rgba(35, 55, 50, 0.12) 100%);
  content: "";
  pointer-events: none;
}

.inline-image-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  padding: 42px 34px 88px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.inline-image-hero .page-header,
.inline-image-hero h2,
.inline-image-hero h3,
.inline-image-hero p {
  color: #fff;
}

.inline-image-hero .page-header,
.inline-image-hero h2,
.inline-image-hero h3 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.12;
}

.inline-image-hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.content-section h2 {
  font-size: 34px;
}

.content-section h3 {
  margin-top: 30px;
  color: var(--accent-dark);
  font-size: 25px;
}

.content-section h4 {
  margin: 28px 0 10px;
  color: var(--brand-dark);
  font-size: 21px;
}

.content-section p:first-child,
.content-section h2:first-child,
.content-section h3:first-child {
  margin-top: 0;
}

.content-section ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.content-section li {
  margin: 0 0 6px;
}

.content-section code {
  font-family: Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
}

.content-section blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--surface-soft);
  border-left: 4px solid var(--accent);
  color: #344a43;
  font-style: italic;
}

.content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .content-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.content-section td,
.content-section th {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.fee-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(35, 55, 50, 0.07);
}

.fee-table th {
  background: var(--brand-dark);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fee-table tbody tr:nth-child(even) {
  background: var(--surface-soft);
}

.fee-table td:nth-child(2) {
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.section-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: -20px 18px 38px;
  padding: 20px 22px;
  border: 1px solid rgba(42, 139, 115, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(110deg, #edf7f3 0%, #f5faf5 100%);
}

.section-contact .eyebrow {
  margin-bottom: 4px;
}

.section-contact h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.section-contact .button {
  flex: 0 0 auto;
}

.scroll-reveal-ready .scroll-reveal {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms ease var(--scroll-delay, 0ms),
    transform 520ms ease var(--scroll-delay, 0ms),
    border-color 520ms ease var(--scroll-delay, 0ms);
}

.scroll-reveal-ready .scroll-reveal:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--scroll-accent, var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 620ms ease calc(var(--scroll-delay, 0ms) + 70ms);
  content: "";
  pointer-events: none;
}

.scroll-reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.scroll-reveal-ready .scroll-reveal.is-visible:after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-ready .scroll-reveal,
  .scroll-reveal-ready .scroll-reveal:after {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.content-section .right,
.content-section .left {
  max-width: min(320px, 45%);
  margin: 8px 0 18px 26px;
  float: right;
  border-radius: var(--radius);
}

.content-section .left {
  float: left;
  margin: 8px 26px 18px 0;
}

.legacy-content:after {
  display: table;
  clear: both;
  content: "";
}

.contact-band {
  padding: 54px 0;
  background: linear-gradient(120deg, var(--brand-dark) 0%, #285f51 100%);
  color: #fff;
}

.contact-band .eyebrow,
.contact-band h2 {
  color: #fff;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.contact-band .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.faq-jump {
  background: linear-gradient(180deg, #edf7f3 0%, #ffffff 100%);
  border-color: rgba(42, 139, 115, 0.35);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 30px;
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.info-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--brand-dark);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-list dd {
  margin: 4px 0 0;
}

.contact-form label {
  display: block;
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  margin-bottom: 16px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
summary:focus-visible,
audio:focus-visible {
  outline: 4px solid #146b56;
  outline-offset: 3px;
}

.site-footer a:focus-visible {
  outline-color: #ffe08a;
}

.contact-form [aria-invalid="true"] {
  border: 3px solid #9a2e18;
}

.form-error {
  margin: -8px 0 18px;
  padding: 9px 12px;
  border-left: 4px solid #9a2e18;
  background: #fff1ec;
  color: #752411;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.required-note {
  margin: 4px 0 14px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.alert-success {
  background: #e7f3eb;
  color: #214b31;
}

.alert-error {
  background: #f7e6df;
  color: #71331f;
}

.audio-list {
  display: grid;
  width: min(700px, calc(100% - 36px));
  gap: 16px;
}

.audio-list .content-section {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.audio-list .accordion-list {
  gap: 12px;
  counter-reset: audio-track;
}

.audio-list .accordion-item {
  counter-increment: audio-track;
  border: 0;
  border-left: 4px solid rgba(42, 139, 115, 0.48);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(35, 55, 50, 0.08);
}

.audio-list .accordion-item summary {
  min-height: 76px;
  padding: 14px 18px 14px 20px;
}

.audio-list .accordion-item summary > span {
  position: relative;
  min-width: 0;
  padding-left: 58px;
}

.audio-list .accordion-item summary > span:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
  content: counter(audio-track, decimal-leading-zero);
}

.audio-list .accordion-item[open] {
  border-left-color: var(--accent);
  box-shadow: 0 16px 38px rgba(35, 55, 50, 0.12);
}

.audio-list .accordion-item[open] summary {
  background: linear-gradient(90deg, var(--surface-soft) 0%, #f8fbf9 100%);
}

.audio-list .accordion-content {
  padding: 22px 24px 26px 82px;
  color: #405952;
}

.audio-list .accordion-content audio {
  display: block;
  width: min(100%, 430px);
  margin: 18px 0 0;
}

.accordion-intro {
  margin-bottom: 22px;
}

.accordion-intro .page-header,
.accordion-intro h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.14;
}

.accordion-intro p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.accordion-item.featured {
  border-color: rgba(42, 140, 60, 0.4);
  background: linear-gradient(180deg, #eff8f0 0%, #ffffff 100%);
  box-shadow: 0 16px 42px rgba(42, 140, 60, 0.11);
}

.accordion-item:hover {
  border-color: rgba(42, 139, 115, 0.4);
  box-shadow: 0 12px 28px rgba(42, 52, 47, 0.075);
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 18px 22px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary:after {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  text-align: center;
  content: "+";
}

.accordion-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.accordion-item[open] summary:after {
  content: "−";
}

.accordion-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accordion-content {
  padding: 22px;
  animation: accordionFade 180ms ease;
}

.accordion-content > :first-child {
  margin-top: 0;
}

.accordion-content > :last-child {
  margin-bottom: 0;
}

.accordion-content audio {
  width: 100%;
  margin: 10px 0 0;
}

@keyframes accordionFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audio-card audio {
  width: 100%;
  margin-top: 14px;
}

.legacy-content audio {
  width: 100%;
  margin: 10px 0 24px;
}

.legacy-content a img {
  display: inline-block;
  border-radius: var(--radius);
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.thumbnail {
  display: block;
}

.thumbnail img,
.img-responsive,
.modal-content img {
  display: block;
  width: 100%;
  height: auto;
}

.modal-dialog,
.modal-content {
  max-width: 100%;
}

.site-footer {
  padding: 54px 0;
  background: #233732;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.site-footer a,
.site-footer h2 {
  color: #fff;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 30px;
}

@media (min-width: 921px) and (max-width: 1360px) {
  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle-label {
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
  }

  .nav-toggle-label span,
  .nav-toggle-label:before,
  .nav-toggle-label:after {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .nav-toggle-label span {
    top: 20px;
  }

  .nav-toggle-label:before {
    top: 13px;
  }

  .nav-toggle-label:after {
    top: 27px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 10px 18px 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.08);
    font-size: 15px;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px;
    white-space: normal;
  }

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

  .nav-toggle:checked ~ .main-nav {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 600px;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: 30px;
  }

  .home-hero,
  .home-hero .hero {
    min-height: 600px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 60px;
  }

  .hero-card__image {
    width: min(100%, 460px);
  }

  .page-image-hero .page-hero h1 {
    font-size: 50px;
  }
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .topbar__inner {
    display: block;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    white-space: normal;
  }

  .main-nav {
    font-size: 15px;
  }

  .nav-toggle-label {
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
  }

  .nav-toggle-label span,
  .nav-toggle-label:before,
  .nav-toggle-label:after {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .nav-toggle-label span {
    top: 20px;
  }

  .nav-toggle-label:before {
    top: 13px;
  }

  .nav-toggle-label:after {
    top: 27px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 10px 18px 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.08);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px;
    white-space: normal;
  }

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

  .nav-toggle:checked ~ .main-nav {
    display: block;
  }

  .hero,
  .priority-grid,
  .grid-2,
  .grid-3,
  .home-overview-grid,
  .contact-band__inner,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-overview-welcome,
  .home-overview-focus,
  .home-overview-fit {
    grid-column: auto;
  }

  .home-overview-welcome {
    padding-right: 100px;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
    gap: 30px;
  }

  .home-hero,
  .home-hero .hero {
    min-height: 0;
  }

  .hero:after {
    left: 0;
  }

  .hero > div:first-child:after {
    inset: 12% -18px -20px -18px;
  }

  .hero-card {
    order: -1;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 52px;
  }

  .priority-panel h2,
  .section h2,
  .contact-band h2,
  .accordion-intro .page-header,
  .accordion-intro h2 {
    font-size: 36px;
  }

  .section {
    padding: 58px 0;
  }

  .home-overview {
    padding-top: 26px;
  }

  .page-hero {
    padding: 54px 0 34px;
  }

  .page-image-hero .page-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .topbar {
    font-size: 13px;
  }

  .topbar__inner span + span {
    display: block;
    margin-top: 3px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .page-wide-image img,
  .page-image-hero,
  .page-image-hero .page-hero {
    min-height: 360px;
  }

  .page-image-hero > img {
    height: 100%;
  }

  .contact-band__inner {
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .wrap,
  .content-shell {
    width: min(100% - 28px, var(--max));
  }

  body {
    line-height: 1.62;
  }

  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand__name {
    font-size: 21px;
  }

  .brand__subline {
    font-size: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .priority-panel h2,
  .section h2,
  .contact-band h2,
  .accordion-intro .page-header,
  .accordion-intro h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 19px;
  }

  .page-image-hero .page-hero {
    padding: 24px 0;
  }

  .page-image-hero .page-hero h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .page-image-hero .lead {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .page-image-hero .hero-actions {
    margin-top: 16px;
    gap: 8px;
  }

  .page-image-hero--text-right .page-hero {
    align-items: flex-start;
  }

  .page-image-hero--text-right:after {
    background: linear-gradient(90deg, rgba(35, 55, 50, 0.88) 0%, rgba(35, 55, 50, 0.5) 52%, rgba(35, 55, 50, 0.25) 100%);
  }

  .content-section {
    padding: 24px 18px;
  }

  .content-section table,
  .fee-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fee-table {
    display: block;
    min-width: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .fee-table thead {
    display: none;
  }

  .fee-table tbody {
    display: grid;
    gap: 12px;
  }

  .fee-table tr {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(35, 55, 50, 0.06);
  }

  .fee-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .fee-table td {
    display: grid;
    grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }

  .fee-table td:last-child {
    border-bottom: 0;
  }

  .fee-table td:nth-child(1) {
    background: var(--brand-dark);
    color: #fff;
  }

  .fee-table td:nth-child(3) {
    background: var(--surface-soft);
  }

  .fee-table td:before {
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .fee-table td:nth-child(1):before {
    color: rgba(255, 255, 255, 0.72);
    content: "Leistung";
  }

  .fee-table td:nth-child(2):before {
    content: "Preis";
  }

  .fee-table td:nth-child(3):before {
    color: var(--accent-dark);
    content: "Dauer";
  }

  .image-text-section {
    padding-top: 0;
  }

  .inline-image-hero {
    min-height: 430px;
    margin: 0 -18px 24px;
  }

  .inline-image-hero__content {
    padding: 28px 18px 82px;
  }

  .inline-image-hero .page-header,
  .inline-image-hero h2,
  .inline-image-hero h3 {
    font-size: 28px;
  }

  .inline-image-hero p {
    font-size: 16px;
    line-height: 1.45;
  }

  .audio-list {
    width: min(100% - 28px, var(--max));
  }

  .audio-list .content-section {
    padding: 0;
  }

  .audio-list .accordion-content {
    padding: 18px 16px 22px;
  }

  .audio-list .accordion-item summary > span {
    padding-left: 46px;
  }

  .audio-list .accordion-item summary > span:before {
    width: 34px;
  }

  .home-overview-panel,
  .home-overview-welcome {
    padding: 26px 20px;
  }

  .home-overview {
    margin-top: -18px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .home-overview-number {
    top: 16px;
    right: 17px;
    font-size: 48px;
  }

  .home-overview .content-section blockquote {
    padding: 26px 22px;
  }

  .hero-actions,
  .contact-band__actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-contact {
    display: grid;
    margin-right: 0;
    margin-left: 0;
  }

  .section-contact .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    width: min(100%, 430px);
    padding: 8px;
  }

  .hero-card:before {
    inset: -2% -14% 20% 10%;
  }

  .hero-card__image {
    width: min(100%, 360px);
    border-width: 8px;
  }

  .hero-card__vita {
    width: auto;
  }

  .priority-panel {
    padding: 24px 18px;
  }

  .accordion-item summary {
    padding: 16px;
    font-size: 17px;
    gap: 12px;
  }

  .accordion-item summary:after {
    width: 30px;
    height: 30px;
    line-height: 27px;
  }

  .accordion-content {
    padding: 18px 16px;
  }

  .content-section .right,
  .content-section .left {
    float: none;
    display: block;
    max-width: 100%;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .wrap,
  .content-shell,
  .nav-shell,
  .audio-list {
    width: min(100% - 24px, var(--max));
  }

  .topbar {
    font-size: 12px;
    line-height: 1.45;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__subline {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero {
    padding-top: 30px;
    gap: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .lead {
    font-size: 18px;
    line-height: 1.48;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .page-image-hero .page-hero h1 {
    font-size: 26px;
  }

  .page-wide-image img,
  .page-image-hero,
  .page-image-hero .page-hero {
    min-height: 390px;
  }

  .content-section {
    margin-bottom: 26px;
  }

  .home-overview-panel h2 {
    max-width: 100%;
    padding-right: 42px;
  }

  .home-overview-number {
    font-size: 40px;
  }

  .home-overview .content-section blockquote {
    padding: 22px 18px;
  }

  .accordion-item summary {
    align-items: flex-start;
  }

  .audio-list .accordion-item summary > span {
    padding-left: 0;
    padding-top: 30px;
  }

  .audio-list .accordion-item summary > span:before {
    top: 0;
    transform: none;
  }

  .audio-list .accordion-content {
    padding: 16px;
  }

  .site-footer {
    padding: 42px 0;
  }
}

@media (max-width: 360px) {
  .wrap,
  .content-shell,
  .nav-shell,
  .audio-list {
    width: min(100% - 20px, var(--max));
  }

  .brand__name {
    font-size: 18px;
  }

  .brand__subline {
    font-size: 10.5px;
  }

  .nav-toggle,
  .nav-toggle-label {
    width: 38px;
    height: 38px;
  }

  .nav-toggle-label span {
    top: 18px;
  }

  .nav-toggle-label:before {
    top: 12px;
  }

  .nav-toggle-label:after {
    top: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .priority-panel h2,
  .section h2,
  .contact-band h2,
  .accordion-intro .page-header,
  .accordion-intro h2 {
    font-size: 27px;
  }

  .button {
    min-height: 48px;
    padding: 10px 13px;
    font-size: 14px;
  }

  .content-section {
    padding: 22px 15px;
  }

  .inline-image-hero {
    margin-right: -15px;
    margin-left: -15px;
  }

  .accordion-item summary:after {
    width: 28px;
    height: 28px;
    line-height: 25px;
  }
}
