:root {
  --bg: #fff8f3;
  --surface: #ffffff;
  --surface-quiet: #f8eee7;
  --surface-warm: #fffdf9;
  --ink: #342d2d;
  --muted: #726562;
  --line: rgba(127, 95, 83, 0.16);
  --brand: #9f695f;
  --brand-dark: #73564e;
  --rose: #cb9389;
  --rose-soft: #f7ddd8;
  --cream: #fbf1e8;
  --sage: #7d8b78;
  --gold: #b08a58;
  --shadow: 0 18px 46px rgba(124, 97, 87, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffaf6 0%, #fbf1e8 48%, #fff8f3 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 249, 244, 0.94);
  border-bottom: 1px solid rgba(127, 95, 83, 0.12);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(115, 86, 78, 0.62);
  border-radius: 50%;
  background: #fffdf9;
  color: #244736;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
}

.brand-mark::before {
  content: "L";
  left: 12px;
  top: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.brand-mark::after {
  content: "B";
  right: 9px;
  top: 11px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.brand-mark span {
  width: 30px;
  height: 30px;
  border: 1.4px solid #244736;
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0.9;
  transform: rotate(-16deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.95rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.section {
  padding: clamp(46px, 6vw, 82px) 0;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.hero-grid,
.subhero-grid,
.split-grid,
.intro-grid,
.contact-grid,
.text-layout {
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.54fr);
  gap: clamp(30px, 5vw, 78px);
}

.hero-intro,
.hero-copy {
  grid-column: 1;
}

.hero-intro {
  align-self: end;
}

.hero-copy {
  align-self: start;
}

.subhero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: start;
}

.subhero.section {
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(30px, 4vw, 50px);
}

.subhero + .section {
  padding-top: clamp(34px, 4.5vw, 58px);
}

.split-grid,
.text-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.intro-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.hero h1 {
  max-width: 20ch;
  font-size: clamp(2.25rem, 3.35vw, 3.25rem);
}

.subhero h1,
.legal-layout h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.service-card h2,
.info-box h2,
.contact-card h2,
.legal-layout h2,
.step-card h2,
.faq-item h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  margin: 18px 0 0;
}

.lead {
  max-width: 620px;
  color: #44514f;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-name {
  margin-top: 16px;
  color: var(--brand-dark);
  font-size: 1.02rem;
  font-weight: 800;
}

.subhero .lead + p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

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

.button-secondary {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand-dark);
}

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

.hero-media,
.subhero-media,
.rounded-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.hero-media {
  box-shadow: var(--shadow);
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: start;
  margin-top: clamp(18px, 4vw, 52px);
  width: min(100%, 360px);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: 50% 92%;
}

.subhero-media img,
.rounded-media img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  object-position: center center;
}

img[src*="adhs-mood"] {
  object-position: 48% 64%;
}

img[src*="emdr-mood"] {
  object-position: 62% 56%;
}

img[src*="geburt-mood"] {
  object-position: 54% 48%;
}

.subhero-media {
  justify-self: end;
  width: min(100%, 390px);
}

.subhero-grid-text {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.about-portrait img {
  aspect-ratio: 4 / 4.45;
  object-position: center 72%;
}

.compact-section {
  padding-top: clamp(34px, 4.5vw, 58px);
  padding-bottom: clamp(34px, 4.5vw, 58px);
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin-inline: auto;
}

.service-card,
.contact-card,
.info-box,
.trust-card,
.step-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.trust-grid,
.step-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.step-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.trust-card,
.step-card,
.faq-item {
  padding: clamp(20px, 2.6vw, 30px);
}

.trust-card strong,
.step-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.trust-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  margin-top: 8px;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.conversion-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-warm);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 52px);
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.muted-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.text-layout .button {
  margin-top: 24px;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body,
.contact-card,
.info-box {
  padding: clamp(22px, 3vw, 34px);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration-color: var(--rose);
  text-underline-offset: 5px;
}

.content-panel {
  max-width: 680px;
}

.rounded-media {
  justify-self: center;
  width: min(100%, 380px);
}

.hero .eyebrow {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.check-list,
.info-box ul,
.info-box ol {
  margin: 24px 0 0;
  padding-left: 1.2rem;
}

.check-list li,
.info-box li {
  margin-top: 10px;
}

.contact-band {
  background: var(--brand-dark);
  color: #fff;
}

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

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

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

.narrow {
  max-width: 780px;
}

.narrow .button {
  margin-top: 28px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.route-box {
  border-left: 4px solid var(--rose);
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 24px;
  padding: 18px 20px;
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(22px, 3vw, 34px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label,
.checkbox-row {
  color: var(--ink);
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.form-row textarea {
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 18px 0 22px;
  font-size: 0.95rem;
}

.checkbox-row input {
  margin-top: 5px;
}

.checkbox-row a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-main {
  background: #fff;
}

.legal-layout {
  max-width: 820px;
  overflow-wrap: anywhere;
}

.legal-layout h2 {
  margin-top: 38px;
}

.result-section {
  padding-top: clamp(96px, 12vw, 150px);
  padding-bottom: clamp(96px, 12vw, 150px);
}

.result-layout {
  max-width: 760px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-warm);
  box-shadow: 0 16px 40px rgba(124, 97, 87, 0.08);
}

.result-layout h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
}

.result-layout .button {
  margin-top: 28px;
}

.notice {
  border-left: 4px solid var(--rose);
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--rose-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin-top: 6px;
  color: var(--muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus {
  text-decoration: underline;
  text-underline-offset: 5px;
}

:focus-visible {
  outline: 3px solid rgba(201, 130, 142, 0.8);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .nav-shell,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .subhero-grid,
  .split-grid,
  .intro-grid,
  .contact-grid,
  .text-layout,
  .card-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-intro,
  .hero-copy,
  .hero-media {
    grid-column: 1;
  }

  .hero-intro {
    grid-row: 1;
  }

  .hero-media {
    grid-row: 2;
    justify-self: start;
  }

  .hero-copy {
    grid-row: 3;
  }

  .trust-grid,
  .step-grid,
  .faq-grid,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .subhero-media {
    max-width: 520px;
  }

  .contact-grid {
    align-items: start;
  }
}

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

  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: 0;
    padding: 16px 0;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .site-nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.72);
    font-size: 0.92rem;
    padding: 6px 10px;
  }

  .site-nav a:first-child {
    grid-column: auto;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
  }

  .subhero h1,
  .legal-layout h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

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