/* ============================================================
   Unique Beauty & Kosmetik – Schulungen Landingpage
   Visual language matched to client reference (Squarespace demo):
   Instrument Serif display · cream rgb(229,220,206) · ink rgb(72,71,71)
   warm greige/taupe panels · underline text CTAs · giant serif overlays
   ============================================================ */

:root {
  --cream:      rgb(229, 220, 206);
  --greige:     rgb(223, 214, 199);
  --tan:        rgb(205, 193, 173);
  --taupe:      rgb(140, 126, 106);
  --ink:        #000000;
  --ink-soft:   rgb(103, 100, 97);
  --gold-deep:  rgb(150, 116, 66);
  --white:      rgb(250, 247, 242);
  --line:       rgba(72, 71, 71, 0.22);
  --line-soft:  rgba(72, 71, 71, 0.12);

  --radius:     4px;
  --radius-img: 10px;
  --wrap:       1240px;
  --wrap-narrow: 1020px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(22px, 5vw, 60px); }
section[id], header[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--ink); color: var(--white); padding: 12px 18px;
}
.skip-link:focus { left: 0; }

/* ---------- Display type ---------- */
.serif-em { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 20px; font-weight: 500;
}
.eyebrow--onimage { color: rgba(250,247,242,0.92); }

/* ---------- Underline text CTA (reference signature) ---------- */
.link-cta {
  display: inline-block; position: relative;
  font-family: var(--font-sans);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); text-decoration: none; cursor: pointer;
  background: none; border: 0; padding: 0 0 8px; line-height: 1.2;
}
.link-cta::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--ink); transform-origin: left; transition: transform .4s var(--ease), background-color .3s var(--ease);
}
.link-cta:hover::after { transform: scaleX(0.35); background: var(--gold-deep); }
.link-cta:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 4px; }
.link-cta--ondark { color: var(--white); }
.link-cta--ondark::after { background: rgba(250,247,242,0.85); }
.link-cta--ondark:hover::after { background: var(--tan); }

/* ---------- Filled button (form submit + primary hero action) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-size: 14px; font-weight: 500; letter-spacing: 0.04em; line-height: 1.1;
  padding: 16px 30px; border: 1px solid var(--ink); border-radius: var(--radius);
  background: var(--ink); color: var(--white);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .18s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(229, 220, 206, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; min-height: 76px;
}
.site-nav--left { justify-self: start; }
.site-nav { display: flex; gap: 30px; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-size: 15px; position: relative; padding: 3px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold-deep); transition: right .3s var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.brand { justify-self: center; display: flex; flex-direction: column; align-items: center; text-decoration: none; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 30px; letter-spacing: .02em; color: var(--ink); }
.brand-sub { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.header-right { justify-self: end; }

.brand-logo { height: 54px; width: auto; display: block; }
.footer-logo { height: 122px; width: auto; display: block; }
.statement-mark { display: block; height: 68px; width: auto; margin: 0 auto clamp(20px, 3vw, 34px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
  justify-self: end;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 10px clamp(22px,5vw,60px) 26px; border-bottom: 1px solid var(--line-soft); }
.mobile-nav a { text-decoration: none; padding: 14px 2px; border-bottom: 1px solid var(--line-soft); font-size: 18px; }
.mobile-nav a.link-cta { border-bottom: 0; margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(12px, 2vw, 20px); }
.hero-inner {
  position: relative; margin: 0 clamp(8px, 1.4vw, 18px);
  border-radius: 16px; overflow: hidden;
}
.hero-figure { position: relative; height: clamp(560px, 84vh, 840px); }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,15,12,0.88) 0%, rgba(20,15,12,0.68) 26%, rgba(20,15,12,0.30) 48%, rgba(20,15,12,0) 72%),
    linear-gradient(0deg, rgba(20,15,12,0.30) 0%, rgba(20,15,12,0) 42%);
}
.hero-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 740px; padding: 40px clamp(32px, 5.5vw, 90px);
  color: #fff;
}
.hero-eyebrow { color: rgba(250,247,242,0.9); margin-bottom: 16px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.7vw, 52px);
  line-height: 1.07; letter-spacing: -0.005em; color: #fff;
  margin-bottom: 18px; max-width: 22ch;
}
.nowrap { white-space: nowrap; }
.hero-lead { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; color: rgba(250,247,242,0.92); max-width: 48ch; margin: 0 0 26px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-bottom: 26px; }
.hero-panel .link-cta { color: #fff; }
.hero-panel .link-cta::after { background: rgba(250,247,242,0.85); }
.hero-panel .link-cta:hover::after { background: var(--tan); }
.hero-reassure {
  font-size: 13px; letter-spacing: 0.03em; color: rgba(250,247,242,0.82); margin: 0;
  padding-top: 20px; border-top: 1px solid rgba(250,247,242,0.26); max-width: 44ch;
}

@media (max-width: 900px) {
  .hero-inner { display: flex; flex-direction: column; margin: 0 12px; }
  .hero-figure { height: clamp(300px, 44vh, 440px); }
  .hero-figure img { object-position: center 32%; }
  .hero-scrim { background: linear-gradient(0deg, rgba(20,15,12,0.30), rgba(20,15,12,0) 55%); }
  .hero-panel {
    position: static; max-width: none; color: var(--ink); background: var(--cream);
    padding: clamp(28px, 7vw, 42px) clamp(22px, 6vw, 34px) clamp(34px, 8vw, 46px);
  }
  .hero-eyebrow { color: var(--gold-deep); }
  .hero-title { color: var(--ink); max-width: 20ch; }
  .hero-lead { color: var(--ink-soft); max-width: 60ch; }
  .hero-panel .link-cta { color: var(--ink); }
  .hero-panel .link-cta::after { background: var(--ink); }
  .hero-reassure { color: var(--ink-soft); border-top-color: var(--line); }
}
@media (max-width: 500px) {
  .hero-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .link-cta { align-self: flex-start; }
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--greige { background: var(--greige); }

/* ---------- Positioning statement ---------- */
.statement { text-align: center; padding: clamp(40px, 5vw, 76px) 0 clamp(28px, 3.5vw, 52px); }
.recognise { padding-top: clamp(32px, 4vw, 60px); }
.statement-head {
  font-family: var(--font-serif); font-size: clamp(32px, 4.3vw, 62px);
  line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); max-width: 26ch; margin-inline: auto;
}
.statement-lead {
  font-family: var(--font-serif); font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.32; max-width: 58ch; margin: clamp(26px,3.2vw,40px) auto 0; color: var(--ink);
}
.statement-lead strong { font-weight: 400; }
.statement-lead em { font-style: italic; }

/* ---------- Full-bleed band: image covers whole section, cream panel floats on it ---------- */
.band { position: relative; margin: 0; height: clamp(720px, 100vh, 980px); overflow: hidden; }
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,11,0.58) 0%, rgba(20,15,11,0.42) 40%, rgba(20,15,11,0.44) 70%, rgba(20,15,11,0.56) 100%);
}
.band-head {
  position: absolute; top: clamp(24px, 4vw, 50px); left: 0; right: 0;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.band-question {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(26px, 3vw, 46px); line-height: 1.08;
  color: #fff; margin: 12px 0 0; max-width: 16ch;
}
.band-toplink { margin-top: 8px; white-space: nowrap; }
.band-title {
  position: absolute; left: 0; right: 0; top: 43%; transform: translateY(-50%);
  text-align: center; padding-inline: 20px;
  font-family: var(--font-serif); font-size: clamp(46px, 8.6vw, 150px); line-height: 0.95;
  letter-spacing: -0.01em; color: rgba(255,255,255,0.58);
}

.band-panel {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: clamp(40px, 8%, 92px); width: min(90%, 1040px); z-index: 3;
  background: var(--cream);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.4vw, 46px) clamp(26px, 4vw, 56px);
  box-shadow: 0 26px 64px rgba(72, 71, 71, 0.22);
}
.band-col { text-align: center; display: flex; flex-direction: column; align-items: center; }
.band-col h3 { font-family: var(--font-serif); font-size: clamp(23px, 2.4vw, 30px); line-height: 1.05; color: var(--ink); margin-bottom: 4px; }
.band-col-price { color: var(--gold-deep); font-weight: 600; font-size: 16px; margin: 0 0 10px; }
.band-col-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; max-width: 32ch; flex-grow: 1; }
.band-col .course-select { margin-top: auto; }

@media (max-width: 760px) {
  .band { height: auto; overflow: visible; }
  .band-media { position: relative; height: clamp(400px, 66vh, 560px); }
  .band-head { flex-direction: column; gap: 12px; }
  .band-toplink { align-self: flex-start; }
  .band-title { font-size: clamp(38px, 12vw, 84px); top: auto; bottom: 22px; transform: none; text-align: left; padding-inline: clamp(22px, 6vw, 38px); }
  .band-panel { position: static; transform: none; width: auto; margin: 0; grid-template-columns: 1fr; gap: 26px; box-shadow: none; padding: 34px clamp(22px, 6vw, 34px); }
  .band-col-desc { max-width: 44ch; }
}

/* ---------- Course list (editorial rows) ---------- */
.section--kurse { padding-top: clamp(56px, 7vw, 100px); }
.kurse-intro {
  font-size: clamp(18px, 2vw, 21px); max-width: 62ch; margin: 0 0 clamp(40px, 5vw, 64px); color: var(--ink-soft);
}
.course-list { border-top: 1px solid var(--line); }
.course-row {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: center;
  padding: clamp(26px, 3.4vw, 40px) 0; border-bottom: 1px solid var(--line);
}
.course-main h3 { font-family: var(--font-serif); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.04; color: var(--ink); margin-bottom: 10px; }
.course-desc { margin: 0; color: var(--ink-soft); font-size: 16px; max-width: 62ch; }
.course-side { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; min-width: 200px; }
.price { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); color: var(--gold-deep); margin: 0; white-space: nowrap; }
.price-old { font-family: var(--font-sans); font-size: 14px; color: var(--ink-soft); text-decoration: line-through; margin-left: 6px; }

.course-row--feature {
  background: var(--greige); border: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 18px 0; padding-inline: clamp(24px, 3vw, 40px); border-radius: var(--radius-img);
}
.course-row--feature:hover { padding-left: clamp(24px, 3vw, 40px); }
.feature-eyebrow { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 8px; font-weight: 600; }
.save-badge {
  position: absolute; top: -18px; right: clamp(24px, 3vw, 40px);
  width: 84px; height: 84px; border-radius: 50%; background: var(--taupe); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 21px; letter-spacing: -0.01em;
  box-shadow: 0 10px 26px rgba(72,71,71,0.22);
}
.course-note { margin: 30px 0 0; max-width: 64ch; font-size: 13.5px; color: var(--ink-soft); }

/* Signature facial trainings as image cards */
.course-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); margin-bottom: clamp(28px, 3vw, 40px); }
.course-card { display: flex; flex-direction: column; }
.course-card-media { overflow: hidden; border-radius: var(--radius-img); aspect-ratio: 4 / 3; }
.course-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.course-card:hover .course-card-media img { transform: scale(1.05); }
.course-card-body { padding: 20px 2px 0; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.course-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.course-card-head h3 { font-family: var(--font-serif); font-size: clamp(26px, 2.6vw, 34px); line-height: 1; color: var(--ink); }
.course-card-head .price { font-size: clamp(22px, 2.2vw, 28px); }
.course-card .course-desc { font-size: 15.5px; flex-grow: 1; }
.course-card .link-cta { margin-top: 4px; align-self: flex-start; }

.course-subhead {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin: clamp(30px, 4vw, 48px) 0 4px;
}

/* Ablauf inline image */
.ablauf-media { margin-top: clamp(28px, 4vw, 44px); border-radius: var(--radius-img); overflow: hidden; }
.ablauf-media img { width: 100%; height: clamp(260px, 30vw, 360px); object-fit: cover; }

/* Form intro image */
.form-media { margin-bottom: 30px; border-radius: var(--radius-img); overflow: hidden; }
.form-media img { width: 100%; height: clamp(200px, 26vw, 260px); object-fit: cover; }

/* ---------- Ablauf: "Our Services" style (dark parallax bg, image left + stacked tinted panels) ---------- */
.services {
  color: var(--cream); padding: clamp(56px, 8vw, 116px) 0;
  background-color: #2b2620;
  background-image: linear-gradient(rgba(28,22,17,0.70), rgba(28,22,17,0.78)), url("images/services-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;   /* parallax: bg stays put while content scrolls over it */
}
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .services { background-attachment: scroll; }
}
.services-heading { font-family: var(--font-serif); font-weight: 500; font-size: clamp(38px, 5.4vw, 82px); line-height: 1.0; color: var(--cream); margin: 0 0 clamp(22px, 3vw, 44px); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; position: relative; z-index: 2; }
.services-media { position: sticky; top: clamp(80px, 12vh, 120px); height: clamp(520px, 86vh, 820px); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.34); }
.services-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.services-panels { display: flex; flex-direction: column; }
.service-panel { min-height: clamp(360px, 56vh, 520px); display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 3.2vw, 52px); }
.service-panel--cream { background: var(--cream); }
.service-panel--tan { background: var(--tan); }
.service-panel h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(26px, 3vw, 42px); line-height: 1.02; color: var(--ink); margin-bottom: 12px; }
.service-panel p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.62; margin: 0 0 14px; max-width: 48ch; }
.service-panel .link-cta { color: var(--ink); margin-top: 2px; }

/* ---------- Trainer: "Founder and CEO" style (copy left + giant headline, portrait right) ---------- */
.trainer-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(34px, 5vw, 80px); align-items: start; }
.trainer-media { position: sticky; top: 100px; }
.trainer-media img { width: 100%; height: clamp(480px, 62vw, 760px); object-fit: cover; object-position: center 20%; border-radius: var(--radius-img); }
.founder-title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(36px, 5.2vw, 72px); line-height: 1.0; color: var(--ink); margin: 8px 0 24px; }
.trainer-copy > p { color: var(--ink-soft); max-width: 56ch; }
.mini-head { font-family: var(--font-serif); font-size: 27px; color: var(--ink); margin: 34px 0 14px; }
.qual-list { display: flex; flex-direction: column; }
.qual { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 16px 0; border-top: 1px solid var(--line); }
.qual:last-child { border-bottom: 1px solid var(--line); }
.qual-mark { font-family: var(--font-serif); font-size: 26px; color: var(--gold-deep); line-height: 1; }
.qual p { margin: 0; color: var(--ink); font-size: 16.5px; }
.includes { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.includes li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--ink); }
.includes li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 12px; height: 7px;
  border-left: 1.5px solid var(--gold-deep); border-bottom: 1.5px solid var(--gold-deep); transform: rotate(-45deg);
}

/* ---------- Kommt dir das bekannt vor? (recognition / conversion) ---------- */
.recognise-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.recognise-media img { width: 100%; height: clamp(440px, 52vw, 660px); object-fit: cover; object-position: center 30%; border-radius: var(--radius-img); }
.recognise-copy h2 { font-family: var(--font-serif); font-size: clamp(32px, 4.4vw, 54px); line-height: 1.03; color: var(--ink); margin-bottom: 14px; }
.recognise-intro { color: var(--ink-soft); margin: 0 0 26px; max-width: 48ch; font-size: 16.5px; }
.recognise-list { border-top: 1px solid var(--line); }
.recognise-list details { border-bottom: 1px solid var(--line); }
.recognise-list summary {
  list-style: none; cursor: pointer; position: relative; padding: 19px 46px 19px 0;
  font-size: 17px; font-weight: 500; line-height: 1.45; color: var(--ink);
}
.recognise-list summary::-webkit-details-marker { display: none; }
.recognise-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 16px;
  font-family: var(--font-serif); font-size: 28px; color: var(--gold-deep); transition: transform .3s var(--ease);
}
.recognise-list details[open] summary::after { content: "\2013"; }
.recognise-body { padding: 0 46px 20px 0; }
.recognise-body p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.recognise-cta { text-align: center; margin-top: clamp(46px, 6vw, 78px); }
.recognise-line { font-family: var(--font-serif); font-weight: 500; font-size: clamp(28px, 3.8vw, 46px); line-height: 1.15; color: var(--ink); margin: 0 auto 28px; max-width: 26ch; }
.recognise-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 28px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head h2 { font-family: var(--font-serif); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; color: var(--ink); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 24px 48px 24px 0; position: relative;
  font-family: var(--font-serif); font-size: clamp(21px, 2.4vw, 28px); color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 34px; color: var(--gold-deep); transition: transform .3s var(--ease);
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-body { padding: 0 48px 26px 0; color: var(--ink-soft); }
.faq-body p { margin: 0; font-size: 16.5px; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.form-intro { position: sticky; top: 100px; }
.form-intro h2 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 62px); line-height: 1.0; color: var(--ink); margin-bottom: 20px; }
.form-intro > p { color: var(--ink-soft); max-width: 42ch; }
.alt-contact { margin-top: 34px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.alt-contact-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 2px; }

.inquiry-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  background: var(--greige); border: 1px solid var(--line-soft);
  border-radius: var(--radius-img); padding: clamp(24px, 3.4vw, 40px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: .01em; }
.req { color: var(--gold-deep); }
.opt { color: var(--ink-soft); font-weight: 400; font-size: 12.5px; }

.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 104px; }
.field input::placeholder, .field textarea::placeholder { color: rgb(139, 133, 124); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(150,116,66,.16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #a5402f; box-shadow: 0 0 0 3px rgba(165,64,47,.14);
}
.field-error { margin: 0; font-size: 13px; color: #8f2f22; }

.field--check { flex-direction: row; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.field--check input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--gold-deep); }
.field--check label { font-weight: 400; font-size: 15px; color: var(--ink); flex: 1; min-width: 200px; }
.field--check .field-error { flex-basis: 100%; }
.inline-link { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

.form-hint { text-align: center; font-size: 13px; color: var(--ink-soft); margin: 14px 0 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-spinner {
  width: 18px; height: 18px; border-radius: 50%; display: none;
  border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; animation: spin .7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading { opacity: .9; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn-spinner { animation-duration: 1.5s; } }

.form-status { grid-column: 1 / -1; border-radius: var(--radius); padding: 16px 18px; font-size: 15.5px; }
.form-status:focus { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.form-status.is-success { background: rgba(120,140,105,.18); border: 1px solid rgba(90,115,75,.55); color: #38502c; }
.form-status.is-error   { background: rgba(165,64,47,.10);  border: 1px solid rgba(165,64,47,.5); color: #83291d; }
.form-status strong { display: block; margin-bottom: 3px; }

/* ---------- Closing / contact ---------- */
.closing { background: var(--taupe); color: var(--white); padding: clamp(80px, 12vw, 168px) 0; text-align: center; }
.closing .eyebrow { color: rgba(250,247,242,0.85); }
.closing h2 { font-family: var(--font-serif); font-size: clamp(44px, 7vw, 104px); line-height: 0.98; color: var(--white); }
.contact-address { font-size: 17px; margin: clamp(24px,3vw,36px) 0 6px; color: var(--white); }
.contact-region { color: rgba(250,247,242,0.78); margin: 0 auto 34px; max-width: 52ch; }
.closing-cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 28px; margin-bottom: 28px; }
.closing .btn { background: var(--white); color: var(--ink); border-color: var(--white); }
.closing .btn:hover { background: transparent; color: var(--white); }
.map-link { color: var(--white); text-decoration: none; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid rgba(250,247,242,0.5); padding-bottom: 3px; }
.map-link:hover { border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--greige); border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px 40px; align-items: center; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; justify-self: start; }
.footer-nav a { text-decoration: none; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.footer-nav a:hover { color: var(--gold-deep); }
.footer-brand { justify-self: center; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand .brand-name { font-family: var(--font-serif); font-size: 34px; color: var(--ink); }
.footer-brand .brand-sub { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.footer-contact { justify-self: end; text-align: right; font-size: 14px; color: var(--ink-soft); }
.footer-contact p { margin: 0 0 4px; }
.footer-studio { font-family: var(--font-serif); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.footer-contact a { text-decoration: none; border-bottom: 1px solid transparent; }
.footer-contact a:hover { border-color: var(--gold-deep); }
.footer-legal-links { margin-top: 8px; }
.footer-legal { max-width: var(--wrap); margin: clamp(36px,5vw,56px) auto 0; font-size: 12px; color: var(--ink-soft); line-height: 1.65; }

/* ---------- Secondary button (outline variant of the site .btn) ---------- */
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }

/* ---------- Cookie consent banner (slim, opt-in) ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--greige); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(72, 71, 71, 0.12);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px 28px; padding-top: 14px; padding-bottom: 14px;
}
.cookie-text { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink); max-width: 72ch; }
.cookie-text a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie { padding: 10px 18px; font-size: 13px; letter-spacing: 0.02em; }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { gap: 10px; }
  .btn-cookie { flex: 1; }
}

/* footer button that looks like the footer links */
.footer-linklike {
  background: none; border: 0; padding: 0; font: inherit; color: var(--ink); cursor: pointer;
  border-bottom: 1px solid transparent;
}
.footer-linklike:hover { border-color: var(--gold-deep); }

/* legal page header variant */
.header-inner--legal { display: flex; justify-content: space-between; align-items: center; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-page { padding: clamp(56px, 8vw, 110px) 0 clamp(60px, 9vw, 120px); }
.legal-page .wrap { max-width: 840px; }
.legal-page h1 { font-family: var(--font-serif); font-size: clamp(40px, 6vw, 72px); line-height: 1.02; color: var(--ink); margin-bottom: 10px; }
.legal-sub { color: var(--ink-soft); letter-spacing: 0.02em; margin: 0 0 clamp(32px, 5vw, 48px); }
.legal-page h2 { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin: clamp(30px,4vw,42px) 0 12px; }
.legal-page p { color: var(--ink); margin: 0 0 6px; line-height: 1.7; }
.legal-page p.legal-gap { margin-bottom: 22px; }
.legal-page a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-back { display: inline-block; margin-top: clamp(36px,5vw,52px); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .site-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { justify-self: start; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: flex; }

  .trainer-grid, .faq-grid, .form-grid, .recognise-grid { grid-template-columns: 1fr; }
  .recognise-media { order: -1; }
  .trainer-media { position: static; order: -1; margin-bottom: 26px; }
  .faq-head, .form-intro { position: static; }

  .services-grid { grid-template-columns: 1fr; }
  .services-media { position: static; height: clamp(360px, 74vw, 560px); top: auto; }
  .service-panel { min-height: 0; }
  .services-heading { font-size: clamp(34px, 11vw, 72px); margin-bottom: 18px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-inner { min-height: 64px; }
  .brand-name { font-size: 25px; }
  .brand-logo { height: 44px; }
  .footer-logo { height: 104px; }
  .statement-mark { height: 58px; }

  .course-cards { grid-template-columns: 1fr; gap: 26px; }
  .course-row { grid-template-columns: 1fr; gap: 16px; }
  .course-side { text-align: left; align-items: flex-start; }
  .course-row:hover, .course-row--feature:hover { padding-left: 0; }
  .save-badge { width: 68px; height: 68px; font-size: 17px; top: -14px; }

  .steps li, .qual { grid-template-columns: auto 1fr; }
  .includes { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-self: center; align-items: center; }
  .footer-contact { justify-self: center; text-align: center; }
}
