/* Automatisch aus dem geprüften lokalen 19-Seiten-Prototyp erzeugt. Nicht direkt bearbeiten. */
:root {
  --ink: #4d4c48;
  --ink-deep: #282927;
  --ink-soft: #65645f;
  --paper: #f5f3ed;
  --paper-strong: #fffefa;
  --sand: #e3e0d7;
  --sand-deep: #c9c5b9;
  --sage: #97967d;
  --sage-light: #d9d7c9;
  --ochre: #e2d071;
  --ochre-dark: #6b632f;
  --ochre-pale: #f4efd6;
  --text: #383937;
  --muted: #6c6c68;
  --white: #ffffff;
  --line: rgba(77, 76, 72, 0.16);
  --shadow: 0 24px 70px rgba(40, 41, 39, 0.14);
  --radius-sm: 10px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --masthead-gradient: linear-gradient(118deg, #2d3028 0%, #252820 52%, #1d201b 100%);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --impulse-gold: url("data:image/svg+xml,%3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox='0 0 64 18'%3E%3Cpath d='M1 9h13l4-4 5 9 6-13 7 16 6-11 5 6 4-3h12' fill='none' stroke='%23e2d071' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.prototype-note {
  position: relative;
  z-index: 50;
  background-color: #252820;
  background-image: var(--masthead-gradient);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prototype-note__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
}

.prototype-note__contact { display: flex; gap: 24px; }
.prototype-note a { color: var(--white); text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #252820;
  background-image: var(--masthead-gradient);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled { border-color: rgba(255, 255, 255, 0.12); box-shadow: 0 8px 28px rgba(40, 41, 39, 0.16); }

.header-inner { display: flex; align-items: center; gap: 32px; min-height: 108px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-logo { width: 228px; height: auto; }
.brand-logo--footer { width: 250px; }

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--ochre);
  border-radius: 50%;
  border-left-color: transparent;
}

.brand-mark span { font-family: var(--serif); font-size: 15px; font-weight: 700; letter-spacing: -0.06em; }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { color: var(--ink); font-family: var(--serif); font-size: 19px; font-weight: 600; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; color: rgba(255, 255, 255, 0.88); font-size: 14px; font-weight: 600; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--ochre); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--ink-deep); box-shadow: 0 12px 24px rgba(40, 41, 39, 0.16); }
.button--small { min-height: 46px; padding: 10px 19px; font-size: 13px; }
.header-cta { border-color: var(--ochre); background: var(--ochre); color: var(--ink-deep); }
.header-cta:hover { background: var(--white); color: var(--ink-deep); }
.button--sand { border-color: var(--sand-deep); background: var(--sand); color: var(--ink-deep); }
.button--sand:hover { background: var(--white); }

.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link span { font-size: 19px; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -2px); }

.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--white); transition: transform 160ms ease, opacity 160ms ease; }

.hero { position: relative; overflow: hidden; padding: 86px 0 0; }
.hero::before { content: ""; position: absolute; inset: 0; background: none; opacity: 0.055; filter: grayscale(1); mix-blend-mode: multiply; pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 76px; }
.hero-copy { padding: 34px 0 70px; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow > span { width: 52px; height: 16px; background: var(--impulse-gold) center / contain no-repeat; }
.eyebrow--light { color: rgba(255, 255, 255, 0.68); }

h1, h2, h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; }
h1 { max-width: 760px; font-size: clamp(50px, 5.25vw, 78px); }
h2 { font-size: clamp(40px, 4vw, 62px); }
h3 { font-size: 28px; }

.hero-lead { max-width: 650px; margin: 30px 0 34px; color: var(--ink-soft); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.subpage-hero .text-link { color: var(--white); }
.subpage-hero .text-link:hover,
.subpage-hero .text-link:focus-visible { color: var(--ochre); }
.hero-microcopy { margin: 15px 0 0 20px; color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; justify-self: end; width: min(100%, 480px); }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 0.82; border-radius: 230px 230px 34px 34px; background: var(--sand); box-shadow: var(--shadow); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(40, 41, 39, 0.24)); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(0.78) contrast(1.02); }
.hero-caption { position: absolute; right: 28px; bottom: 20px; z-index: 2; margin: 0; color: var(--white); font-family: var(--serif); font-size: 18px; line-height: 1.35; text-align: right; }
.hero-caption span { font-family: var(--sans); font-size: 10px; letter-spacing: 0.04em; }
.hero-badge { position: absolute; top: 26%; left: -52px; z-index: 3; display: grid; grid-template-rows: repeat(3, auto); align-content: center; justify-items: center; gap: 4px; width: 112px; height: 112px; padding: 7px; border: 8px solid var(--paper); border-radius: 50%; background: var(--ochre); color: var(--ink-deep); box-shadow: 0 14px 32px rgba(40, 41, 39, 0.18); text-align: center; line-height: 1.05; }
.hero-badge span, .hero-badge small { display: block; max-width: 100%; text-transform: uppercase; }
.hero-badge span { font-size: 9px; letter-spacing: 0.05em; }
.hero-badge small { font-size: 8px; letter-spacing: 0.035em; white-space: nowrap; }
.hero-badge strong { font-family: var(--serif); font-size: 27px; line-height: 0.95; }

.trust-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 46px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip > div { display: flex; align-items: center; gap: 14px; padding: 24px 20px; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { padding-left: 0; }
.trust-strip > div:last-child { border-right: 0; }
.trust-icon { display: grid; flex: 0 0 36px; place-items: center; width: 36px; height: 36px; border: 1px solid var(--sage); border-radius: 50%; color: var(--ink); }
.trust-strip p { display: grid; margin: 0; line-height: 1.25; }
.trust-strip strong { color: var(--ink); font-size: 13px; }
.trust-strip small { margin-top: 5px; color: var(--muted); font-size: 10px; }

.section { padding: 120px 0; }
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 610px; margin: 24px 0 0; color: var(--muted); }
.section-heading--split { display: grid; max-width: none; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 80px; }
.section-heading--split > p { margin: 0 0 8px; }

.concerns { background: var(--paper-strong); }
.concern-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.concern-card { position: relative; display: grid; min-height: 260px; grid-template-columns: auto 1fr auto; align-items: start; gap: 28px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.concern-card::before { content: ""; position: absolute; right: -42px; bottom: -64px; width: 150px; height: 150px; border: 1px solid rgba(77, 76, 72, 0.12); border-radius: 50%; }
.concern-card:hover { z-index: 2; transform: translateY(-4px); box-shadow: var(--shadow); }
.concern-card--feature { background: var(--sand); }
.card-number { color: var(--ochre-dark); font-family: var(--serif); font-size: 14px; }
.concern-card div { align-self: end; }
.concern-card p { max-width: 410px; margin: 17px 0 0; color: var(--muted); font-size: 14px; }
.card-arrow { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); font-size: 19px; }
.center-link { margin-top: 32px; text-align: center; }

.control-section { overflow: hidden; background: var(--ink-deep); color: rgba(255, 255, 255, 0.76); }
.control-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 100px; }
.control-copy h2 { color: var(--white); }
.control-copy > p:not(.eyebrow) { max-width: 680px; margin: 28px 0; }
.check-list { display: grid; gap: 12px; margin: 0 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ochre); font-weight: 800; }
.control-visual { position: relative; display: grid; min-height: 470px; place-items: center; }
.control-circle { position: absolute; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; }
.control-circle--outer { width: 430px; height: 430px; }
.control-circle--middle { width: 310px; height: 310px; border-color: rgba(226, 208, 113, 0.52); }
.control-circle--inner { display: grid; width: 150px; height: 150px; place-items: center; border-color: var(--sand); background: var(--sand); color: var(--ink); }
.control-circle--inner span { font-family: var(--serif); font-size: 44px; }
.control-visual p { position: absolute; right: 10px; bottom: 32px; margin: 0; color: var(--white); font-family: var(--serif); font-size: 22px; line-height: 1.35; }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: center; gap: 100px; }
.about-image-wrap { position: relative; }
.about-image-wrap > img { width: 100%; aspect-ratio: 0.82; object-fit: cover; object-position: center 20%; border-radius: 220px 220px 24px 24px; filter: saturate(0.7); }
.about-signature { position: absolute; right: -24px; bottom: 34px; padding: 20px 24px; border-radius: var(--radius-sm); background: var(--ochre); color: var(--ink-deep); font-size: 12px; font-weight: 800; line-height: 1.45; box-shadow: var(--shadow); }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.lead-serif { margin: 30px 0 20px; color: var(--ink) !important; font-family: var(--serif); font-size: 22px; line-height: 1.55; }
.qualification-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 34px 0 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.qualification-row div { display: grid; padding: 20px 14px; border-right: 1px solid var(--line); }
.qualification-row div:first-child { padding-left: 0; }
.qualification-row div:last-child { border-right: 0; }
.qualification-row strong { color: var(--ink); font-family: var(--serif); font-size: 24px; }
.qualification-row span { margin-top: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; }

.process-section { background: var(--paper-strong); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 28px; padding: 30px 10px; border-bottom: 1px solid var(--line); transition: background 180ms ease, padding 180ms ease; }
.process-list li:hover { padding-inline: 28px; background: var(--paper); }
.process-number { color: var(--ochre-dark); font-family: var(--serif); }
.process-list h3 { font-size: 24px; }
.process-list p { max-width: 690px; margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.process-list small { min-width: 120px; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-align: right; text-transform: uppercase; }

.reviews-section { background: var(--ink-deep); color: rgba(255, 255, 255, 0.75); }
.reviews-grid { display: grid; grid-template-columns: 1fr 0.8fr 0.8fr; align-items: start; gap: 22px; }
.reviews-intro { padding-right: 38px; }
.reviews-intro h2 { color: var(--white); }
.reviews-intro > p:not(.eyebrow) { margin: 25px 0; }
.rating { display: grid; max-width: 300px; grid-template-columns: auto 1fr; align-items: center; gap: 5px 12px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.rating strong { color: var(--white); }
.rating span { color: var(--ochre); letter-spacing: 0.1em; }
.rating small { grid-column: 1 / -1; font-size: 10px; }
.review-card { min-height: 360px; padding: 34px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.06); }
.review-card--offset { margin-top: 58px; background: var(--sand); color: var(--ink); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; }
.review-card__top span { color: var(--ochre); font-family: var(--serif); font-size: 54px; line-height: 1; }
.review-card__top small { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.review-card blockquote { margin: 54px 0 34px; color: var(--white); font-family: var(--serif); font-size: 26px; line-height: 1.45; }
.review-card--offset blockquote { color: var(--ink); }
.review-card > p { margin: 0; font-size: 12px; font-weight: 800; }

.pricing-section { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 90px; align-items: start; }
.pricing-copy { position: sticky; top: 130px; }
.pricing-copy > p:not(.eyebrow) { color: var(--muted); }
.pricing-copy .pricing-note { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 11px; }
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.price-cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { display: flex; min-height: 500px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-strong); }
.price-card--highlight { background: var(--sand); }
.price-card > span { color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.price-card h3 { margin-top: 60px; }
.price { margin: 28px 0; color: var(--ink); font-family: var(--serif); font-size: 48px; line-height: 1; }
.price--word { font-size: 41px; }
.price span { font-family: var(--sans); font-size: 13px; }
.price-card ul { display: grid; gap: 10px; margin: 0 0 34px; padding: 0; color: var(--muted); font-size: 13px; list-style: none; }
.price-card--highlight ul { color: var(--ink); }
.price-card li { position: relative; padding-left: 18px; }
.price-card li::before { content: "·"; position: absolute; left: 0; color: var(--ochre-dark); font-weight: 900; }
.price-card .button, .price-card .text-link { margin-top: auto; }

.practice-section { padding-top: 0; }
.practice-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--sage-light); }
.practice-image img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: center; filter: saturate(0.65); }
.practice-copy { padding: 78px 64px; }
.practice-copy > p { color: var(--ink); }
.practice-copy address { margin: 28px 0; color: var(--ink); font-family: var(--serif); font-size: 24px; font-style: normal; line-height: 1.45; }
.practice-links { display: flex; flex-wrap: wrap; gap: 22px; }

.faq-section { background: var(--paper-strong); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 50px 26px 0; color: var(--ink); font-family: var(--serif); font-size: 21px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 10px; top: 22px; color: var(--ochre-dark); font-family: var(--sans); font-size: 25px; transition: transform 160ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 12px; padding-right: 60px; color: var(--muted); font-size: 14px; }
.faq-intro > p:not(.eyebrow) { margin: 26px 0 30px; color: var(--muted); }
.faq-related { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.faq-related a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 750; text-decoration: none; }
.faq-related a:hover { color: var(--ochre-dark); }
.faq-answer-link { display: inline-flex; margin-bottom: 24px; color: var(--ink); font-size: 12px; font-weight: 800; text-decoration: none; }
.faq-answer-link:hover { color: var(--ochre-dark); }

.final-cta { position: relative; overflow: hidden; padding: 92px 0 96px; border-top: 1px solid rgba(226, 208, 113, 0.18); background: linear-gradient(118deg, #252820 0%, #1d201b 58%, #151713 100%); color: rgba(255, 255, 255, 0.76); }
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(32deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 50%, transparent 51%), linear-gradient(148deg, transparent 48%, rgba(226, 208, 113, 0.045) 49%, rgba(226, 208, 113, 0.045) 50%, transparent 51%); background-size: 210px 180px, 280px 240px; opacity: 0.65; mask-image: linear-gradient(90deg, transparent 8%, #000 70%); pointer-events: none; }
.final-cta__inner { position: relative; z-index: 2; display: grid; max-width: 1180px; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); grid-template-rows: auto auto auto; column-gap: clamp(54px, 7vw, 112px); text-align: left; }
.final-cta .eyebrow { grid-column: 1; grid-row: 1; justify-content: flex-start; margin-bottom: 18px; }
.final-cta h2 { grid-column: 1; grid-row: 2 / 4; max-width: 720px; color: var(--white); font-size: clamp(42px, 3.7vw, 58px); line-height: 1.04; }
.final-cta__inner > p:not(.eyebrow) { grid-column: 2; grid-row: 2; max-width: 480px; margin: 2px 0 30px; font-size: 17px; line-height: 1.65; }
.final-cta__actions { display: flex; grid-column: 2; grid-row: 3; align-items: center; justify-content: flex-start; gap: 24px; }
.final-cta .button--sand { border-color: var(--ochre); background: var(--ochre); }
.final-cta .button--sand:hover { border-color: var(--white); background: var(--white); }
.final-cta__phone { display: grid; color: var(--white); text-align: left; text-decoration: none; }
.final-cta__phone small { color: rgba(255, 255, 255, 0.62); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.final-cta__phone strong { font-family: var(--serif); font-size: 22px; }
.final-cta__link { display: inline-flex; min-height: 48px; align-items: center; gap: 12px; border-bottom: 1px solid rgba(226, 208, 113, 0.48); color: var(--white); font-size: 13px; font-weight: 750; text-decoration: none; transition: color 180ms ease, border-color 180ms ease; }
.final-cta__link:hover, .final-cta__link:focus-visible { border-color: var(--ochre); color: var(--ochre); }
.final-cta__orbit { display: none; }

.site-footer { padding: 70px 0 24px; background: var(--ink-deep); color: rgba(255, 255, 255, 0.58); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 0.8fr); gap: 46px; }
.brand--footer .brand-mark { border-color: rgba(255, 255, 255, 0.65); color: var(--white); }
.brand--footer .brand-copy strong { color: var(--white); }
.brand--footer .brand-copy small { color: rgba(255, 255, 255, 0.5); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; font-size: 12px; }
.footer-grid > div:first-child p { max-width: 330px; margin: 20px 0 0; }
.footer-grid strong { margin-bottom: 10px; color: var(--white); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-grid a { color: inherit; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 10px; }
.mobile-booking { display: none; }

@media (max-width: 1050px) {
  .brand-logo { width: 190px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 12px; }
  .hero-grid { gap: 50px; }
  .hero-badge { left: -20px; }
  .control-grid, .about-grid { gap: 65px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-intro { grid-column: 1 / -1; max-width: 720px; margin-bottom: 24px; }
  .review-card--offset { margin-top: 0; }
  .pricing-grid { gap: 50px; }
}

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .shell { width: min(100% - 36px, 720px); }
  .header-inner { min-height: 84px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav { position: absolute; inset: 100% 0 auto; display: grid; gap: 0; padding: 18px; border-top: 1px solid rgba(255, 255, 255, 0.12); background: var(--ink); box-shadow: 0 22px 40px rgba(40, 41, 39, 0.2); transform: translateY(-150%); opacity: 0; transition: transform 180ms ease, opacity 180ms ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav a { min-height: 54px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); color: var(--white); font-size: 16px; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 18px; }
  .hero-visual { width: min(100%, 520px); justify-self: center; }
  .portrait-frame { aspect-ratio: 0.9; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-strip > div:first-child { padding-left: 20px; }
  .section { padding: 90px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .control-grid, .about-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .control-visual { min-height: 420px; }
  .about-image-wrap { max-width: 540px; }
  .pricing-copy { position: static; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-image img { min-height: 440px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; font-size: 16px; }
  .shell { width: calc(100% - 32px); }
  .prototype-note__inner { justify-content: center; min-height: 32px; }
  .prototype-note__contact { display: none; }
  .site-header { top: 0; }
  .brand-logo { width: 174px; }
  .header-inner { min-height: 82px; }
  .hero { padding-top: 38px; }
  .hero::before { opacity: 0.05; }
  .hero-copy { padding-top: 10px; }
  h1 { font-size: clamp(42px, 12vw, 57px); }
  h2 { font-size: clamp(36px, 10vw, 48px); }
  h3 { font-size: 25px; }
  .eyebrow { align-items: flex-start; margin-bottom: 19px; font-size: 9px; line-height: 1.45; }
  .eyebrow > span { flex: 0 0 26px; margin-top: 6px; }
  .hero-lead { margin: 24px 0 28px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-microcopy { margin: 13px 0 0; text-align: center; }
  .portrait-frame { aspect-ratio: 0.92; border-radius: 180px 180px 24px 24px; }
  .hero-badge { top: 16%; left: -6px; width: 104px; height: 104px; border-width: 6px; }
  .hero-caption { right: 17px; bottom: 15px; font-size: 15px; }
  .trust-strip { width: 100%; margin-top: 28px; padding-inline: 16px; }
  .trust-strip > div { gap: 10px; padding: 18px 5px; border-right: 0; }
  .trust-strip > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-strip > div:first-child { padding-left: 5px; }
  .trust-icon { flex-basis: 31px; width: 31px; height: 31px; }
  .trust-strip strong { font-size: 11px; }
  .trust-strip small { display: none; }
  .section { padding: 74px 0; }
  .section-heading { margin-bottom: 36px; }
  .concern-grid { grid-template-columns: 1fr; }
  .concern-card { min-height: 225px; padding: 27px; }
  .control-grid { gap: 35px; }
  .control-visual { min-height: 340px; transform: scale(0.9); }
  .control-circle--outer { width: 330px; height: 330px; }
  .control-circle--middle { width: 240px; height: 240px; }
  .control-circle--inner { width: 125px; height: 125px; }
  .control-visual p { right: 0; bottom: 4px; font-size: 18px; }
  .about-grid { gap: 42px; }
  .about-signature { right: 12px; bottom: 18px; }
  .lead-serif { font-size: 19px; }
  .qualification-row { grid-template-columns: 1fr; }
  .qualification-row div, .qualification-row div:first-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .qualification-row div:last-child { border-bottom: 0; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 14px; padding: 25px 0; }
  .process-list small { grid-column: 2; min-width: 0; text-align: left; }
  .process-list li:hover { padding-inline: 0; }
  .reviews-grid, .price-cards { grid-template-columns: 1fr; }
  .reviews-intro { padding-right: 0; }
  .review-card { min-height: 300px; }
  .review-card blockquote { margin-top: 35px; font-size: 23px; }
  .price-card { min-height: 450px; }
  .practice-grid { width: 100%; border-radius: 0; }
  .practice-copy { padding: 56px 24px; }
  .practice-image img { min-height: 300px; }
  .practice-links { align-items: flex-start; flex-direction: column; }
  .faq-grid { gap: 36px; }
  .faq-list summary { font-size: 19px; }
  .faq-list details p { padding-right: 10px; }
  .final-cta { padding: 68px 0 74px; }
  .final-cta__inner { display: block; }
  .final-cta .eyebrow { margin-bottom: 18px; }
  .final-cta h2 { max-width: 640px; font-size: clamp(36px, 10vw, 46px); }
  .final-cta__inner > p:not(.eyebrow) { max-width: 560px; margin: 24px 0 32px; font-size: 16px; }
  .final-cta__actions { align-items: stretch; flex-direction: column; gap: 25px; }
  .final-cta__phone { text-align: left; }
  .final-cta__link { align-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .mobile-booking { position: fixed; right: 12px; bottom: 10px; left: 12px; z-index: 100; display: flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 999px; background: var(--ochre); color: var(--ink-deep); box-shadow: 0 10px 32px rgba(40, 41, 39, 0.28); font-size: 13px; font-weight: 850; text-decoration: none; }
}

/* Dark editorial continuity: the homepage now reads as one brand world. */
:root {
  --night-0: #12140f;
  --night-1: #171a14;
  --night-2: #1d2119;
  --night-3: #24281f;
  --ivory: #f7f2e7;
  --copy-light: rgba(247, 242, 231, 0.74);
  --copy-light-soft: rgba(247, 242, 231, 0.58);
  --line-light: rgba(247, 242, 231, 0.14);
  --line-gold: rgba(226, 208, 113, 0.22);
}

.home-page {
  background: var(--night-0);
  color: var(--copy-light);
}

.home-page main,
.home-page .section {
  color: var(--copy-light);
}

.home-page .section :where(h2, h3, strong),
.home-page .section-heading h2 {
  color: var(--ivory);
}

.home-page .section :where(.eyebrow, .card-number, .process-number) {
  color: var(--ochre);
}

.home-page .section :where(p, small),
.home-page .section-heading > p:last-child,
.home-page .about-copy > p:not(.eyebrow),
.home-page .pricing-copy > p:not(.eyebrow),
.home-page .faq-intro > p:not(.eyebrow) {
  color: var(--copy-light);
}

.home-page .section :where(.text-link, a:not(.button)) {
  color: var(--ivory);
}

.home-page .concerns {
  border-top: 1px solid var(--line-gold);
  background:
    radial-gradient(circle at 86% 12%, rgba(226, 208, 113, 0.1), transparent 30rem),
    linear-gradient(145deg, var(--night-2), var(--night-1));
}

.home-page .concern-card,
.home-page .concern-card--feature {
  border-color: rgba(226, 208, 113, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--night-2);
  color: var(--copy-light);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

.home-page .concern-card :where(h3, .card-arrow),
.home-page .concern-card--feature :where(h3, .card-arrow) {
  color: var(--ivory);
}

.home-page .concern-card p,
.home-page .concern-card--feature p {
  color: var(--copy-light);
}

.home-page .concern-card:hover {
  border-color: rgba(226, 208, 113, 0.42);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.24);
}

.home-page .control-section,
.home-page .reviews-section {
  border-block: 1px solid rgba(226, 208, 113, 0.13);
  background:
    radial-gradient(circle at 76% 22%, rgba(226, 208, 113, 0.11), transparent 30rem),
    linear-gradient(120deg, var(--night-3), var(--night-0));
}

.home-page .about-section,
.home-page .pricing-section {
  border-bottom: 1px solid rgba(226, 208, 113, 0.13);
  background:
    radial-gradient(circle at 9% 12%, rgba(226, 208, 113, 0.09), transparent 26rem),
    linear-gradient(145deg, var(--night-1), #1b1e17);
}

.home-page .about-image-wrap > img {
  padding: 8px;
  border: 1px solid rgba(226, 208, 113, 0.28);
  border-radius: 8px;
  background: rgba(226, 208, 113, 0.05);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.32);
}

.home-page .lead-serif,
.home-page .qualification-row strong,
.home-page .process-list h3,
.home-page .price-card :where(h3, strong),
.home-page .practice-copy :where(h2, address),
.home-page .faq-list summary,
.home-page .faq-related a,
.home-page .faq-answer-link {
  color: var(--ivory) !important;
}

.home-page .qualification-row,
.home-page .qualification-row div,
.home-page .process-list,
.home-page .process-list li,
.home-page .faq-list,
.home-page .faq-list details,
.home-page .faq-related,
.home-page .faq-related a {
  border-color: var(--line-light);
}

.home-page .process-section,
.home-page .faq-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(226, 208, 113, 0.08), transparent 28rem),
    linear-gradient(135deg, var(--night-3), var(--night-2));
}

.home-page .process-list li:hover {
  background: rgba(255, 255, 255, 0.035);
}

.home-page .process-list p,
.home-page .process-list small,
.home-page .faq-list details p,
.home-page .qualification-row span {
  color: var(--copy-light-soft);
}

.home-page .pricing-cards,
.home-page .price-card,
.home-page .practice-grid {
  border-color: rgba(226, 208, 113, 0.17);
}

.home-page .price-card,
.home-page .practice-grid {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--night-2);
  color: var(--copy-light);
}

.home-page .price-card :where(p, li),
.home-page .practice-copy > p {
  color: var(--copy-light);
}

.home-page .practice-section {
  background: var(--night-1);
}

/* Premium homepage direction V2
   Scoped to the homepage so the visual direction can be reviewed without
   changing the already validated subpage prototypes. */
.home-page {
  --ink: #35352f;
  --ink-deep: #151713;
  --ink-soft: #67645d;
  --paper: #f2eee4;
  --paper-strong: #fcfaf4;
  --sand: #e5ded0;
  --ochre: #d6bc62;
  --ochre-dark: #76652d;
  --line: rgba(35, 35, 30, 0.14);
  --shadow: 0 24px 70px rgba(19, 20, 17, 0.12);
  --shadow-soft: 0 16px 48px rgba(19, 20, 17, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;
  background: var(--paper);
}

.home-page .prototype-note {
  background-color: #252820;
  background-image: var(--masthead-gradient);
  border-bottom: 0;
  color: rgba(252, 250, 244, 0.72);
  letter-spacing: 0.08em;
}

.home-page .site-header {
  background-color: #252820;
  background-image: var(--masthead-gradient);
  border-bottom: 0;
  box-shadow: none;
}

.home-page .header-inner {
  min-height: 96px;
}

.home-page .site-nav a {
  color: rgba(252, 250, 244, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  color: #fffdf7;
}

.home-page .nav-cta {
  border-color: rgba(214, 188, 98, 0.72);
  color: #f4df94 !important;
}

.home-page .nav-cta:hover,
.home-page .nav-cta:focus-visible {
  background: var(--ochre);
  color: #171812 !important;
}

.home-page .hero {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 7vw, 112px) 0 0;
  color: #f8f4ea;
  background-color: #252820;
  background-image: var(--masthead-gradient);
}

.home-page .hero::before {
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(32deg, transparent 48%, rgba(248, 244, 234, 0.08) 49%, rgba(248, 244, 234, 0.08) 50%, transparent 51%),
    linear-gradient(148deg, transparent 48%, rgba(226, 208, 113, 0.08) 49%, rgba(226, 208, 113, 0.08) 50%, transparent 51%);
  background-position: center top;
  background-size: 220px 190px, 300px 250px;
  filter: none;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 82%, transparent 100%);
}

.home-page .hero::after {
  position: absolute;
  z-index: -1;
  inset: 22px;
  border: 1px solid rgba(214, 188, 98, 0.18);
  content: "";
  pointer-events: none;
}

.home-page .hero-grid {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.13fr) minmax(360px, 0.87fr);
  gap: clamp(58px, 7vw, 118px);
  align-items: center;
}

.home-page .hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(68px, 7vw, 108px);
}

.home-page .hero .eyebrow {
  margin-bottom: 24px;
  color: #e2cd84;
  letter-spacing: 0.2em;
}

.home-page .hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: #f8f4ea;
  font-size: clamp(3.75rem, 6.2vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.home-page .hero h1 em {
  display: block;
  margin-top: 0.12em;
  color: #ddc879;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
}

.home-page .hero-lead {
  max-width: 630px;
  color: rgba(248, 244, 234, 0.72);
  font-size: clamp(1.06rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}

.home-page .hero-actions {
  margin-top: 34px;
}

.home-page .hero-actions .button {
  min-height: 54px;
  border-radius: 2px;
  background: var(--ochre);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  color: #171812;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .hero-actions .button:hover,
.home-page .hero-actions .button:focus-visible {
  background: #ead58a;
  transform: translateY(-2px);
}

.home-page .hero .text-link {
  color: rgba(248, 244, 234, 0.88);
}

.home-page .hero .text-link:hover,
.home-page .hero .text-link:focus-visible {
  color: #ead58a;
}

.home-page .hero .microcopy {
  color: rgba(248, 244, 234, 0.48);
}

.home-page .hero-visual {
  align-self: center;
  width: min(100%, 560px);
}

.home-page .hero-visual--iceberg {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  isolation: isolate;
}

.home-page .hero-visual--iceberg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.03) saturate(0.9);
  -webkit-mask-image: radial-gradient(ellipse 72% 74% at 52% 48%, #000 56%, rgba(0, 0, 0, 0.96) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 74% at 52% 48%, #000 56%, rgba(0, 0, 0, 0.96) 70%, transparent 100%);
}

.home-page .hero-iceberg__label {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  max-width: 190px;
  padding: 10px 13px 10px 15px;
  border-left: 1px solid rgba(221, 200, 121, 0.76);
  background: linear-gradient(90deg, rgba(12, 13, 11, 0.78), rgba(12, 13, 11, 0.06));
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.76);
}

.home-page .hero-iceberg__label strong {
  color: #ddc879;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .hero-iceberg__label span {
  color: rgba(248, 244, 234, 0.62);
  font-size: 0.66rem;
  line-height: 1.45;
}

.home-page .hero-iceberg__label--conscious {
  top: 12%;
  left: 1%;
}

.home-page .hero-iceberg__label--subconscious {
  top: 53%;
  right: 0;
  padding-right: 15px;
  padding-left: 13px;
  border-right: 1px solid rgba(221, 200, 121, 0.76);
  border-left: 0;
  background: linear-gradient(270deg, rgba(12, 13, 11, 0.78), rgba(12, 13, 11, 0.06));
  text-align: right;
}

.home-page .trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  border-color: rgba(214, 188, 98, 0.22);
  background: rgba(8, 9, 7, 0.34);
  backdrop-filter: blur(10px);
}

.home-page .trust-strip > div {
  border-color: rgba(214, 188, 98, 0.18);
}

.home-page .trust-icon {
  border-color: rgba(214, 188, 98, 0.58);
  color: #ddc879;
}

.home-page .trust-strip strong {
  color: #f8f4ea;
}

.home-page .trust-strip small {
  color: rgba(248, 244, 234, 0.48);
}

.home-page .concerns {
  background:
    linear-gradient(rgba(242, 238, 228, 0.94), rgba(242, 238, 228, 0.94)),
    radial-gradient(circle at 15% 10%, rgba(214, 188, 98, 0.2), transparent 34%);
}

.home-page .section-heading h2 {
  letter-spacing: -0.035em;
}

.home-page .concern-card {
  border: 1px solid rgba(41, 41, 35, 0.12);
  border-radius: 5px;
  background: rgba(252, 250, 244, 0.86);
  box-shadow: 0 18px 54px rgba(25, 26, 22, 0.07);
}

.home-page .concern-card:hover {
  border-color: rgba(118, 101, 45, 0.34);
  box-shadow: 0 24px 64px rgba(25, 26, 22, 0.12);
  transform: translateY(-5px);
}

.home-page .concern-card--feature {
  border-color: rgba(214, 188, 98, 0.28);
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 188, 98, 0.16), transparent 32%),
    #191b17;
  color: #f8f4ea;
}

.home-page .concern-card--feature .card-number,
.home-page .concern-card--feature .card-arrow {
  color: #ddc879;
}

.home-page .concern-card--feature h3 {
  color: #fffdf7;
}

.home-page .concern-card--feature p {
  color: rgba(248, 244, 234, 0.64);
}

.home-page .button,
.home-page .topic-link,
.home-page .price-card,
.home-page .process-card,
.home-page .review-card,
.home-page .faq-item {
  border-radius: 5px;
}

.home-page .control-section,
.home-page .reviews-section,
.home-page .final-cta,
.home-page .site-footer {
  background-color: #151713;
}

@media (max-width: 900px) {
  .home-page .hero {
    padding-top: 58px;
  }

  .home-page .hero::after {
    inset: 12px;
  }

  .home-page .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page .hero-copy {
    padding-bottom: 0;
  }

  .home-page .hero-visual {
    width: min(88%, 500px);
    margin: 0 auto;
  }

  .home-page .hero-visual--iceberg {
    width: min(88vw, 520px);
    margin-top: 10px;
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .home-page .header-inner {
    min-height: 78px;
  }

  .home-page .hero {
    padding-top: 46px;
  }

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

  .home-page .hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 4rem);
    line-height: 1.01;
  }

  .home-page .hero h1 em {
    margin-top: 0.16em;
  }

  .home-page .hero-lead {
    line-height: 1.65;
  }

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

  .home-page .hero-visual {
    width: calc(100% - 30px);
  }

  .home-page .hero-iceberg__label {
    max-width: 155px;
    padding: 8px 9px 8px 11px;
  }

  .home-page .hero-iceberg__label strong {
    font-size: 0.52rem;
  }

  .home-page .hero-iceberg__label span {
    font-size: 0.56rem;
  }

}

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

/* Final cascade for the approved dark editorial direction. */
.home-page {
  background: var(--night-0);
  color: var(--copy-light);
}

.home-page .concerns {
  border-top: 1px solid var(--line-gold);
  background:
    radial-gradient(circle at 86% 12%, rgba(226, 208, 113, 0.1), transparent 30rem),
    linear-gradient(145deg, var(--night-2), var(--night-1));
}

.home-page .concern-card,
.home-page .concern-card--feature {
  border-color: rgba(226, 208, 113, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--night-2);
  color: var(--copy-light);
}

.home-page .about-section,
.home-page .pricing-section,
.home-page .practice-section {
  background:
    radial-gradient(circle at 9% 12%, rgba(226, 208, 113, 0.085), transparent 26rem),
    linear-gradient(145deg, var(--night-1), #1b1e17);
}

.home-page .process-section,
.home-page .faq-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(226, 208, 113, 0.08), transparent 28rem),
    linear-gradient(135deg, var(--night-3), var(--night-2));
}

.home-page .price-card,
.home-page .practice-grid {
  border-color: rgba(226, 208, 113, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--night-2);
}


.subpage-hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding: 94px 0 82px;
  background-color: #252820;
  background-image: var(--masthead-gradient);
  color: rgba(248, 244, 234, 0.78);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(32deg, transparent 48%, rgba(248, 244, 234, 0.08) 49%, rgba(248, 244, 234, 0.08) 50%, transparent 51%),
    linear-gradient(148deg, transparent 48%, rgba(226, 208, 113, 0.08) 49%, rgba(226, 208, 113, 0.08) 50%, transparent 51%);
  background-size: 220px 190px, 300px 250px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 88%, transparent 100%);
  pointer-events: none;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 28px;
  z-index: -1;
  width: min(360px, 32vw);
  height: 90px;
  opacity: 0.28;
  background: var(--impulse-gold) center / contain no-repeat;
  pointer-events: none;
}

.subpage-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.subpage-hero h1 { max-width: 850px; color: #f8f4ea; letter-spacing: -0.04em; }
.subpage-hero .eyebrow { color: var(--ochre); }
.subpage-hero__lead { max-width: 720px; margin: 28px 0 0; color: rgba(248, 244, 234, 0.68); font-size: 20px; }

.draft-flag {
  display: inline-flex;
  margin-top: 30px;
  padding: 8px 13px;
  border: 1px solid rgba(226, 208, 113, 0.28);
  border-radius: 999px;
  background: rgba(12, 13, 11, 0.25);
  color: rgba(248, 244, 234, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subnav {
  border-block: 1px solid rgba(226, 208, 113, 0.16);
  background: #1b1e18;
}

.subnav__inner { display: flex; gap: 30px; overflow-x: auto; padding-block: 18px; }
.subnav a { position: relative; flex: 0 0 auto; color: rgba(248, 244, 234, 0.66); font-size: 12px; font-weight: 750; text-decoration: none; }
.subnav a::before { content: ""; display: inline-block; width: 12px; height: 1px; margin: 0 8px 3px 0; background: rgba(226, 208, 113, 0.62); }
.subnav a:hover, .subnav a:focus-visible { color: var(--ochre); }

.booking-hero { padding: 76px 0 50px; }
.subpage-hero.booking-hero .subpage-hero__inner { max-width: 1180px; }
.subpage-hero.booking-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.03;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.booking-hero .subpage-hero__lead { max-width: 700px; margin-top: 22px; }
.booking-hero__meta {
  margin: 20px 0 0;
  color: var(--ochre);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.editorial-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 86px; }
.editorial-intro { position: sticky; top: 150px; align-self: start; }
.editorial-intro > p:last-child { margin: 26px 0 0; color: var(--muted); }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 25px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}
.service-row:hover { padding-inline: 16px; background: rgba(226, 208, 113, 0.1); }
.service-row__number { color: var(--ochre-dark); font-family: var(--serif); }
.service-row h3 { font-size: 31px; }
.service-row p { max-width: 610px; margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.service-row__arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-bottom: 1px solid rgba(107, 99, 47, 0.54); color: var(--ochre-dark); }

.surface-dark {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(226, 208, 113, 0.11), transparent 27rem),
    linear-gradient(120deg, #252820, #171914);
  color: rgba(255, 255, 255, 0.72);
}
.surface-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(32deg, transparent 48%, rgba(248, 244, 234, 0.07) 49%, rgba(248, 244, 234, 0.07) 50%, transparent 51%),
    linear-gradient(148deg, transparent 48%, rgba(226, 208, 113, 0.07) 49%, rgba(226, 208, 113, 0.07) 50%, transparent 51%);
  background-size: 240px 200px, 320px 260px;
  mask-image: linear-gradient(90deg, transparent, #000 50%, #000);
}
.surface-dark h2, .surface-dark h3 { color: var(--white); }
.surface-dark .eyebrow { color: rgba(255, 255, 255, 0.62); }
.surface-dark .text-link { color: var(--white); }

.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.method-copy > p:not(.eyebrow) { margin: 28px 0 0; }
.method-points { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.method-points li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.method-points span { color: var(--ochre); font-family: var(--serif); }
.method-points strong { display: block; color: var(--white); }
.method-points p { margin: 6px 0 0; font-size: 13px; }

.portrait-editorial { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 90px; align-items: center; }
.portrait-editorial__image { position: relative; }
.portrait-editorial__image img { width: 100%; aspect-ratio: 0.83; object-fit: cover; object-position: center 16%; border-radius: 250px 250px 24px 24px; filter: saturate(0.74); }
.portrait-editorial__quote { position: absolute; right: -35px; bottom: 30px; max-width: 255px; padding: 22px; border-radius: var(--radius-sm); background: var(--ochre); color: var(--ink-deep); font-family: var(--serif); font-size: 19px; line-height: 1.4; box-shadow: var(--shadow); }
.portrait-editorial__copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.value-card { position: relative; min-height: 270px; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); box-shadow: 0 20px 48px rgba(40, 41, 39, 0.06); }
.value-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ochre), transparent 68%); }
.value-card span { color: var(--ochre-dark); font-family: var(--serif); }
.value-card h3 { margin-top: 50px; }
.value-card p { color: var(--muted); font-size: 14px; }

.qualification-list { margin-top: 42px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.qualification-list li { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.qualification-list span { color: var(--ochre); font-family: var(--serif); }

.contact-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 80px; align-items: start; }
.contact-panel { position: relative; overflow: hidden; padding: 42px; border: 1px solid rgba(107, 99, 47, 0.2); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fffefa, #f5f3ed); box-shadow: var(--shadow); }
.contact-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ochre), transparent 68%); }
.contact-details { display: grid; gap: 26px; margin-top: 40px; }
.contact-details div { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-details small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-details a, .contact-details address { color: var(--ink); font-family: var(--serif); font-size: 21px; font-style: normal; text-decoration: none; }

.prototype-form { display: grid; gap: 22px; }
.prototype-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.prototype-form label { display: grid; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 750; }
.prototype-form input, .prototype-form select, .prototype-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}
.prototype-form textarea { min-height: 150px; resize: vertical; }
.prototype-form__consent { grid-template-columns: 22px 1fr !important; align-items: start; font-weight: 500 !important; }
.prototype-form__consent input { min-height: 0; margin-top: 4px; }
.form-status { min-height: 28px; margin: 0; color: var(--ochre-dark); font-size: 13px; }

.blog-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(120deg, #252820, #171914); color: rgba(255, 255, 255, 0.7); }
.blog-feature__visual { min-height: 520px; background: radial-gradient(circle at 52% 44%, rgba(226, 208, 113, 0.26), transparent 18%), linear-gradient(32deg, transparent 48%, rgba(226, 208, 113, 0.1) 49%, rgba(226, 208, 113, 0.1) 50%, transparent 51%), linear-gradient(148deg, transparent 48%, rgba(248, 244, 234, 0.07) 49%, rgba(248, 244, 234, 0.07) 50%, transparent 51%), #22251e; background-size: auto, 170px 150px, 230px 190px, auto; }
.blog-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.blog-feature h2 { color: var(--white); }
.blog-feature__copy > p { margin: 24px 0 32px; }
.blog-feature .text-link { color: var(--white); }
.blog-feature__links { display: grid; gap: 14px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.article-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-card { position: relative; display: flex; min-height: 350px; flex-direction: column; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.article-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ochre), transparent 72%); }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(40, 41, 39, 0.11); }
.article-card__meta { color: var(--ochre-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.article-card h3 { margin-top: 54px; font-size: 29px; }
.article-card p { color: var(--muted); font-size: 14px; }
.article-card__link { margin-top: auto; color: var(--ink); font-size: 13px; font-weight: 800; }
.surface-dark .section-heading > p { color: rgba(255, 255, 255, 0.68); }
.surface-dark .article-card h3 { color: var(--ink); }
.surface-dark .article-card p { color: var(--muted); }
.surface-dark .article-card__link { color: var(--ink); }

.guide-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 86px; align-items: start; }
.guide-toc { position: sticky; top: 148px; padding: 28px; border: 1px solid rgba(107, 99, 47, 0.22); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); box-shadow: 0 18px 42px rgba(40, 41, 39, 0.06); }
.guide-toc strong { display: block; margin-bottom: 18px; color: var(--ink); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.guide-toc nav { display: grid; }
.guide-toc a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; text-decoration: none; }
.guide-toc a:last-child { border-bottom: 0; }
.guide-toc a:hover { color: var(--ochre-dark); }

.guide-body { min-width: 0; }
.guide-section { padding: 0 0 76px; scroll-margin-top: 150px; }
.guide-section + .guide-section { padding-top: 76px; border-top: 1px solid var(--line); }
.guide-section > h2 { max-width: 780px; overflow-wrap: anywhere; hyphens: auto; }
.guide-lead { max-width: 760px; margin: 26px 0; color: var(--ink); font-family: var(--serif); font-size: 23px; line-height: 1.5; }
.guide-section > p:not(.eyebrow):not(.guide-lead) { max-width: 760px; color: var(--muted); }

.song-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(250px, 0.84fr);
  overflow: hidden;
  border: 1px solid rgba(226, 208, 113, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(226, 208, 113, 0.14), transparent 22rem),
    linear-gradient(130deg, #24281f, #12140f 72%);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.3);
}
.song-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(33deg, transparent 48%, rgba(247, 242, 231, 0.1) 49%, rgba(247, 242, 231, 0.1) 50%, transparent 51%),
    linear-gradient(147deg, transparent 48%, rgba(226, 208, 113, 0.09) 49%, rgba(226, 208, 113, 0.09) 50%, transparent 51%);
  background-size: 190px 150px, 250px 210px;
  pointer-events: none;
}
.song-feature__copy {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 4.6vw, 58px);
}
.song-feature__copy h2 {
  max-width: 620px;
  margin-top: 22px;
  color: var(--ivory, #f7f2e7);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  text-wrap: balance;
}
.song-feature__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}
.song-feature__copy .song-feature__lead {
  margin-top: 24px;
  color: var(--ivory, #f7f2e7);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}
.song-feature__action {
  margin-top: 18px;
  border-color: var(--ochre);
  background: var(--ochre);
  color: var(--ink-deep);
}
.song-feature__action:hover,
.song-feature__action:focus-visible {
  border-color: var(--ivory, #f7f2e7);
  background: var(--ivory, #f7f2e7);
  color: var(--ink-deep);
}
.song-feature__privacy {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  color: var(--copy-light-soft, rgba(247, 242, 231, 0.58));
  font-size: 11px;
  line-height: 1.5;
}
.song-feature__visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 440px;
  place-items: center;
  border-left: 1px solid rgba(226, 208, 113, 0.18);
}
.song-feature__pulse {
  position: absolute;
  width: min(72%, 280px);
  height: 92px;
  opacity: 0.86;
  background: var(--impulse-gold) center / contain no-repeat;
}
.song-feature__play {
  position: relative;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(226, 208, 113, 0.62);
  border-radius: 50%;
  background: rgba(18, 20, 15, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}
.song-feature__play::before {
  content: "";
  margin-left: 6px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ochre);
}
.song-feature__visual strong {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: rgba(247, 242, 231, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.definition-card { margin: 34px 0; padding: 30px; border-left: 3px solid var(--ochre); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: linear-gradient(145deg, #fffefa, #f5f3ed); box-shadow: 0 18px 42px rgba(40, 41, 39, 0.05); }
.definition-card small { display: block; margin-bottom: 9px; color: var(--ochre-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.definition-card p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 20px; line-height: 1.5; }

.myth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.myth-card { position: relative; min-height: 220px; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); }
.myth-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, var(--ochre), transparent 70%); }
.myth-card small { color: var(--ochre-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.myth-card h3 { margin-top: 30px; font-size: 25px; }
.myth-card p { color: var(--muted); font-size: 14px; }

.guide-steps { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.guide-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.guide-steps span { color: var(--ochre-dark); font-family: var(--serif); }
.guide-steps strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 23px; font-weight: 500; }
.guide-steps p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.safety-callout { position: relative; overflow: hidden; margin-top: 34px; padding: 34px; border-radius: var(--radius-md); background: radial-gradient(circle at 86% 18%, rgba(226, 208, 113, 0.12), transparent 16rem), linear-gradient(120deg, #252820, #171914); color: rgba(255, 255, 255, 0.72); }
.safety-callout h3 { color: var(--white); }
.safety-callout p { margin-bottom: 0; }
.safety-callout a { color: var(--ochre); }

.evidence-grid { display: grid; gap: 14px; margin-top: 34px; }
.evidence-note { padding: 24px 26px; border: 1px solid var(--line); border-left: 3px solid rgba(226, 208, 113, 0.72); border-radius: var(--radius-sm); background: linear-gradient(145deg, #fffefa, #f5f3ed); }
.evidence-note strong { color: var(--ink); }
.evidence-note p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.sources-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.sources-list a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 750; text-decoration: none; }
.sources-list a:hover { color: var(--ochre-dark); }

.article-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; color: var(--muted); font-size: 12px; }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ochre-dark); }
.article-meta a { color: inherit; font-weight: 750; text-underline-offset: 3px; }
.article-summary { margin: 0 0 56px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-strong); }
.article-summary strong { display: block; margin-bottom: 16px; color: var(--ink); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.article-summary ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--ink-soft); }
.article-summary li::marker { color: var(--ochre-dark); }
.article-note { margin-top: 30px; padding: 25px 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--ochre-pale); }
.article-note strong { color: var(--ink); }
.article-note p { margin: 7px 0 0; color: var(--ink-soft); font-size: 14px; }
.reflection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
.reflection-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-strong); }
.reflection-card span { color: var(--ochre-dark); font-family: var(--serif); font-size: 30px; }
.reflection-card strong { display: block; margin-top: 22px; color: var(--ink); }
.reflection-card p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.related-card { position: relative; display: flex; min-height: 220px; flex-direction: column; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.related-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ochre), transparent 70%); }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(40, 41, 39, 0.1); }
.related-card small { color: var(--ochre-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.related-card h3 { margin-top: 28px; }
.related-card span { margin-top: auto; color: var(--ink); font-size: 13px; font-weight: 800; }

.trust-overview { display: grid; grid-template-columns: 1fr 340px; gap: 90px; align-items: center; }
.trust-overview > div > p:last-child { max-width: 720px; margin-top: 26px; color: var(--muted); }
.trust-stat { display: grid; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-strong); box-shadow: var(--shadow); }
.trust-stat strong { color: var(--ink); font-family: var(--serif); font-size: clamp(70px, 8vw, 112px); font-weight: 400; line-height: 0.9; }
.trust-stat span { margin-top: 18px; color: var(--ink); font-family: var(--serif); font-size: 22px; }
.trust-stat small { margin-top: 18px; color: var(--muted); font-size: 11px; line-height: 1.55; }

.review-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 56px; }
.review-story { min-height: 390px; padding: 42px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.055); }
.review-story--offset { margin-top: 54px; }
.review-story__mark { color: var(--ochre); font-family: var(--serif); font-size: 68px; line-height: 0.7; }
.review-story blockquote { margin: 72px 0 0; color: var(--white); font-family: var(--serif); font-size: clamp(25px, 3vw, 38px); line-height: 1.38; }
.review-source { margin: 42px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 11px; }

.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.principle-grid .value-card { min-height: 300px; }
.surface-dark .principle-grid .value-card { border-color: rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.055); }
.surface-dark .principle-grid .value-card p { color: rgba(255, 255, 255, 0.64); }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.booking-paths { padding-block: 84px 96px; background: var(--paper-strong); }
.path-card { position: relative; display: flex; min-height: 460px; flex-direction: column; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); }
.path-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ochre), transparent 70%); }
.path-card--primary { border-color: var(--ochre); background: var(--ochre-pale); }
.path-card > span { color: var(--ochre-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.path-card h3 { margin-top: 42px; font-size: 30px; }
.path-card p { color: var(--muted); font-size: 14px; }
.path-card ul { display: grid; gap: 9px; margin: 26px 0 34px; padding: 0; color: var(--ink-soft); font-size: 13px; list-style: none; }
.path-card li { position: relative; padding-left: 16px; }
.path-card li::before { content: "·"; position: absolute; left: 0; color: var(--ochre-dark); font-weight: 900; }
.path-card .text-link { margin-top: auto; }

.booking-section, .contact-section { background: var(--paper); }
.booking-section { padding-block: 96px; }
.booking-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 82px; align-items: start; }
.booking-copy h2 {
  max-width: 520px;
  font-size: clamp(44px, 3.6vw, 58px);
  line-height: 1.05;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.booking-layout > div:first-child > p:not(.eyebrow) { max-width: 500px; margin-top: 24px; color: var(--muted); }
.booking-promises { display: grid; gap: 8px; max-width: 440px; margin-top: 28px; }
.booking-promises span {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
}
.booking-promises span::before { content: "✓"; color: var(--ochre-dark); font-size: 14px; font-weight: 900; }
.prototype-form fieldset { display: grid; gap: 18px; margin: 0; padding: 0 0 28px; border: 0; border-bottom: 1px solid var(--line); }
.prototype-form legend { margin-bottom: 20px; color: var(--ink); font-family: var(--serif); font-size: 23px; }
.choice-grid { display: grid; gap: 10px; }
.choice-option { grid-template-columns: 20px 1fr !important; align-items: center; padding: 16px; border: 1px solid var(--sand-deep); border-radius: var(--radius-sm); background: var(--white); cursor: pointer; }
.choice-option:has(input:checked) { border-color: var(--ochre-dark); box-shadow: 0 0 0 2px rgba(126, 111, 44, 0.12); }
.choice-option input { width: 18px; min-height: 18px; margin: 0; accent-color: var(--ochre-dark); }
.choice-option span { display: grid; gap: 3px; }
.choice-option strong { color: var(--ink); }
.choice-option small, .field-help { color: var(--muted); font-size: 11px; font-weight: 500; }

.contact-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.contact-card { position: relative; min-height: 250px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fffefa, #f5f3ed); box-shadow: 0 18px 44px rgba(40, 41, 39, 0.05); }
.contact-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ochre), transparent 70%); }
.contact-card small { color: var(--ochre-dark); font-size: 10px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-card h3 { margin-top: 52px; font-size: 25px; overflow-wrap: anywhere; }
.contact-card h3 a { color: inherit; text-decoration: none; }
.contact-card p { color: var(--muted); font-size: 13px; }

.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 82px; align-items: center; }
.location-visual { position: relative; display: grid; min-height: 560px; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 45%, rgba(226, 208, 113, 0.14), transparent 17rem), linear-gradient(120deg, #252820, #171914); }
.location-visual::before { content: ""; position: absolute; inset: 0; opacity: 0.24; background-image: linear-gradient(32deg, transparent 48%, rgba(248, 244, 234, 0.08) 49%, rgba(248, 244, 234, 0.08) 50%, transparent 51%), linear-gradient(148deg, transparent 48%, rgba(226, 208, 113, 0.08) 49%, rgba(226, 208, 113, 0.08) 50%, transparent 51%); background-size: 180px 150px, 240px 200px; }
.location-visual::after { content: ""; position: absolute; bottom: 48px; width: 46%; height: 64px; opacity: 0.42; background: var(--impulse-gold) center / contain no-repeat; }
.location-visual span { position: relative; z-index: 1; color: var(--white); font-family: var(--serif); font-size: clamp(36px, 5vw, 62px); line-height: 1.02; text-align: center; }
.location-address { margin: 30px 0; color: var(--ink); font-family: var(--serif); font-size: 24px; font-style: normal; line-height: 1.5; }
.route-facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.route-facts div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.route-facts strong { color: var(--ink); }
.route-facts p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .subpage-hero { padding: 64px 0 58px; }
  .booking-hero { padding: 58px 0 42px; }
  .editorial-grid, .method-grid, .portrait-editorial, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .editorial-intro { position: static; }
  .values-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature__visual { min-height: 320px; }
  .portrait-editorial__image { max-width: 560px; }
  .guide-layout { grid-template-columns: 1fr; gap: 54px; }
  .guide-toc { position: static; }
  .song-feature { grid-template-columns: 1fr; }
  .song-feature__visual { min-height: 300px; border-top: 1px solid rgba(226, 208, 113, 0.18); border-left: 0; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-overview, .booking-layout, .location-grid { grid-template-columns: 1fr; gap: 54px; }
  .booking-layout { gap: 40px; }
  .booking-paths { padding-block: 72px 82px; }
  .trust-stat { max-width: 460px; }
  .principle-grid, .path-grid, .contact-card-grid { grid-template-columns: repeat(2, 1fr); }
  .path-card:last-child, .contact-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .subpage-hero { padding: 48px 0; }
  .booking-hero { padding: 42px 0 34px; }
  .subpage-hero.booking-hero h1 { font-size: clamp(36px, 10.5vw, 44px); line-height: 1.04; }
  .subpage-hero__lead { font-size: 17px; }
  .subnav__inner { flex-wrap: wrap; gap: 12px 22px; overflow-x: visible; }
  .subnav a { padding-block: 4px; }
  .service-row { grid-template-columns: 38px 1fr; gap: 14px; }
  .service-row__arrow { display: none; }
  .service-row h3 { font-size: 27px; }
  .values-grid, .article-grid, .prototype-form__row { grid-template-columns: 1fr; }
  .portrait-editorial__quote { right: 10px; bottom: 16px; max-width: 210px; font-size: 16px; }
  .contact-panel { padding: 28px 22px; border-radius: var(--radius-md); }
  .blog-feature__copy { padding: 38px 26px; }
  .qualification-list li { grid-template-columns: 1fr; gap: 6px; }
  .myth-grid, .related-grid, .review-wall, .principle-grid, .path-grid, .contact-card-grid { grid-template-columns: 1fr; }
  .reflection-grid { grid-template-columns: 1fr; }
  .review-story { min-height: 330px; padding: 30px 24px; }
  .review-story--offset { margin-top: 0; }
  .review-story blockquote { margin-top: 48px; }
  .path-card { min-height: 0; }
  .path-card:last-child, .contact-card:last-child { grid-column: auto; }
  .location-visual { min-height: 390px; }
  .guide-section { padding-bottom: 56px; }
  .guide-section + .guide-section { padding-top: 56px; }
  .song-feature__copy { padding: 30px 22px; }
  .song-feature__copy h2 { font-size: clamp(32px, 9vw, 40px); }
  .song-feature__visual { min-height: 250px; }
  .song-feature__play { width: 74px; height: 74px; }
  .definition-card, .safety-callout { padding: 25px 22px; }
  .booking-section { padding-block: 62px; }
  .booking-paths { padding-block: 62px 72px; }
  .booking-copy h2 { font-size: clamp(34px, 9.2vw, 40px); line-height: 1.07; }
  .booking-layout { gap: 34px; }
  .booking-promises { gap: 7px; margin-top: 24px; }
}

/*
 * Dark editorial system for every migrated content page.
 * Tonal graphite/olive sections replace page-sized cream panels while form
 * controls keep a light, familiar input surface for usability.
 */
body:not(.home-page),
body:not(.home-page) main {
  background: var(--night-0, #12140f);
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}

body:not(.home-page) .subpage-hero {
  border-bottom: 1px solid var(--line-gold, rgba(226, 208, 113, 0.22));
  background:
    radial-gradient(circle at 82% 18%, rgba(226, 208, 113, 0.11), transparent 28rem),
    linear-gradient(145deg, var(--night-2, #1d2119), var(--night-1, #171a14));
}

body:not(.home-page) .subnav {
  border-color: rgba(226, 208, 113, 0.15);
  background: rgba(18, 20, 15, 0.96);
}

body:not(.home-page) .section {
  border-bottom: 1px solid rgba(226, 208, 113, 0.1);
  background:
    radial-gradient(circle at 92% 6%, rgba(226, 208, 113, 0.055), transparent 26rem),
    linear-gradient(145deg, var(--night-1, #171a14), #1a1d17);
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}

body:not(.home-page) main > .section:nth-of-type(even) {
  background:
    radial-gradient(circle at 7% 84%, rgba(226, 208, 113, 0.05), transparent 25rem),
    linear-gradient(135deg, var(--night-3, #24281f), var(--night-2, #1d2119));
}

body:not(.home-page) .surface-dark {
  background:
    radial-gradient(circle at 80% 18%, rgba(226, 208, 113, 0.1), transparent 27rem),
    linear-gradient(120deg, var(--night-3, #24281f), var(--night-0, #12140f));
}

body:not(.home-page) .section :where(h2, h3, h4, strong),
body:not(.home-page) .section-heading h2,
body:not(.home-page) .editorial-intro h2,
body:not(.home-page) .guide-section > h2 {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) .section :where(p, li),
body:not(.home-page) .section-heading > p:last-child,
body:not(.home-page) .editorial-intro > p:last-child,
body:not(.home-page) .portrait-editorial__copy > p:not(.eyebrow),
body:not(.home-page) .guide-section > p:not(.eyebrow):not(.guide-lead),
body:not(.home-page) .booking-layout > div:first-child > p:not(.eyebrow),
body:not(.home-page) .trust-overview > div > p:last-child {
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}

body:not(.home-page) .section :where(.eyebrow, .service-row__number, .article-card__meta, .path-card > span, .contact-card small),
body:not(.home-page) .guide-toc a:hover,
body:not(.home-page) .form-status {
  color: var(--ochre);
}

body:not(.home-page) .section :where(.text-link, a:not(.button)) {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) .section :where(.text-link, a:not(.button)):hover {
  color: var(--ochre);
}

body:not(.home-page) :where(.service-list, .service-row, .method-points li, .qualification-list, .qualification-list li, .guide-section + .guide-section, .guide-steps, .guide-steps li, .sources-list a, .route-facts, .route-facts div) {
  border-color: var(--line-light, rgba(247, 242, 231, 0.14));
}

body:not(.home-page) .service-row:hover {
  background: rgba(226, 208, 113, 0.065);
}

body:not(.home-page) .service-row__arrow {
  border-color: rgba(226, 208, 113, 0.46);
  color: var(--ochre);
}

body:not(.home-page) :where(
  .value-card,
  .article-card,
  .guide-toc,
  .definition-card,
  .myth-card,
  .evidence-note,
  .article-summary,
  .article-note,
  .reflection-card,
  .related-card,
  .trust-stat,
  .path-card,
  .contact-card,
  .contact-panel,
  .booking-promises span
) {
  border-color: rgba(226, 208, 113, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--night-2, #1d2119);
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

body:not(.home-page) :where(.article-card, .related-card, .value-card, .path-card, .contact-card, .contact-panel)::before {
  opacity: 0.8;
}

body:not(.home-page) :where(.article-card, .related-card, .value-card, .path-card, .contact-card):hover {
  border-color: rgba(226, 208, 113, 0.42);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.26);
}

body:not(.home-page) :where(
  .value-card,
  .article-card,
  .guide-toc,
  .definition-card,
  .myth-card,
  .evidence-note,
  .article-summary,
  .article-note,
  .reflection-card,
  .related-card,
  .trust-stat,
  .path-card,
  .contact-card,
  .contact-panel
) :where(h2, h3, strong),
body:not(.home-page) :where(.article-card__link, .related-card span, .guide-toc strong, .guide-toc a, .definition-card p, .sources-list a, .location-address, .route-facts strong) {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) .surface-dark .article-card__link {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) :where(
  .value-card,
  .article-card,
  .myth-card,
  .evidence-note,
  .article-summary,
  .article-note,
  .reflection-card,
  .related-card,
  .trust-stat,
  .path-card,
  .contact-card
) :where(p, li, small),
body:not(.home-page) .guide-toc a,
body:not(.home-page) .booking-promises span,
body:not(.home-page) .route-facts p {
  color: var(--copy-light-soft, rgba(247, 242, 231, 0.58));
}

body:not(.home-page) .definition-card,
body:not(.home-page) .evidence-note {
  border-left-color: var(--ochre);
}

body:not(.home-page) .article-note {
  background:
    linear-gradient(145deg, rgba(226, 208, 113, 0.11), rgba(226, 208, 113, 0.035)),
    var(--night-2, #1d2119);
}

body:not(.home-page) .path-card--primary {
  border-color: rgba(226, 208, 113, 0.58);
  background:
    radial-gradient(circle at 90% 8%, rgba(226, 208, 113, 0.13), transparent 15rem),
    linear-gradient(145deg, var(--night-3, #24281f), var(--night-2, #1d2119));
}

body:not(.home-page) :where(.booking-paths, .booking-section, .contact-section) {
  background:
    radial-gradient(circle at 92% 8%, rgba(226, 208, 113, 0.055), transparent 25rem),
    linear-gradient(145deg, var(--night-1, #171a14), #1a1d17);
}

body:not(.home-page) .prototype-form label,
body:not(.home-page) .prototype-form legend,
body:not(.home-page) .choice-option strong,
body:not(.home-page) .contact-details :where(a, address) {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) .contact-details div,
body:not(.home-page) .prototype-form fieldset {
  border-color: var(--line-light, rgba(247, 242, 231, 0.14));
}

body:not(.home-page) .contact-details small,
body:not(.home-page) :where(.choice-option small, .field-help) {
  color: var(--copy-light-soft, rgba(247, 242, 231, 0.58));
}

body:not(.home-page) .choice-option {
  border-color: rgba(226, 208, 113, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}

body:not(.home-page) .choice-option:has(input:checked) {
  border-color: var(--ochre);
  background: rgba(226, 208, 113, 0.08);
  box-shadow: 0 0 0 2px rgba(226, 208, 113, 0.1);
}

body:not(.home-page) .prototype-form :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  border-color: rgba(226, 208, 113, 0.34);
  background: #f7f2e7;
  color: #252820;
}

body:not(.home-page) .prototype-form :where(input, select, textarea)::placeholder {
  color: #68675f;
}

body:not(.home-page) .location-visual,
body:not(.home-page) .blog-feature,
body:not(.home-page) .safety-callout {
  border: 1px solid rgba(226, 208, 113, 0.18);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

body:not(.home-page) .portrait-editorial__image img {
  padding: 8px;
  border: 1px solid rgba(226, 208, 113, 0.28);
  border-radius: 8px;
  background: rgba(226, 208, 113, 0.05);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.32);
}

body:not(.home-page) .final-cta {
  border-top-color: rgba(226, 208, 113, 0.2);
  background:
    radial-gradient(circle at 84% 20%, rgba(226, 208, 113, 0.12), transparent 24rem),
    linear-gradient(120deg, var(--night-3, #24281f), var(--night-0, #12140f));
}

body:not(.home-page) .faq-list summary {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) .faq-list summary::after {
  color: var(--ochre);
}

body:not(.home-page) .faq-list details,
body:not(.home-page) .faq-list,
body:not(.home-page) .faq-related,
body:not(.home-page) .faq-related a {
  border-color: var(--line-light, rgba(247, 242, 231, 0.14));
}

body:not(.home-page) .faq-list details p {
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}

body:not(.home-page) .dmdg-enquiry-form .field-help {
  color: var(--copy-light-soft, rgba(247, 242, 231, 0.58));
}

body:not(.home-page) .portrait-editorial__quote {
  color: #252820;
}

body:not(.home-page) :where(.price-card, .practice-grid) {
  border: 1px solid rgba(226, 208, 113, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--night-2, #1d2119);
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

body:not(.home-page) .price-card--highlight {
  border-color: rgba(226, 208, 113, 0.56);
  background:
    radial-gradient(circle at 90% 8%, rgba(226, 208, 113, 0.13), transparent 15rem),
    linear-gradient(145deg, var(--night-3, #24281f), var(--night-2, #1d2119));
}

body:not(.home-page) .price-card :where(h3, p, li, strong),
body:not(.home-page) .price-card--highlight :where(h3, p, li, strong),
body:not(.home-page) .practice-copy :where(h2, address) {
  color: var(--ivory, #f7f2e7);
}

body:not(.home-page) .price-card ul,
body:not(.home-page) .price-card > span,
body:not(.home-page) .practice-copy > p:not(.eyebrow) {
  color: var(--copy-light, rgba(247, 242, 231, 0.74));
}


/* WordPress-Migrationshärtung: lange deutsche Überschriften dürfen nie abgeschnitten werden. */
.subpage-hero h1 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.guide-section h2,
.guide-section h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 640px) {
  .subpage-hero h1 {
    font-size: clamp(2.25rem, 10vw, 2.85rem);
  }
}
