/* ====================================================================
   Mikle Hager-Adam — modern editorial wellness layout
   ==================================================================== */

:root {
  /* Opt out of Android/Samsung forced dark mode — it turned the orange
     accent surfaces near-black on phones (client feedback 07/2026). */
  color-scheme: only light;

  --c-bg: #FBF2E8;
  --c-bg-2: #F4E6D2;
  --c-bg-tint: #FCEBDB;       /* peach tint for alt sections */
  --c-bg-cool: #E8EEEE;       /* cool sage tint for alt sections */
  --c-ink: #1B130C;
  --c-ink-2: #4A3A2D;
  --c-mute: #8A7864;
  --c-accent: #fa6c2d;        /* primary — vivid orange */
  --c-accent-2: #1F6F7A;      /* complementary deep teal */
  --c-accent-3: #E5A52B;      /* warm gold */
  --c-accent-soft: #FFD9BE;   /* pale peach surface */
  --c-line: rgba(27, 19, 12, 0.12);
  --c-line-strong: rgba(27, 19, 12, 0.22);

  --f-serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --f-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  --pad-x: clamp(20px, 4vw, 80px);
  --pad-y: clamp(72px, 9vw, 140px);
  --max-w: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
a:hover { color: var(--c-accent); }

button { font-family: inherit; cursor: pointer; }

/* ----- photo placeholder ----- */
.ph-photo {
  background: var(--c-bg-2);
  padding: 0;
  align-items: stretch;
}
.ph-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

/* ----- reveal ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in,
[data-reveal][data-revealed] {
  opacity: 1;
  transform: none;
}

/* ====================================================================
   TOP BAR
   ==================================================================== */
.topbar {
  background: var(--c-ink);
  color: var(--c-bg);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9px var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-transform: uppercase;
}
.topbar-loc { opacity: .7; }
.topbar-right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.topbar-right a { opacity: .9; }
.topbar-right a:hover { color: var(--c-accent); opacity: 1; }
.dot { opacity: .35; }

@media (max-width: 720px) {
  .topbar-loc { display: none; }
  .topbar-inner { justify-content: center; font-size: 11px; }
}

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--c-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-ink);
}
.brand-mark {
  color: var(--c-accent);
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--f-serif);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-mute);
  margin-top: 3px;
}

.nav-desktop {
  display: flex;
  gap: 26px;
  margin-left: auto;
  margin-right: 12px;
  font-size: 14px;
}
.nav-desktop a {
  position: relative;
  padding: 4px 0;
  color: var(--c-ink-2);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-desktop a:hover { color: var(--c-ink); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  position: relative;
}
.burger span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.2px;
  background: var(--c-ink);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 18px; }
.burger span:nth-child(3) { top: 23px; }
.burger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px var(--pad-x) 24px;
  gap: 4px;
  border-top: 1px solid var(--c-line);
}
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-serif);
  font-size: 26px;
}
.nav-mobile-cta {
  margin-top: 16px;
  background: var(--c-ink);
  color: var(--c-bg) !important;
  border-radius: var(--r-pill);
  padding: 14px 20px !important;
  text-align: center;
  font-family: var(--f-sans) !important;
  font-size: 14px !important;
  border-bottom: none !important;
}

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-mobile.is-open { display: flex; }
}

/* ====================================================================
   BUTTONS
   ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: transparent;
  color: inherit;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn-primary:hover {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.btn-ghost {
  border-color: var(--c-line-strong);
  color: var(--c-ink);
}
.btn-ghost:hover {
  border-color: var(--c-ink);
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn-block { width: 100%; justify-content: center; padding: 16px 20px; }

/* ====================================================================
   TYPOGRAPHY
   ==================================================================== */
.display, .h-display {
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
}
.display {
  font-size: clamp(36px, 4.4vw, 64px);
  text-wrap: balance;
}
.h-display {
  font-size: clamp(40px, 5.4vw, 80px);
}
.h-display.small {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
}
.display em, .h-display em {
  font-style: italic;
  color: var(--c-accent);
}
.display .ink { color: var(--c-ink); }

.kicker {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 24px;
}
.kicker.light { color: rgba(244, 239, 232, 0.6); }
.h-display.light { color: var(--c-bg); }
.h-display .light { color: var(--c-bg); font-style: italic; }

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--c-ink-2);
  max-width: 56ch;
}
.lede.dark { color: var(--c-ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-accent) 22%, transparent);
}

/* ====================================================================
   SECTION SHELL
   ==================================================================== */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.section-head {
  margin-bottom: 60px;
  max-width: 920px;
}
.section-head.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: none;
}
.section-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--c-ink-2);
  max-width: 56ch;
  margin: 20px 0 0;
  line-height: 1.55;
}
.section-sub.right { margin-top: 0; }

@media (max-width: 760px) {
  .section-head.two-col { grid-template-columns: 1fr; }
}

/* ====================================================================
   PLACEHOLDER IMAGERY
   ==================================================================== */
.ph {
  width: 100%;
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--c-ink) 8%, transparent) 0 1px,
      transparent 1px 14px),
    color-mix(in oklab, var(--c-ink) 6%, var(--c-bg));
  color: var(--c-ink-2);
}
.ph-deep {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--c-ink) 32%, transparent) 0 1px,
      transparent 1px 14px),
    color-mix(in oklab, var(--c-ink) 22%, var(--c-bg-2));
  color: var(--c-ink);
}
.ph-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--c-bg);
  border-radius: 4px;
}

/* ====================================================================
   HERO
   ==================================================================== */
/* Strip between navigation and hero — sprechblasen logo left,
   leg silhouette (old site) bleeding in from the right viewport edge */
.hero-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;  /* logo exactly centered, leg right */
  align-items: center;
  gap: 16px;
  height: min(33vh, 260px);
  min-height: 120px;
  padding: 16px 0 0;
  overflow: hidden;
}
.hero-band-logo {
  grid-column: 2;
  height: min(92%, 240px);
  width: auto;
}
.hero-band-leg {
  grid-column: 3;
  justify-self: end;
  min-width: 0;
  height: min(68%, 184px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
}
.hero-band + .hero { padding-top: clamp(12px, 2vw, 28px); }

@media (max-width: 640px) {
  /* Keep the drawings proportional to the small screen — on phones the
     bubbles/leg dominated the viewport (client feedback 07/2026) */
  .hero-band { height: min(17vh, 120px); min-height: 72px; gap: 8px; padding-top: 8px; }
  .hero-band-logo { height: min(72%, 86px); }
  .hero-band-leg { height: min(48%, 82px); }
}

.hero {
  padding-top: clamp(40px, 6vw, 80px);
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-height: clamp(600px, 80vh, 880px);
}
.hero-copy { max-width: 720px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.hero-meta-k {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--c-ink);
}
.hero-meta-v {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-mute);
  margin-top: 6px;
}

.hero-art {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.hero-art-main { grid-row: 1 / 3; }
.hero-art-main .ph { aspect-ratio: 3/4; }
.hero-art-side { align-self: start; margin-top: 60px; }
.hero-art-side .ph { aspect-ratio: 1/1; }
.hero-art-card {
  grid-column: 2;
  display: block;
  background:
    radial-gradient(130% 140% at 100% 0%, rgba(255, 255, 255, .22) 0%, transparent 55%),
    var(--c-accent);
  color: #fff;
  padding: 20px;
  border-radius: var(--r-md);
  font-size: 13px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
a.hero-art-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px color-mix(in oklab, var(--c-accent) 35%, transparent);
  /* keep text white — the global a:hover would tint it accent-on-accent */
  color: #fff;
}
.hac-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 3px;
}
.hac-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 12px;
}
.hac-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .3);
}
.hac-times {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; min-height: auto; padding-top: 40px; padding-bottom: 0; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-art-side { margin-top: 0; }
}
@media (max-width: 640px) {
  /* Phones: the portrait moves out of the collage and up under the eyebrow
     (see .hero-portrait-m below), so the collage here restacks to
     foot-analysis photo + booking card in one column */
  .hero-art-main { display: none; }
  .hero-art { grid-template-columns: 1fr; }
  .hero-art-side { grid-column: 1; }
  .hero-art-card { grid-column: 1; grid-row: auto; }
}

/* Portrait carried inside .hero-copy, directly below the eyebrow.
   A second instance rather than a reordering: the copy and the collage are
   separate grid items, so no amount of `order` can lift one child of the
   collage above the headline. Only ever one of the two is rendered — this one
   below 640px, the collage one above it — so the image is never duplicated in
   the accessibility tree and the browser only fetches it once. */
.hero-portrait-m { display: none; }
@media (max-width: 640px) {
  .hero-portrait-m {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 20px auto 8px;
  }

  /* Eyebrow: two lines on a phone, not three. The break is driven by how many
     characters fit per line, so the letter-spacing is trimmed along with the
     size — at 0.16em the longest word group still overflows and wraps early. */
  .hero .eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.1em;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 22px;
  }
}


/* ----- marquee ----- */
.marquee {
  margin-top: clamp(40px, 6vw, 80px);
  overflow: hidden;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mha-marquee 36s linear infinite;
}
.marquee-row {
  display: flex;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.01em;
  color: var(--c-ink-2);
  white-space: nowrap;
}
.marquee-row span:nth-child(even) { color: var(--c-accent); }
@keyframes mha-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================================
   VISION / DU
   ==================================================================== */
.section-vision { background: var(--c-bg); }
.du-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.du-card {
  background: var(--c-bg);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s ease;
}
.du-card:hover { background: var(--c-bg-2); }
.du-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}
.du-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.du-card h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.du-card p {
  font-size: 15px;
  color: var(--c-ink-2);
  margin: 0;
  line-height: 1.5;
}

.vision-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}
.vision-cta-line {
  flex: 1;
  height: 1px;
  background: var(--c-line);
}
.vision-cta p {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-style: italic;
  color: var(--c-accent);
  margin: 0;
}

@media (max-width: 980px) {
  .du-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .du-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   METHOD
   ==================================================================== */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.method-art {
  position: sticky;
  top: 100px;
}
.method-art .ph {
  aspect-ratio: 4/5;
}
.method-quote {
  margin-top: 24px;
  padding: 24px;
  background: var(--c-bg-2);
  border-radius: var(--r-md);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--c-ink);
  position: relative;
}
.q-mark {
  display: block;
  font-family: var(--f-serif);
  font-style: normal;
  font-size: 64px;
  line-height: 0.5;
  color: var(--c-accent);
  margin-bottom: 12px;
}

.method-copy .lede { margin: 24px 0 36px; }
.method-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.method-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
}
.method-steps li:last-child { border-bottom: 1px solid var(--c-line); }
.ms-k {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
  padding-top: 8px;
}
.method-steps h4 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 8px;
}
.method-steps p {
  margin: 0;
  color: var(--c-ink-2);
  max-width: 56ch;
}

@media (max-width: 880px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-art { position: static; }
}

/* ====================================================================
   SESSION TIMELINE
   ==================================================================== */
.session-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.session-timeline li {
  background: var(--c-bg);
  padding: 32px 26px 40px;
  position: relative;
}
.session-timeline li::before {
  content: "";
  position: absolute;
  inset: auto 0 auto 0;
  top: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.2,.7,.2,1) .2s;
}
.session-timeline li.is-in::before,
.session-timeline li[data-revealed]::before { transform: scaleX(1); }
.st-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-mute);
  margin-bottom: 16px;
}
.session-timeline h4 {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 10px;
}
.session-timeline p {
  margin: 0;
  font-size: 15px;
  color: var(--c-ink-2);
}

@media (max-width: 900px) {
  .session-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .session-timeline { grid-template-columns: 1fr; }
}

/* ====================================================================
   SERVICES
   ==================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.svc-card:hover {
  border-color: var(--c-ink);
  transform: translateY(-3px);
}
.svc-card.is-accent {
  background:
    radial-gradient(120% 130% at 0% 0%, color-mix(in oklab, var(--c-accent) 22%, transparent) 0%, transparent 60%),
    var(--c-accent-soft);
  color: var(--c-ink);
  border-color: var(--c-accent);
}
.svc-card.is-accent .svc-tag { color: var(--c-accent); }
.svc-card.is-accent ul li { color: var(--c-ink-2); }
.svc-card.is-accent ul li::before { background: var(--c-accent); }
.svc-card.is-accent .svc-bottom { border-color: var(--c-line-strong); }
.svc-card.is-accent a:hover { color: var(--c-accent); }

.svc-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.svc-tag { color: var(--c-accent); }
.svc-dur { color: var(--c-mute); }
.svc-card h3 {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}
.svc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--c-ink-2);
}
.svc-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--c-accent);
}
.svc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.svc-price {
  font-family: var(--f-serif);
  font-size: 30px;
}
.svc-bottom a {
  font-size: 13px;
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.section-testimonials {
  background: var(--c-bg);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section-testimonials .section-head {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad-x);
  margin-bottom: 48px;
}
.t-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  background: transparent;
  color: var(--c-ink);
  font-size: 18px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.t-btn:hover { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }
.t-count {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.t-count span { color: var(--c-mute); }

.t-track {
  display: flex;
  gap: 20px;
  padding: 8px var(--pad-x) 8px var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* manual swipes snap with the same edge gap */
  scroll-padding-inline: var(--pad-x);
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 min(520px, 86vw);
  scroll-snap-align: start;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.t-card.is-active {
  background:
    radial-gradient(120% 130% at 0% 0%, color-mix(in oklab, var(--c-accent) 22%, transparent) 0%, transparent 60%),
    var(--c-accent-soft);
  color: var(--c-ink);
  border-color: var(--c-accent);
  transform: scale(1.02);
}
.t-card.is-active .t-topic { color: var(--c-accent); }
/* colorful cycle — teal and gold variants */
.t-track .t-card.is-active:nth-child(3n+2) {
  background:
    radial-gradient(120% 130% at 0% 0%, color-mix(in oklab, var(--c-accent-2) 20%, transparent) 0%, transparent 60%),
    color-mix(in oklab, var(--c-accent-2) 14%, var(--c-bg));
  border-color: var(--c-accent-2);
}
.t-track .t-card.is-active:nth-child(3n+2) .t-topic,
.t-track .t-card.is-active:nth-child(3n+2) .t-quote-mark { color: var(--c-accent-2); }
.t-track .t-card.is-active:nth-child(3n+3) {
  background:
    radial-gradient(120% 130% at 0% 0%, color-mix(in oklab, var(--c-accent-3) 24%, transparent) 0%, transparent 60%),
    color-mix(in oklab, var(--c-accent-3) 16%, var(--c-bg));
  border-color: var(--c-accent-3);
}
.t-track .t-card.is-active:nth-child(3n+3) .t-topic,
.t-track .t-card.is-active:nth-child(3n+3) .t-quote-mark { color: var(--c-accent-3); }
.t-quote-mark {
  font-family: var(--f-serif);
  font-size: 64px;
  line-height: 0.4;
  color: var(--c-accent);
}
.t-quote {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  margin: 0;
}
.t-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t-name {
  font-family: var(--f-serif);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}
.t-topic { color: var(--c-mute); }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-line-strong);
  border: none;
  padding: 0;
  transition: background .25s ease, transform .25s ease;
}
.t-dot.is-active {
  background: var(--c-accent);
  transform: scale(1.4);
}

/* ====================================================================
   ABOUT
   ==================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-copy .h-display { margin-bottom: 32px; }
.about-art { position: relative; }
.about-art .ph { aspect-ratio: 3/4; }
.about-art-cap {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.about-facts > div { display: flex; flex-direction: column; gap: 4px; }
.about-facts dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.about-facts dd {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 20px;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   FAQ
   ==================================================================== */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
}
.faq-q:hover { color: var(--c-accent); }
.faq-icon {
  font-family: var(--f-sans);
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1);
}
.faq-a > div {
  overflow: hidden;
}
.faq-a p {
  margin: 0 0 26px;
  max-width: 70ch;
  color: var(--c-ink-2);
  font-size: 16px;
}

/* ====================================================================
   CONTACT
   ==================================================================== */
.section-contact {
  background: var(--c-ink);
  color: var(--c-bg);
  max-width: none;
  margin: 0;
}
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: start;
}
.contact-info {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 232, .12);
}
.ci-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, .55);
}
.ci-v {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--c-bg);
  line-height: 1.3;
}
a.ci-v:hover { color: var(--c-accent); }

.contact-form {
  background: rgba(244, 239, 232, .04);
  border: 1px solid rgba(244, 239, 232, .12);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row.two > div { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, .55);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 239, 232, .22);
  padding: 10px 0;
  color: var(--c-bg);
  font-family: var(--f-serif);
  font-size: 20px;
  outline: none;
  transition: border-color .25s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-accent);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244, 239, 232, .35);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: transparent;
  border: 1px solid rgba(244, 239, 232, .22);
  color: var(--c-bg);
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--r-pill);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.chip:hover { border-color: var(--c-bg); }
.chip.is-active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
}
.contact-form .btn-primary {
  background: var(--c-bg);
  color: var(--c-ink);
}
.contact-form .btn-primary:hover {
  background: var(--c-accent);
  color: var(--c-bg);
}
.form-fine {
  font-size: 12px;
  color: rgba(244, 239, 232, .55);
  margin: 0;
}
.form-fine a { text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fs-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bg);
}
.fs-mark.big { width: 80px; height: 80px; }
.form-success h3 {
  font-family: var(--f-serif);
  font-size: 32px;
  margin: 0;
}
.form-success p { margin: 0; color: rgba(244, 239, 232, .7); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ====================================================================
   NEWSLETTER
   ==================================================================== */
.section-newsletter {
  background: var(--c-bg-2);
  max-width: none;
  margin: 0;
}
.nl-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
}
.nl-form {
  display: flex;
  gap: 12px;
  background: var(--c-bg);
  padding: 8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
}
.nl-form input {
  flex: 1;
  min-width: 0; /* let the pill shrink on narrow screens instead of overflowing */
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
}
.nl-done {
  padding: 18px;
  font-style: italic;
  color: var(--c-ink-2);
}
@media (max-width: 720px) {
  .nl-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  /* Stack the signup: full-width field above a full-width button */
  .nl-form { flex-direction: column; gap: 8px; border-radius: var(--r-lg); }
  .nl-form input { width: 100%; text-align: center; }
  .nl-form .btn { width: 100%; justify-content: center; }
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.footer-mark {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
}
.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand .brand-name {
  font-family: var(--f-serif);
  font-size: 28px;
}
.footer-brand .brand-sub {
  margin-top: 8px;
  color: var(--c-mute);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--c-ink-2);
}
.footer-base {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-x);
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================================
   PAGE HERO (subpages)
   ==================================================================== */
.page-hero {
  padding: clamp(120px, 13vw, 180px) var(--pad-x) clamp(60px, 7vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.page-hero-inner { max-width: 980px; }
.page-hero .h-display { margin-top: 12px; }
.page-hero .lede { margin-top: 28px; }

.crumbs {
  display: flex;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 28px;
}
.crumbs a:hover { color: var(--c-ink); }

/* nav active */
.nav-desktop a.is-active,
.nav-desktop a[aria-current="page"] {
  color: var(--c-ink);
}
.nav-desktop a.is-active::after,
.nav-desktop a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--c-accent);
  height: 1.5px;
}
.nav-mobile a.is-active { color: var(--c-accent); }

/* ====================================================================
   CTA BAND (dark section)
   ==================================================================== */
.section-cta-band {
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--c-ink);
  color: var(--c-bg);
}
.cta-band {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.btn-ghost.light {
  border-color: rgba(244, 239, 232, 0.22);
  color: var(--c-bg);
}
.btn-ghost.light:hover {
  border-color: var(--c-bg);
  background: var(--c-bg);
  color: var(--c-ink);
}
.section-cta-band .btn-primary {
  background: var(--c-bg);
  color: var(--c-ink);
}
.section-cta-band .btn-primary:hover {
  background: var(--c-accent);
  color: var(--c-bg);
}
@media (max-width: 780px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-actions { justify-content: flex-start; }
}

/* ====================================================================
   METHODE — principles + anwendungen
   ==================================================================== */
.prin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.prin-card {
  background: var(--c-bg);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s ease;
}
.prin-card:hover { background: var(--c-bg-2); }
.prin-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}
.prin-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--c-mute);
}
.prin-card h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.prin-card p {
  font-size: 15px;
  color: var(--c-ink-2);
  margin: 0;
}
@media (max-width: 820px) {
  .prin-grid { grid-template-columns: 1fr; }
}

.anw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.anw-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s ease, transform .3s ease;
}
.anw-card:hover { border-color: var(--c-ink); transform: translateY(-3px); }
.anw-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}
.anw-card h3 {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.anw-card p {
  font-size: 14px;
  color: var(--c-ink-2);
  margin: 0;
}
@media (max-width: 880px) { .anw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .anw-grid { grid-template-columns: 1fr; } }

/* ====================================================================
   SITZUNG — grid + detail timeline
   ==================================================================== */
.sitzung-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.session-timeline-detail .st-num { color: var(--c-accent); }
@media (max-width: 860px) {
  .sitzung-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   AROMAOELE
   ==================================================================== */
.aroma-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.aroma-art .ph { aspect-ratio: 1/1; }
@media (max-width: 760px) {
  .aroma-intro { grid-template-columns: 1fr; }
}

.oil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.oil-card {
  background: var(--c-bg);
  padding: 30px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background .3s ease;
}
.oil-card:hover { background: var(--c-bg-2); }
.oil-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
}
.oil-card h3 {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}
.oil-card p {
  font-size: 13px;
  color: var(--c-ink-2);
  margin: 0;
}
.oil-line {
  height: 1px;
  background: var(--c-accent);
  margin-top: 12px;
  width: 24px;
}
@media (max-width: 820px) { .oil-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .oil-grid { grid-template-columns: 1fr; } }

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.angebot-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s ease;
}
.angebot-card:hover { border-color: var(--c-ink); }
.angebot-card h3 {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.angebot-card p {
  font-size: 14px;
  color: var(--c-ink-2);
  margin: 0;
  flex: 1;
}
.angebot-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.angebot-foot > span { color: var(--c-accent); }
@media (max-width: 820px) { .angebote-grid { grid-template-columns: 1fr; } }

/* ====================================================================
   LEISTUNGEN — extra
   ==================================================================== */
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1150px) {
  .services-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .services-grid-3, .services-grid-2 { grid-template-columns: 1fr 1fr; }
  /* Kartenkopf (Bezeichnung + Dauer) am Handy besser lesbar */
  .svc-top { font-size: 13px; }
}
@media (max-width: 560px) {
  .services-grid-3, .services-grid-4, .services-grid-2 { grid-template-columns: 1fr; }
}

.svc-card-lg { padding: 32px 28px; }
.svc-card-lg h3 { font-size: 32px; }
.svc-desc {
  font-size: 14px;
  color: var(--c-ink-2);
  margin: 0;
}
.svc-card.is-accent .svc-desc { color: var(--c-ink-2); }

.link-arrow {
  background: transparent;
  border: none;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  padding: 0;
}
.link-arrow:hover { color: var(--c-accent); }

.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.paket-card {
  background: var(--c-bg);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.paket-card h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}
.paket-price {
  font-family: var(--f-serif);
  font-size: 56px;
  line-height: 1;
  margin: 8px 0 0;
}
.paket-note {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.paket-card p {
  font-size: 14px;
  color: var(--c-ink-2);
  margin: 0;
}
@media (max-width: 820px) { .paket-grid { grid-template-columns: 1fr; } }

.firmen-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.firmen-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.firmen-l h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 4px;
}
.firmen-l p { color: var(--c-ink-2); margin: 0; max-width: 56ch; }
.firmen-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.firmen-r a { color: var(--c-ink); }
.firmen-r a:hover { color: var(--c-accent); }
@media (max-width: 720px) {
  .firmen-list li { grid-template-columns: 1fr; }
  .firmen-r { align-items: flex-start; flex-direction: row; gap: 16px; }
}

/* ====================================================================
   EVENTS
   ==================================================================== */
.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.event-row {
  display: grid;
  grid-template-columns: 110px 1fr 232px;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
  transition: background .25s ease;
}
.event-row:hover { background: color-mix(in oklab, var(--c-accent) 4%, transparent); }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--c-accent);
  border-bottom: 1px solid var(--c-accent);
  color: var(--c-accent);
}
.event-day {
  font-family: var(--f-serif);
  font-size: 48px;
  line-height: 1;
}
.event-mon {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}
.event-body h3 {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.1;
}
.event-body p {
  margin: 0;
  color: var(--c-ink-2);
  max-width: 60ch;
}
.event-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 12px;
}
.event-tag {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  letter-spacing: 0.12em;
}
.event-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  padding-right: 32px;
}
.event-price {
  font-family: var(--f-serif);
  font-size: 28px;
}
.event-spots {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.btn-sm { padding: 8px 14px; font-size: 12px; }
@media (max-width: 860px) {
  .event-row { grid-template-columns: 90px 1fr; }
  .event-side { grid-column: 2; align-items: flex-start; text-align: left; flex-direction: row; flex-wrap: wrap; gap: 14px; padding-right: 0; }
}

/* Expandable event — click the row to reveal all dates */
.event-row.is-expandable { cursor: pointer; }
.event-toggle {
  margin-top: 18px;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  cursor: pointer;
}
.event-toggle:hover { opacity: .72; }
.event-dates {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  max-width: 56ch;
}
.event-dates li {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  padding: 9px 12px;
  border-radius: var(--r-sm);
  background: color-mix(in oklab, var(--c-accent) 8%, var(--c-bg));
  border: 1px solid color-mix(in oklab, var(--c-accent) 20%, transparent);
}
@media (max-width: 560px) {
  .event-dates { grid-template-columns: 1fr; }
}

.past-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.past-list li {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.past-t { color: var(--c-ink); font-family: var(--f-serif); font-size: 18px; letter-spacing: 0; text-transform: none; }
@media (max-width: 720px) {
  .past-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ====================================================================
   UEBER MICH
   ==================================================================== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  max-width: var(--max-w);
}
.about-hero-art .ph { aspect-ratio: 3/4; max-width: 420px; margin-left: auto; }
.about-hero-art .about-art-cap { max-width: 420px; margin-left: auto; }
@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; align-items: start; }
  .about-hero-art .ph,
  .about-hero-art .about-art-cap { margin-left: 0; }
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.bio-meta {
  position: sticky;
  top: 100px;
}
.bio-text p {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--c-ink);
  margin: 0 0 24px;
}
.bio-text em {
  font-style: italic;
  color: var(--c-accent);
}
@media (max-width: 880px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-meta { position: static; }
}

.path-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.path-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  align-items: start;
}
.path-list li:last-child { border-bottom: 1px solid var(--c-line); }
.path-y {
  font-family: var(--f-serif);
  font-size: 42px;
  color: var(--c-accent);
  line-height: 1;
}
.path-body h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 6px;
}
.path-body p {
  margin: 0;
  color: var(--c-ink-2);
  max-width: 60ch;
}
@media (max-width: 660px) {
  .path-list li { grid-template-columns: 1fr; gap: 8px; }
  .path-y { font-size: 28px; }
}

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.press-list li { border-bottom: 1px solid var(--c-line); }
.press-list a {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 28px;
  padding: 24px 0;
  align-items: center;
  transition: padding .25s ease;
}
.press-list a:hover { padding-left: 16px; color: var(--c-accent); }
.press-t {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.press-n {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--c-ink);
}
.press-arrow { font-size: 18px; color: var(--c-accent); }
.press-list a:hover .press-n { color: var(--c-accent); }
@media (max-width: 720px) {
  .press-list a { grid-template-columns: 1fr auto; gap: 8px; }
  .press-t { grid-column: 1; }
  .press-n { grid-column: 1 / -1; }
  .press-arrow { grid-row: 1; grid-column: 2; }
}

/* ====================================================================
   KONTAKT PAGE
   ==================================================================== */
.section-contact-page {
  padding-top: clamp(72px, 9vw, 140px);
  padding-bottom: clamp(72px, 9vw, 140px);
  scroll-margin-top: 80px;
}
.section-contact-page .contact-grid {
  gap: clamp(60px, 9vw, 160px);
  align-items: start;
}
@media (max-width: 900px) {
  .section-contact-page .contact-grid { gap: clamp(40px, 8vw, 80px); }
}
.section-map {
  max-width: none;
  margin: 0;
  padding: 0;
}
.map-wrap {
  position: relative;
  min-height: 460px;
  background: var(--c-bg-2);
  overflow: hidden;
}
.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.8) sepia(.08);
}
.map-overlay {
  position: absolute;
  left: clamp(20px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 32px;
  max-width: 360px;
  z-index: 2;
}
.map-overlay h3 { margin: 8px 0 12px; }
.map-overlay p {
  margin: 0;
  color: var(--c-ink-2);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .map-wrap { min-height: 520px; display: flex; flex-direction: column; }
  .map-overlay {
    position: static;
    transform: none;
    margin: 24px;
  }
  .map-embed { position: static; flex: 1; min-height: 280px; }
}

/* ====================================================================
   FULL-BLEED IMAGE BAND
   ==================================================================== */
.section-bleed {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 5vw, 80px);
}
.section-bleed .ph {
  border-radius: var(--r-md);
  overflow: hidden;
  max-height: 600px;
}
.section-bleed .ph-photo img { object-position: 50% 30%; }

/* ====================================================================
   SITZUNG · PROCESS GALLERY
   ==================================================================== */
.section-process {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section-process .section-head {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad-x);
  margin-bottom: 48px;
}
.process-track {
  display: flex;
  gap: 20px;
  padding: 8px var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.process-track::-webkit-scrollbar { display: none; }
.process-card {
  flex: 0 0 min(440px, 80vw);
  scroll-snap-align: start;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease;
}
.process-card.is-active {
  transform: scale(1.02);
  border-color: var(--c-accent);
}
.process-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-bg-2);
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.process-card:hover .process-img img { transform: scale(1.03); }
.process-num {
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--c-bg);
  color: var(--c-ink);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.process-card.is-active .process-num {
  background: var(--c-accent);
  color: var(--c-bg);
}
.process-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-body h4 {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
.process-body p {
  margin: 0;
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.process-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
  padding: 0 var(--pad-x);
}

/* ====================================================================
   AROMAOELE · doTERRA PARTNER BADGE
   ==================================================================== */
.partner-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  background: var(--c-bg-2);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 56px);
}
.partner-text h3 { margin: 4px 0 16px; }
.partner-text p {
  font-size: 16px;
  color: var(--c-ink-2);
  margin: 0 0 24px;
  max-width: 56ch;
}
.partner-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 40px 30px;
  min-height: 180px;
}
.partner-badge img {
  max-width: 240px;
  width: 100%;
  height: auto;
  filter: contrast(0.95);
}
@media (max-width: 760px) {
  .partner-card { grid-template-columns: 1fr; }
}

/* ====================================================================
   BOOKING MODAL
   ==================================================================== */
.mha-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 27, 22, .55);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: mha-fadeIn .25s ease;
}
@keyframes mha-fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mha-modal {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  max-width: 720px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: mha-modalIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes mha-modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.mha-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  background: transparent;
  color: var(--c-ink);
  font-size: 22px;
  line-height: 1;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.mha-modal-close:hover { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }
.mha-modal-head { margin-bottom: 28px; }
.mha-modal-head .kicker { margin-bottom: 12px; }
.mha-modal-body { display: flex; flex-direction: column; gap: 20px; }

.cal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cal-day {
  background: var(--c-bg-2);
  border-radius: var(--r-md);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.cal-day.is-empty { opacity: .4; }
.cal-day-h {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.cal-day-times { display: flex; flex-direction: column; gap: 6px; }
.time-pill {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 6px 8px;
  font-size: 13px;
  color: var(--c-ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.time-pill:hover { border-color: var(--c-ink); }
.time-pill.is-active {
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}
.muted { color: var(--c-mute); font-size: 14px; }
.mha-modal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  margin-top: 8px;
  flex-wrap: wrap;
}
.mha-modal-foot > span {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.mha-modal .form-row input,
.mha-modal .form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-line);
  padding: 10px 0;
  font-family: var(--f-serif);
  font-size: 20px;
  color: var(--c-ink);
  outline: none;
  resize: vertical;
}
.mha-modal .form-row input:focus,
.mha-modal .form-row textarea:focus { border-color: var(--c-accent); }
.mha-modal .form-row label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.booking-summary {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-2);
}
.mha-modal-success {
  text-align: center;
  align-items: center;
  padding: 30px 0;
}
.mha-modal-success p { font-size: 18px; }

@media (max-width: 600px) {
  .mha-modal { padding: 24px; }
  .cal { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================================
   COLOR RHYTHM — secondary accents woven through the page
   ==================================================================== */

/* Marquee — rotate orange / teal / gold every three words */
.marquee-row span { color: var(--c-ink-2); }
.marquee-row span:nth-child(3n+2) { color: var(--c-accent); }
.marquee-row span:nth-child(3n+3) { color: var(--c-accent-2); font-style: italic; }
.marquee-row span:nth-child(6n+5) { color: var(--c-accent-3); }

/* Vision DU-cards: rotate label color, soften peachy hover */
.du-grid .du-card:nth-child(4n+1) .du-k { color: var(--c-accent); }
.du-grid .du-card:nth-child(4n+2) .du-k { color: var(--c-accent-2); }
.du-grid .du-card:nth-child(4n+3) .du-k { color: var(--c-accent-3); }
.du-grid .du-card:nth-child(4n+4) .du-k { color: var(--c-accent); }
.du-grid .du-card:hover { background: var(--c-bg-tint); }

/* Method principles: cycle eyebrow color + italic tag color */
.prin-grid .prin-card:nth-child(3n+1) .prin-k { color: var(--c-accent); }
.prin-grid .prin-card:nth-child(3n+2) .prin-k { color: var(--c-accent-2); }
.prin-grid .prin-card:nth-child(3n+3) .prin-k { color: var(--c-accent-3); }
.prin-grid .prin-card:nth-child(3n+2) .prin-tag { color: var(--c-accent-2); opacity: .85; }
.prin-grid .prin-card:nth-child(3n+3) .prin-tag { color: var(--c-accent-3); opacity: .9; }

/* Aromaöle / oil cards: rotate eyebrow + underline */
.oil-grid .oil-card:nth-child(3n+1) .oil-k { color: var(--c-accent); }
.oil-grid .oil-card:nth-child(3n+1) .oil-line { background: var(--c-accent); }
.oil-grid .oil-card:nth-child(3n+2) .oil-k { color: var(--c-accent-2); }
.oil-grid .oil-card:nth-child(3n+2) .oil-line { background: var(--c-accent-2); }
.oil-grid .oil-card:nth-child(3n+3) .oil-k { color: var(--c-accent-3); }
.oil-grid .oil-card:nth-child(3n+3) .oil-line { background: var(--c-accent-3); }

/* Anwendungen / numbered cards */
.anw-grid .anw-card:nth-child(3n+2) .anw-num { color: var(--c-accent-2); }
.anw-grid .anw-card:nth-child(3n+3) .anw-num { color: var(--c-accent-3); }

/* Session timeline: alternate top-bar color so the row reads as a melody */
.session-timeline li:nth-child(4n+2)::before { background: var(--c-accent-2); }
.session-timeline li:nth-child(4n+3)::before { background: var(--c-accent-3); }
.session-timeline li:nth-child(4n+1) .st-num { color: var(--c-accent); }
.session-timeline li:nth-child(4n+2) .st-num { color: var(--c-accent-2); }
.session-timeline li:nth-child(4n+3) .st-num { color: var(--c-accent-3); }

/* Path / Über-mich years */
.path-list li:nth-child(3n+2) .path-y { color: var(--c-accent-2); }
.path-list li:nth-child(3n+3) .path-y { color: var(--c-accent-3); }

/* Press list arrows */
.press-list li:nth-child(3n+2) .press-arrow { color: var(--c-accent-2); }
.press-list li:nth-child(3n+3) .press-arrow { color: var(--c-accent-3); }

/* Services price color cycles for visual rhythm */
.services-grid .svc-card:not(.is-accent):nth-child(3n+2) .svc-price { color: var(--c-accent-2); }
.services-grid .svc-card:not(.is-accent):nth-child(3n+3) .svc-price { color: var(--c-accent-3); }
.services-grid .svc-card:not(.is-accent):nth-child(3n+2) ul li::before { background: var(--c-accent-2); }
.services-grid .svc-card:not(.is-accent):nth-child(3n+3) ul li::before { background: var(--c-accent-3); }

/* Framed fields get a soft, subtly colored fill
   (Mikle: "die eingerahmten Felder dezent farbig hinterlegen") */
.du-grid .du-card:nth-child(4n+1),
.prin-grid .prin-card:nth-child(3n+1),
.anw-grid .anw-card:nth-child(3n+1),
.services-grid .svc-card:not(.is-accent):nth-child(3n+1) {
  background: color-mix(in oklab, var(--c-accent) 7%, var(--c-bg));
}
.du-grid .du-card:nth-child(4n+2),
.prin-grid .prin-card:nth-child(3n+2),
.anw-grid .anw-card:nth-child(3n+2),
.services-grid .svc-card:not(.is-accent):nth-child(3n+2) {
  background: color-mix(in oklab, var(--c-accent-2) 6%, var(--c-bg));
}
.du-grid .du-card:nth-child(4n+3),
.du-grid .du-card:nth-child(4n+4),
.prin-grid .prin-card:nth-child(3n+3),
.anw-grid .anw-card:nth-child(3n+3),
.services-grid .svc-card:not(.is-accent):nth-child(3n+3) {
  background: color-mix(in oklab, var(--c-accent-3) 8%, var(--c-bg));
}

/* Section background variants — gentle tinted bands for vertical rhythm */
.section-tint-peach { background: var(--c-bg-tint); }
.section-tint-cool  { background: var(--c-bg-cool); }
.section-tint-peach,
.section-tint-cool {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.section-tint-peach > .section-inner,
.section-tint-cool > .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

/* Newsletter band picks up the peach so it feels warm and inviting */
.section-newsletter {
  background:
    radial-gradient(120% 160% at 0% 0%, var(--c-accent-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--c-bg-tint), var(--c-bg-2));
}
.nl-form {
  box-shadow: 0 12px 32px -20px rgba(27, 19, 12, .45);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nl-form:focus-within {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-accent) 20%, transparent);
}

/* Testimonials band — subtle peach surface so the dark active card pops */
.section-testimonials { background: var(--c-bg-tint); }
.t-card { background: var(--c-bg); }

/* CTA band — keep dark but warm the hover swap */
.cta-band-actions .btn-primary { background: var(--c-bg); color: var(--c-ink); }
.cta-band-actions .btn-primary:hover { background: var(--c-accent); color: #fff; }

/* Eyebrow dot — slightly larger glow ring with the new vivid orange */
.eyebrow-dot {
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-accent) 28%, transparent);
}

/* Brand mark: full logo shown (no badge halo) — enlarged per client feedback */

/* Method quote — teal mark for a small color counterpoint */
.method-quote .q-mark { color: var(--c-accent-2); }

/* Event row hover — soft teal wash on the cool side of the page */
.event-row:hover { background: color-mix(in oklab, var(--c-accent-2) 5%, transparent); }
.events-list .event-row:nth-child(even) .event-date {
  border-color: var(--c-accent-2);
  color: var(--c-accent-2);
}

/* Paket pricing — first card stays orange, others rotate */
.paket-grid .paket-card:nth-child(2) .paket-price { color: var(--c-accent-2); }
.paket-grid .paket-card:nth-child(2) .paket-note  { color: var(--c-accent-2); }
.paket-grid .paket-card:nth-child(3) .paket-price { color: var(--c-accent-3); }
.paket-grid .paket-card:nth-child(3) .paket-note  { color: var(--c-accent-3); }

/* Underline animation on desktop nav uses accent */
.nav-desktop a::after { background: var(--c-accent); }

/* Vision-cta italic line gets a softer teal undertone */
.vision-cta p {
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Legal / long-form text pages (Impressum, Datenschutz, AGB) ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  margin: 44px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin: 26px 0 6px;
}
.legal p, .legal li { font-size: 15.5px; line-height: 1.7; color: var(--c-ink-2); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 1.2em; display: flex; flex-direction: column; gap: 6px; }
.legal a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--c-ink); font-weight: 600; }
.legal .legal-note {
  border: 1px solid var(--c-line-strong);
  background: var(--c-accent-soft);
  color: var(--c-ink);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 36px;
}
.legal .legal-updated {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-mute);
}

/* ====================================================================
   FORM ERROR + STICKY BOOKING BUTTON + THEMEN STRIP (feedback 07/2026)
   ==================================================================== */
.form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(200, 60, 30, .4);
  background: rgba(200, 60, 30, .08);
  font-size: 13.5px;
  line-height: 1.5;
}
.form-error a { text-decoration: underline; text-underline-offset: 2px; }

/* Sticky "Jetzt Termin buchen" — mobile only; on desktop the sticky
   header CTA is always in view. Sits under header (50) and modal (100). */
.sticky-book {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  border: 0;
  border-radius: var(--r-pill);
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(27, 19, 12, .28);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .sticky-book { display: block; }
}
@media print {
  .sticky-book { display: none; }
}

/* Official Grinberg Method® certification badge (2:1 SVG) */
.gm-badge {
  display: block;
  height: 58px;
  width: auto;
}
.hero-meta .gm-badge { height: 52px; }
.footer-gm-badge { height: 62px; margin-top: 16px; }

/* Typische Themen — numbered tiles on the Leistungen page, echoing the
   prin/anw card language with the rotating accent tints */
.section-themen { padding-top: 0; }
.section-themen .section-head { margin-bottom: 28px; }
.themen-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.themen-card {
  display: flex;
  align-items: baseline;
  gap: 14px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition: transform .3s ease, border-color .3s ease;
}
.themen-card:hover { transform: translateY(-3px); border-color: var(--c-line-strong); }
.themen-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  flex: none;
}
.themen-t {
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.15;
}
.themen-grid li:nth-child(3n+1) { background: color-mix(in oklab, var(--c-accent) 7%, var(--c-bg)); }
.themen-grid li:nth-child(3n+2) { background: color-mix(in oklab, var(--c-accent-2) 6%, var(--c-bg)); }
.themen-grid li:nth-child(3n+3) { background: color-mix(in oklab, var(--c-accent-3) 8%, var(--c-bg)); }
.themen-grid li:nth-child(3n+2) .themen-num { color: var(--c-accent-2); }
.themen-grid li:nth-child(3n+3) .themen-num { color: var(--c-accent-3); }
@media (max-width: 880px) { .themen-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) {
  .themen-grid { grid-template-columns: 1fr; }
  .themen-card { padding: 16px 18px; }
  .themen-t { font-size: 20px; }
}

/* ====================================================================
   NEWS — teaser cards on News & Events + single-post article layout
   ==================================================================== */
.news-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 26px 26px 22px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: color-mix(in oklab, var(--c-accent) 5%, var(--c-bg));
  transition: transform .3s ease, border-color .3s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  color: inherit;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.news-tag {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 3px 8px;
  border-radius: var(--r-sm);
}
.news-card h3 {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.news-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-ink-2);
  flex: 1;
}
.news-more {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* Single post */
.article-hero .h-display { max-width: 22ch; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.article-tag {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 3px 8px;
  border-radius: var(--r-sm);
}
.section-article { padding-top: 0; }
.article-prose {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-ink-2);
}
.article-prose p { margin: 0 0 18px; }
.article-prose h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  color: var(--c-ink);
  margin: 36px 0 14px;
}
.article-prose ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-prose li::marker { color: var(--c-accent); }
.article-prose a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-prose strong { color: var(--c-ink); font-weight: 600; }
.article-prose blockquote {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--c-accent);
  font-family: var(--f-serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--c-ink);
}
.article-prose blockquote footer {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.article-back { max-width: 680px; margin: 36px 0 0; }

/* Newsletter fine print */
.nl-fine {
  margin: 10px 2px 0;
  font-size: 12.5px;
  color: var(--c-mute);
}
.nl-fine a { text-decoration: underline; text-underline-offset: 2px; }

/* ====================================================================
   MOBILE REFINEMENTS — responsive polish & centering
   ==================================================================== */

/* Long contact values (email, @handle) must wrap instead of clipping off-screen */
.ci-v { overflow-wrap: anywhere; }

@media (max-width: 600px) {
  /* Topbar → keep only the tap-to-call number, drop email/Facebook/dots */
  .topbar-right .dot,
  .topbar-right a[href^="mailto"],
  .topbar-right a[href^="http"] { display: none; }
  .topbar-inner { justify-content: center; }

  /* Header → logo + name + menu; hide the redundant CTA so the name fits on one line */
  .header-cta .btn { display: none; }
  .header-inner { gap: 14px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 18px; }

  /* Hero copy: centered with full-width, stacked buttons */
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { text-align: center; }
  .hero-meta .gm-badge { margin-left: auto; margin-right: auto; }

  /* Hero art: single column, centered — portrait first, then foot photo, then card */
  .hero-art { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
  .hero-art-main { order: 1; grid-row: auto; width: 100%; max-width: 300px; }
  .hero-art-side { order: 2; width: 100%; max-width: 300px; }
  .hero-art-card { order: 3; grid-column: 1; width: 100%; max-width: 420px; }

  /* Inner-page hero + section headings centered (about-hero keeps its own layout) */
  .page-hero-inner:not(.about-hero-grid) { text-align: center; }
  .page-hero-inner:not(.about-hero-grid) .lede { margin-left: auto; margin-right: auto; }
  .page-hero-inner:not(.about-hero-grid) .crumbs { justify-content: center; }
  .section-head { text-align: center; }
  .section-head .section-sub,
  .section-sub.right { margin-left: auto; margin-right: auto; text-align: center; }

  /* Contact info: stack label over value so long values wrap */
  .contact-info li { grid-template-columns: 1fr; gap: 4px; }
}
