:root {
  --ink: #14201d;
  --ink-soft: #42504b;
  --forest: #173f35;
  --forest-2: #255b4b;
  --sage: #9bb4a3;
  --sage-light: #dce8df;
  --paper: #f7f4ed;
  --paper-2: #ece8de;
  --white: #fffefd;
  --copper: #c86f43;
  --copper-dark: #9b4d2a;
  --line: rgba(20, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(22, 44, 37, 0.12);
  --shadow-small: 0 12px 35px rgba(22, 44, 37, 0.09);
  --radius: 22px;
  --radius-small: 14px;
  --content: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

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

.section {
  padding: 105px 0;
}

.section-tight {
  padding: 74px 0;
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.section-white {
  background: var(--white);
}

.section-sage {
  background: var(--sage-light);
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--copper-dark);
  font-size: 0.79rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 28px;
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: #f0b494;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 690;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 880px;
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
}

h2 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

h4 {
  margin-bottom: 9px;
  font-size: 1.04rem;
}

.lead {
  max-width: 740px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.section-dark .lead,
.section-dark .muted {
  color: rgba(255, 254, 253, 0.76);
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-2);
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.section-dark .text-link {
  color: #dcebdd;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--forest-2);
  box-shadow: 0 10px 30px rgba(23, 63, 53, 0.22);
  transform: translateY(-2px);
}

.button-copper {
  background: var(--copper);
}

.button-copper:hover {
  background: var(--copper-dark);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
}

.section-dark .button-ghost,
.hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.section-dark .button-ghost:hover,
.hero .button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-arrow {
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.button:hover .icon-arrow,
.text-link:hover .icon-arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 237, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 32, 29, 0.06);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: -0.12em;
}

.brand-accent {
  color: var(--copper-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav > a:not(.button) {
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  background: rgba(23, 63, 53, 0.07);
  color: var(--ink);
}

.site-nav .button {
  min-height: 44px;
  margin-left: 8px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  color: var(--white);
  background: var(--forest);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(155, 180, 163, 0.25), transparent 32%),
    linear-gradient(115deg, transparent 0 65%, rgba(255, 255, 255, 0.045) 65% 65.3%, transparent 65.3%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 52px;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
}

.hero-grid > *,
.split > *,
.method-grid > * {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.45rem);
}

.hero .lead {
  color: rgba(255, 254, 253, 0.78);
}

.hero .eyebrow {
  color: #f0b494;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-note::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fcaad;
  box-shadow: 0 0 0 6px rgba(159, 202, 173, 0.12);
  content: "";
}

/* Homepage learning model: every level remains visible and readable. */
.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
}

.hero-model {
  position: relative;
  min-height: 600px;
  padding: 44px 0 24px;
}

.hero-model::before {
  position: absolute;
  inset: 20px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  content: "";
}

/* Signatur unter dem Hero-Text: der Text ist in der Ich-Form geschrieben,
   also steht die Person darunter - nicht als Objekt neben dem Diagramm. */
.hero-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 0;
}

.hero-signature img {
  width: 54px;
  height: 54px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  object-fit: cover;
}

.hero-signature span {
  display: grid;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-signature strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.model-title {
  position: relative;
  z-index: 2;
  margin: 0 20px 14px 0;
  color: #f0b494;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-levels {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 20px 0 0;
  list-style: none;
}

.model-levels li {
  display: grid;
  min-height: 88px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(14, 48, 39, 0.83);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  grid-template-columns: 70px minmax(0, 1fr);
}

.model-levels li > span {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #f0b494;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.model-levels strong,
.model-levels small {
  display: block;
}

.model-levels strong {
  font-size: 0.94rem;
  line-height: 1.2;
}

.model-levels small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.71rem;
  line-height: 1.3;
}

.model-levels .level-one {
  border-color: rgba(240, 180, 148, 0.48);
  background: rgba(37, 91, 75, 0.95);
}

.model-levels .foundation {
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--copper-dark);
}

.model-levels .foundation > span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.model-levels .foundation small {
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.portrait-arch {
  position: absolute;
  right: 16px;
  bottom: -86px;
  width: min(310px, 77%);
  height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 160px 160px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
}

.portrait-arch img {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 110%;
  max-height: 94%;
  object-fit: contain;
  object-position: bottom;
}

.floor-card {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 205px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: rgba(15, 47, 39, 0.82);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.floor-card span {
  display: block;
  color: #f0b494;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floor-card strong {
  display: block;
  margin-top: 3px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.floor-card-1 { top: 50px; left: 24px; }
.floor-card-2 { top: 145px; left: -10px; }
.floor-card-3 { top: 240px; left: 20px; }
.floor-card-4 { top: 335px; left: -16px; }

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  min-height: 112px;
  padding: 27px 24px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Grids and cards */
.split {
  display: grid;
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card-grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card p:last-child,
.content-card p:last-child {
  margin-bottom: 0;
}

.card-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 820;
}

.content-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 29px;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--copper-dark);
  font-weight: 850;
  content: "✓";
}

.plain-list li::before {
  position: absolute;
  top: 0.68em;
  left: 3px;
  width: 8px;
  height: 2px;
  background: var(--copper);
  content: "";
}

.statement {
  position: relative;
  padding-left: 34px;
  border-left: 3px solid var(--copper);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.source-note {
  padding-top: 18px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.source-note a {
  color: inherit;
  text-underline-offset: 3px;
}

.editorial-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.editorial-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.editorial-figure figcaption {
  padding: 14px 20px 16px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 0.8rem;
}

/* Building / method */
.method-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.72fr 1.28fr;
}

.method-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.building {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.building-level {
  position: relative;
  display: grid;
  min-height: 132px;
  align-items: center;
  gap: 24px;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  grid-template-columns: 108px 1fr;
  transition: background 180ms ease, transform 180ms ease;
}

.building-level:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-4px);
}

.building-level:last-child {
  border-bottom: 4px solid var(--copper);
}

.level-index {
  color: #f0b494;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.level-body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.level-body h3 {
  color: var(--white);
}

.building-level.level-foundation {
  margin-top: 10px;
  background: var(--copper);
}

.building-level.level-foundation .level-index,
.building-level.level-foundation .level-body p {
  color: rgba(255, 255, 255, 0.84);
}

.flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.2;
}

.section-dark .tag {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

/* Path cards */
.path-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.path-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.path-card .tag {
  align-self: flex-start;
  margin-bottom: 28px;
}

.path-card p {
  color: var(--ink-soft);
}

.path-card .text-link {
  margin-top: auto;
}

.path-card-featured {
  color: var(--white);
  background: var(--forest);
}

.path-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.path-card-featured .text-link {
  color: #dcebdd;
}

/* Pricing */
.pricing-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card-featured {
  border-color: var(--forest);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--copper);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label {
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  margin: 25px 0 6px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-meta {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.price-card .check-list {
  margin-bottom: 30px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-footnote {
  margin-top: 27px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 0 0 40px;
  grid-template-columns: 48px 1fr;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 820;
}

.section-white .timeline-dot {
  background: var(--white);
}

.timeline-body p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 730px;
}

th,
td {
  padding: 19px 21px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--forest);
  background: var(--sage-light);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 94px;
  color: var(--white);
  background: var(--forest);
}

.page-hero::after {
  position: absolute;
  top: -200px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 25px;
  font-size: clamp(2.8rem, 5.6vw, 5.25rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.83rem;
}

.breadcrumbs a {
  text-underline-offset: 3px;
}

.breadcrumbs span::before {
  margin-right: 7px;
  content: "/";
}

/* Expert */
.expert-panel {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  align-items: end;
  padding: 45px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.expert-panel::before {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 380px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 200px 200px 0 0;
  content: "";
}

.expert-panel img {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: min(58%, 320px);
  max-height: 95%;
  object-fit: contain;
  object-position: bottom;
}

.expert-caption {
  position: relative;
  z-index: 2;
  width: min(57%, 320px);
}

.expert-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.fact-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  color: var(--forest);
  font-size: 1.2rem;
}

.fact span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 710;
  text-align: left;
}

.faq-question::after {
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 400;
  content: "+";
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: none;
  max-width: 780px;
  padding: 0 55px 25px 0;
  color: var(--ink-soft);
}

.faq-answer.open {
  display: block;
}

/* Assessment */
.assessment-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.assessment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
}

.assessment-progress {
  width: min(250px, 42%);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-2);
}

.assessment-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--copper);
  transition: width 240ms ease;
}

.assessment-body {
  min-height: 465px;
  padding: clamp(30px, 5vw, 58px);
}

.assessment-step {
  display: none;
}

.assessment-step.active {
  display: block;
  animation: fade-up 260ms ease both;
}

.assessment-step h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.assessment-options {
  display: grid;
  gap: 11px;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-option {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 17px 18px 17px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  cursor: pointer;
  font-weight: 620;
  line-height: 1.35;
  transition: border-color 160ms ease, background 160ms ease;
}

.assessment-option:hover {
  border-color: var(--sage);
  background: var(--sage-light);
}

.assessment-option input {
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.assessment-option:has(input:checked) {
  border-color: var(--forest);
  background: var(--sage-light);
}

.assessment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 35px;
}

.assessment-error {
  min-height: 1.5em;
  margin-top: 15px;
  color: #9f2f26;
  font-size: 0.88rem;
}

.result-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--copper);
  font-size: 0.76rem;
  font-weight: 810;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-panel {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 240px;
}

.result-score {
  display: grid;
  width: 200px;
  height: 200px;
  place-items: center;
  border: 18px solid var(--sage-light);
  border-radius: 50%;
  color: var(--forest);
  background: var(--paper);
  font-size: 2.4rem;
  font-weight: 750;
}

.result-score small {
  display: block;
  margin-top: -55px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 650;
}

/* Contact briefing */
.contact-studio {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
}

.contact-summary {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(32px, 5vw, 54px);
  color: var(--white);
  background: var(--forest);
}

.contact-summary::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.contact-summary > * {
  position: relative;
  z-index: 1;
}

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

.summary-kicker {
  color: #f0b494;
  font-size: 0.74rem;
  font-weight: 810;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.summary-stack {
  display: grid;
  gap: 10px;
  margin: 32px 0;
}

.summary-line {
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-line span,
.summary-line strong {
  display: block;
}

.summary-line span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.summary-line strong {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.35;
}

.summary-note {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.contact-form {
  padding: clamp(32px, 5vw, 58px);
}

.contact-form fieldset {
  min-width: 0;
  padding: 0;
  margin: 0 0 40px;
  border: 0;
}

.contact-form legend {
  width: 100%;
  margin-bottom: 17px;
  font-size: 1.12rem;
  font-weight: 740;
  letter-spacing: -0.015em;
}

.legend-index {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sage-light);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.contact-choice-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-choice {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 16px 15px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.3;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-choice:hover {
  border-color: var(--sage);
  background: var(--sage-light);
  transform: translateY(-1px);
}

.contact-choice input {
  position: absolute;
  left: 17px;
  width: 17px;
  height: 17px;
  accent-color: var(--forest);
}

.contact-choice:has(input:checked) {
  border-color: var(--forest);
  background: var(--sage-light);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.field-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-2);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 91, 75, 0.1);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 23px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.consent-row input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-status {
  display: none;
  padding: 22px;
  margin-top: 22px;
  border: 1px solid var(--sage);
  border-radius: 14px;
  background: var(--sage-light);
}

.form-status.show {
  display: block;
  animation: fade-up 240ms ease both;
}

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

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 78px);
  border-radius: 30px;
  color: var(--white);
  background: var(--forest);
}

.cta-panel::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 770px;
}

.cta-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
}

.phone-display {
  display: inline-block;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 2.6rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

/* Legal / article */
.article h2 {
  margin-top: 58px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.article h3 {
  margin-top: 35px;
}

.article a {
  color: var(--forest-2);
  text-underline-offset: 3px;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--paper-2);
}

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

/* Footer */
.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #0e2d26;
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 52px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.footer-copy {
  max-width: 400px;
  margin-top: 20px;
}

.footer-title {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 810;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 17px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1050px) {
  .site-nav > a:not(.button) {
    padding-inline: 8px;
    font-size: 0.88rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(455px, 1.05fr);
    gap: 28px;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }

  .section { padding: 82px 0; }
  .section-tight { padding: 62px 0; }

  .nav-toggle {
    display: block;
    z-index: 102;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 101;
    display: none;
    align-items: stretch;
    padding: 25px 20px 45px;
    background: var(--paper);
    overflow-y: auto;
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
  }

  .site-nav > a:not(.button) {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.08rem;
  }

  .site-nav .button {
    margin: 24px 0 0;
  }

  .hero {
    padding-top: 64px;
  }

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

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

  .hero-model {
    width: min(100%, 620px);
    margin: 5px auto 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  .portrait-arch {
    right: 0;
    bottom: -88px;
    height: 480px;
  }

  .floor-card {
    left: 3% !important;
  }

  .floor-card-1 { top: 30px; }
  .floor-card-2 { top: 116px; }
  .floor-card-3 { top: 202px; }
  .floor-card-4 { top: 288px; }

  .method-intro {
    position: static;
  }

  .pricing-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .contact-studio {
    grid-template-columns: 1fr;
  }

  .contact-summary {
    min-height: 470px;
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--content)); }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-model {
    min-height: 0;
    padding: 22px 0 24px;
  }

  .hero-model::before {
    inset: 0;
  }

  .model-title {
    margin: 0 17px 12px;
  }

  .model-levels {
    gap: 7px;
    padding: 0 12px;
  }

  .model-levels li {
    min-height: 80px;
    gap: 10px;
    padding: 10px;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .model-levels strong {
    font-size: 0.88rem;
  }

  .model-levels small {
    font-size: 0.68rem;
  }

  .portrait-arch {
    width: 72%;
  }

  .floor-card {
    width: 170px;
    padding: 11px 12px;
  }

  .floor-card strong { font-size: 0.82rem; }

  .trust-grid,
  .card-grid-2,
  .path-grid,
  .fact-grid,
  .assessment-options,
  .result-panel {
    grid-template-columns: 1fr;
  }

  .contact-choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:last-child {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .building-level {
    gap: 9px;
    grid-template-columns: 1fr;
  }

  .expert-panel {
    min-height: 590px;
    padding: 28px;
  }

  .expert-panel img {
    right: -30px;
    width: 78%;
  }

  .expert-caption {
    width: 75%;
  }

  .assessment-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .assessment-progress {
    width: 100%;
  }

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

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

  .result-score {
    width: 170px;
    height: 170px;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* ========================================================================== */
/* VORPROMPT 2026 page system                                                  */
/* ========================================================================== */

.brand > span:last-child {
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: none;
}

.concern-grid,
.question-matrix,
.setting-grid,
.rate-grid,
.pricing-basis-grid,
.package-grid,
.article-card-grid,
.principle-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concern-card,
.question-matrix article,
.setting-card,
.rate-card,
.pricing-basis-card,
.package-card,
.article-card,
.principle-grid article {
  height: 100%;
  padding: clamp(25px, 3vw, 35px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.concern-card p:last-child,
.question-matrix p:last-child,
.setting-card p:last-child,
.rate-card p:last-child,
.article-card p:last-child,
.principle-grid p:last-child {
  margin-bottom: 0;
}

.outcome-card {
  border-top: 5px solid var(--copper);
}

.privacy-promise {
  margin: 27px -5px -5px;
  padding: 16px 18px;
  border-radius: 11px;
  color: var(--forest);
  background: var(--sage-light);
  font-size: 0.9rem;
}

.house-layout {
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
  grid-template-columns: minmax(250px, 0.75fr) minmax(460px, 1.25fr);
}

.house-stack {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.house-stack::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.house-level {
  position: relative;
  display: grid;
  min-height: 98px;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: 92px minmax(0, 1fr);
}

.house-level > span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 10px;
  color: #f0b494;
  background: var(--forest);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.house-level strong,
.house-level p {
  display: block;
}

.house-level strong {
  font-size: 1.05rem;
}

.house-level p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.house-roof {
  margin-inline: 42px;
  border-radius: 70px 70px 14px 14px;
}

.house-foundation {
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--copper-dark);
}

.house-foundation > span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.expert-section {
  color: var(--white);
  background: var(--forest);
}

.expert-home-grid,
.profile-hero-grid,
.author-box,
.contact-intro,
.knowledge-feature-card,
.evidence-panel {
  display: grid;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
}

.expert-section .lead,
.expert-section .muted {
  color: rgba(255, 255, 255, 0.75);
}

.expert-portrait,
.profile-portrait {
  margin: 0;
}

.expert-image-stage,
.profile-portrait {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 180px 180px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
}

.expert-image-stage img,
.profile-portrait img {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: calc(100% - 20px);
  object-fit: contain;
  object-position: center bottom;
}

.expert-portrait figcaption,
.profile-portrait figcaption {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  text-align: center;
}

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

.fact-grid-compact > div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
}

.fact-grid-compact strong,
.fact-grid-compact span {
  display: block;
}

.fact-grid-compact strong {
  color: #f0b494;
}

.fact-grid-compact span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.3;
}

.rate-card > span,
.pricing-basis-card > span,
.package-card > span,
.setting-card > span,
.question-matrix article > span,
.article-card > span,
.role-path > span {
  display: block;
  margin-bottom: 15px;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.rate-card > strong,
.pricing-basis-card > strong,
.setting-card > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.15;
}

.rate-card-featured,
.pricing-basis-featured,
.setting-card-featured,
.package-featured {
  border-color: var(--forest-2);
  box-shadow: inset 0 5px 0 var(--forest), var(--shadow-small);
}

.section-link-row {
  margin-top: 28px;
  text-align: right;
}

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

.article-card h2,
.article-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.article-card a,
.source-links a,
.related-panel a {
  color: var(--forest-2);
  font-weight: 740;
  text-underline-offset: 4px;
}

.cta-panel-light {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
}

.page-hero-foundation::before,
.contact-hero::before,
.profile-hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 42%, rgba(200, 111, 67, 0.22), transparent 30%);
  content: "";
}

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

.question-matrix article {
  box-shadow: none;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(20, 32, 29, 0.15);
  grid-template-columns: 54px minmax(0, 1fr);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3,
.process-list p {
  margin-bottom: 7px;
}

.process-list small {
  color: var(--forest-2);
  font-weight: 700;
}

.boundary-grid,
.transfer-list,
.team-role-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boundary-grid article,
.transfer-list article,
.team-role-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.boundary-grid p,
.transfer-list p,
.team-role-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.85rem;
  line-height: 1.45;
}

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

.setting-card small,
.pricing-basis-card small,
.package-duration {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.evidence-panel {
  padding: clamp(35px, 6vw, 65px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 25px;
}

.visual-figure-wrap {
  max-width: 1040px;
}

.house-photo {
  margin: 0;
}

.house-photo img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.house-photo figcaption,
.editorial-figure figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.role-path-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-path {
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.role-path ul {
  padding-left: 20px;
}

.role-path li + li {
  margin-top: 6px;
}

.role-path small {
  display: block;
  margin-top: 23px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--forest-2);
  font-weight: 700;
}

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

.pricing-note {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 17px 20px;
  border-radius: 13px;
  color: var(--forest);
  background: var(--sage-light);
  text-align: center;
}

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

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card .button,
.package-card .text-link {
  margin-top: auto;
}

.cost-factor-list,
.do-not-list,
.compact-list,
.article-role-list {
  padding-left: 0;
  list-style: none;
}

.cost-factor-list li,
.do-not-list li,
.compact-list li,
.article-role-list li {
  position: relative;
  padding: 14px 0 14px 31px;
  border-bottom: 1px solid var(--line);
}

.cost-factor-list li::before,
.do-not-list li::before,
.compact-list li::before,
.article-role-list li::before {
  position: absolute;
  top: 18px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.profile-hero {
  padding-bottom: 0;
}

.profile-hero-grid {
  align-items: end;
}

.profile-hero .profile-portrait {
  min-height: 400px;
}

.credential-strip {
  display: grid;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credential-strip > div {
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.credential-strip > div:last-child {
  border-right: 0;
}

.credential-strip strong,
.credential-strip span {
  display: block;
}

.credential-strip strong {
  color: var(--forest);
  font-size: 1.15rem;
}

.credential-strip span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

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

.principle-grid article > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
}

.team-role-grid {
  grid-template-columns: 1fr;
}

.team-role-grid article > span {
  color: #f0b494;
  font-size: 1.5rem;
}

.author-links {
  display: grid;
  gap: 10px;
}

.author-links a {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.author-links strong,
.author-links span {
  display: block;
}

.author-links span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.knowledge-feature-card {
  overflow: hidden;
  padding: clamp(35px, 6vw, 70px);
  border-radius: 30px;
  color: var(--white);
  background: var(--forest);
  grid-template-columns: minmax(0, 1fr) 230px;
}

.knowledge-feature-card h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.knowledge-feature-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
}

.article-kicker {
  display: block;
  margin-bottom: 17px;
  color: #f0b494;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-symbol {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.feature-symbol span {
  color: #f0b494;
  font-size: 7rem;
  font-weight: 730;
  line-height: 1;
}

.author-box figure {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  margin: 0;
  border-radius: 180px 180px 22px 22px;
  background: var(--forest);
}

.author-box figure img {
  position: absolute;
  inset: 15px 0 0;
  width: 100%;
  height: calc(100% - 15px);
  object-fit: contain;
  object-position: center bottom;
}

.author-box figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px 16px 15px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10, 35, 29, 0.93));
  font-size: 0.82rem;
  text-align: center;
}

.article-header {
  padding: 82px 0 88px;
  color: var(--white);
  background: var(--forest);
}

.article-header-sage {
  background: #244c40;
}

.article-header-copper {
  background: #6e3524;
}

.article-header h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.article-header .lead {
  color: rgba(255, 255, 255, 0.76);
}

.article-byline,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.article-layout {
  display: grid;
  width: min(calc(100% - 40px), 1100px);
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
  margin: 0 auto;
  padding: 90px 0 110px;
  grid-template-columns: 220px minmax(0, 760px);
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.article-toc strong {
  margin-bottom: 6px;
}

.article-toc a {
  color: var(--ink-soft);
  font-size: 0.81rem;
  line-height: 1.35;
  text-underline-offset: 3px;
}

/* Seitenspalte im Beitrag: Inhalt, Material, Seminarangebot */
.article-rail {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  display: grid;
  gap: 14px;
  max-height: calc(100vh - var(--header-height) - 50px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.article-rail .article-toc {
  position: static;
  top: auto;
}

.rail-card {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.rail-label {
  margin: 0;
  color: var(--copper-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rail-card strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.rail-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

.rail-format {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.rail-card .button {
  justify-self: start;
  margin-top: 3px;
  padding: 9px 15px;
  font-size: 0.79rem;
}

.rail-note {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

/* Seminarkasten: erscheint erst, wenn der Beitrag zur Haelfte gelesen ist */
.rail-seminar {
  border-color: transparent;
  color: var(--white);
  background: var(--forest);
}

.rail-seminar .rail-label { color: #f0b494; }
.rail-seminar p { color: rgba(255, 255, 255, 0.78); }

.rail-seminar a {
  justify-self: start;
  margin-top: 3px;
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

/* Ohne JavaScript bleibt der Kasten sichtbar; das Skript blendet ihn aus
   und wieder ein. Das hidden-Attribut nimmt ihn auch aus der Vorlesereihenfolge. */
.rail-seminar[hidden] { display: none; }

.rail-seminar.is-visible { animation: rail-einblenden 0.35s ease both; }

@keyframes rail-einblenden {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rail-seminar.is-visible { animation: none; }
}

.article-content section {
  scroll-margin-top: calc(var(--header-height) + 25px);
}

.article-content section + section {
  margin-top: 70px;
  padding-top: 3px;
}

.article-content h2 {
  margin-bottom: 25px;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
}

.article-content h3 {
  margin-top: 37px;
}

.article-content p,
.article-content li {
  color: #34423e;
  font-size: 1.05rem;
}

.callout,
.related-panel {
  margin: 35px 0;
  padding: 26px 28px;
  border-left: 5px solid var(--copper);
  border-radius: 0 14px 14px 0;
  background: var(--sage-light);
}

.callout p,
.related-panel p {
  margin: 7px 0 0;
}

.numbered-content-list {
  padding-left: 25px;
}

.numbered-content-list li {
  padding: 8px 0 8px 8px;
}

.source-note,
.source-list {
  padding: 17px 20px;
  border-radius: 12px;
  background: var(--paper-2);
  font-size: 0.86rem !important;
}

.source-list li + li {
  margin-top: 9px;
}

.article-quadrants {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-quadrants > * {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
}

.local-badge {
  justify-self: end;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--sage-light);
}

.local-badge strong,
.local-badge span {
  display: block;
}

.local-badge span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.contact-intro {
  align-items: start;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.direct-contact-card {
  display: grid;
  overflow: hidden;
  align-items: center;
  margin-top: 35px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 120px minmax(0, 1fr);
}

.direct-contact-card figure {
  position: relative;
  min-height: 190px;
  margin: 0;
}

.direct-contact-card figure img {
  position: absolute;
  inset: 8px 0 0;
  width: 100%;
  height: calc(100% - 8px);
  object-fit: contain;
  object-position: center bottom;
}

.direct-contact-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 4px 7px;
  background: linear-gradient(transparent, rgba(10, 35, 29, 0.92));
  font-size: 0.62rem;
  text-align: center;
}

.direct-contact-card > div {
  display: grid;
  gap: 6px;
  padding: 20px;
}

.direct-contact-card a {
  color: #f0b494;
  font-weight: 700;
}

.contact-form-card {
  padding: clamp(25px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-card fieldset {
  min-width: 0;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.contact-form-card legend {
  width: 100%;
  margin-bottom: 15px;
  font-weight: 740;
}

.contact-choice-grid label,
.assessment-options label {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 15px 15px 15px 47px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  cursor: pointer;
}

.contact-choice-grid label input,
.assessment-options label input {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.contact-choice-grid label:has(input:checked),
.assessment-options label:has(input:checked) {
  border-color: var(--forest);
  background: var(--sage-light);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.contact-choice-grid label strong,
.contact-choice-grid label span,
.assessment-options label span {
  display: block;
}

.contact-choice-grid label span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

.contact-choice-grid label strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.field > span {
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 740;
}

.field textarea {
  font: inherit;
}

.contact-method-hint,
.form-fallback {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 0.81rem;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--forest);
}

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

.form-alert {
  margin-bottom: 25px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.form-alert p {
  margin: 5px 0 0;
}

.form-alert-success {
  border-color: #7aa486;
  background: #e3f0e6;
}

.form-alert-error {
  border-color: #d7a495;
  background: #fff0eb;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.text-button {
  min-height: 44px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--forest-2);
  cursor: pointer;
  font-weight: 740;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.assessment-step legend {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.assessment-step legend > span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.result-panel {
  align-items: center;
  grid-template-columns: 220px minmax(0, 1fr);
}

.result-package {
  display: block;
  color: var(--forest-2);
}

.notice-copper {
  border-left-color: var(--copper);
  background: #fff0e7;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-updated {
  margin-top: 60px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.narrow-center {
  max-width: 820px;
  text-align: center;
}

.narrow-center h1,
.narrow-center .lead,
.narrow-center .button-row {
  margin-inline: auto;
}

@media (max-width: 1080px) {
  :root { --header-height: 70px; }

  .nav-toggle {
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 101;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 25px 20px 45px;
    background: var(--paper);
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
  }

  .site-nav > a:not(.button) {
    min-height: 50px;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
  }

  .site-nav .button {
    margin: 24px 0 0;
  }

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

  .hero-home .hero-grid > div:first-child {
    max-width: 820px;
  }

  .hero-model {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

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

  .credential-strip > div:nth-child(2) {
    border-right: 0;
  }

  .credential-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .house-layout,
  .expert-home-grid,
  .profile-hero-grid,
  .author-box,
  .contact-intro,
  .evidence-panel {
    grid-template-columns: 1fr;
  }

  .method-intro {
    position: static;
  }

  .house-stack {
    width: 100%;
  }

  .expert-portrait,
  .profile-portrait,
  .author-box figure {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .profile-hero .profile-portrait {
    min-height: 400px;
  }

  .pricing-basis-grid,
  .package-grid,
  .rate-grid,
  .setting-grid,
  .article-card-grid,
  .article-card-grid-wide {
    grid-template-columns: 1fr;
  }

  .role-path-grid {
    grid-template-columns: 1fr;
  }

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

  .article-toc {
    position: static;
  }

  .article-rail {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .knowledge-feature-card {
    grid-template-columns: 1fr;
  }

  .feature-symbol {
    width: 150px;
    height: 150px;
    justify-self: end;
  }

  .feature-symbol span {
    font-size: 5rem;
  }

  .local-badge {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .concern-grid,
  .question-matrix,
  .principle-grid,
  .boundary-grid,
  .transfer-list,
  .article-quadrants,
  .fact-grid-compact {
    grid-template-columns: 1fr;
  }

  .house-stack::before {
    left: 33px;
  }

  .house-level {
    min-height: 90px;
    gap: 12px;
    padding: 12px;
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .house-roof {
    margin-inline: 0;
    border-radius: 40px 40px 14px 14px;
  }

  .house-level strong {
    font-size: 0.92rem;
  }

  .house-level p {
    font-size: 0.75rem;
  }

  .expert-image-stage {
    min-height: 440px;
  }

  .credential-strip {
    grid-template-columns: 1fr;
  }

  .credential-strip > div,
  .credential-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credential-strip > div:last-child {
    border-bottom: 0;
  }

  .article-layout {
    width: min(calc(100% - 28px), 1100px);
    padding: 65px 0 80px;
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .contact-form-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .contact-choice-grid,
  .assessment-options,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .result-panel {
    grid-template-columns: 1fr;
  }

  .result-score {
    width: 155px;
    height: 155px;
    border-width: 13px;
    font-size: 2rem;
  }

  .assessment-body {
    min-height: 0;
    padding: 25px 17px;
  }

  .assessment-header {
    padding: 18px;
  }

  .assessment-step legend {
    font-size: 1.55rem;
  }

  .direct-contact-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .feature-symbol {
    width: 110px;
    height: 110px;
  }

  .feature-symbol span {
    font-size: 3.7rem;
  }
}
