/* ============================================================
   Physiotherapie Conny Balmer — modern redesign
   ============================================================ */

:root {
  /* Brand palette — primary #5AC0D1 */
  --teal-50:  #eef9fb;
  --teal-100: #d6f1f6;
  --teal-200: #aee3ec;
  --teal-300: #84d3df;
  --teal-400: #5AC0D1;      /* Primary brand colour */
  --teal-500: #3aa6b8;
  --teal-600: #2a8a9b;
  --teal-700: #226d7c;
  --teal-800: #1c5663;

  /* Neutrals */
  --ink: #0f1f24;
  --ink-2: #1b2e35;
  --slate-700: #2a3e46;
  --slate-500: #56707a;
  --slate-400: #7e9098;
  --slate-300: #b5c2c7;
  --slate-200: #d8e1e4;
  --slate-100: #eef2f4;
  --paper: #fafaf6;
  --paper-warm: #f4ede0;
  --white: #ffffff;

  /* Accent */
  --sand: #efe6d4;
  --sand-deep: #d6c4a1;

  /* Type */
  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadow */
  --shadow-sm: 0 2px 6px rgba(15, 31, 36, 0.06);
  --shadow: 0 14px 40px -16px rgba(15, 31, 36, 0.18);
  --shadow-lg: 0 30px 70px -28px rgba(15, 31, 36, 0.32);

  --easing: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 999;
}
.skip-link:focus { top: 8px; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-400);
}

.lead { font-size: 1.1rem; color: var(--slate-700); }

em {
  font-style: italic;
  color: var(--teal-600);
  font-family: var(--ff-display);
  font-weight: 400;
}

/* ===== Announce bar ===== */
.announce {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 28px;
}
.announce__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.82);
}
.announce__link:hover { color: var(--teal-300); }
.announce__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15, 31, 36, 0.06);
  transition: box-shadow 0.3s var(--easing);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px -8px rgba(15, 31, 36, 0.12); }
.site-header:has(.nav__mobile.is-open) {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand img {
  height: 102px;
  width: auto;
  display: block;
  transition: height 0.3s var(--easing);
}
.site-header.is-scrolled .brand img { height: 60px; }
@media (max-width: 820px) {
  .brand img { height: 96px; }
  .site-header.is-scrolled .brand img { height: 76px; }
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
.nav__list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal-400);
  transition: width 0.3s var(--easing);
}
.nav__list a:hover { color: var(--teal-600); }
.nav__list a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.25s var(--easing), opacity 0.25s var(--easing);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--easing);
}
.nav__mobile.is-open { max-height: 600px; }
.nav__mobile ul {
  list-style: none;
  margin: 0;
  padding: 16px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.nav__mobile a.btn { border: 0; margin-top: 12px; color: #fff; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s var(--easing), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal-400);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(90, 192, 209, 0.7);
}
.btn--primary:hover { background: var(--teal-500); }

.btn--outline {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-300);
}
.btn--outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-500);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: rgba(15, 31, 36, 0.18);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-700);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.25s var(--easing);
}
.link-arrow:hover { gap: 14px; color: var(--teal-800); }

/* ===== Sections ===== */
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--alt { background: var(--paper-warm); }

.section__head { max-width: 760px; margin-bottom: 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title { margin-bottom: 18px; }
.section__lead { font-size: 1.1rem; color: var(--slate-700); margin: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 90px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
  background: linear-gradient(180deg, #fdfdfa 0%, #f0ebde 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(91, 186, 196, 0.18) 0%, transparent 60%),
    radial-gradient(40% 35% at 10% 80%, rgba(214, 196, 161, 0.35) 0%, transparent 60%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero__content { position: relative; z-index: 2; }

.hero__title {
  margin-top: 8px;
  margin-bottom: 24px;
}

.hero__lead {
  font-size: 1.18rem;
  color: var(--slate-700);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  border-top: 1px solid rgba(15, 31, 36, 0.1);
  padding-top: 28px;
}
.hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta strong {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__meta strong i {
  font-style: italic;
  color: var(--teal-600);
}
.hero__meta span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}

.hero__media {
  position: relative;
}

.hero__photo {
  position: relative;
  border-radius: 280px 280px 24px 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--teal-100);
  transform: rotate(-1deg);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 36, 0.18));
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -32px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-2deg);
}
.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91, 186, 196, 0.25);
}
.hero__badge-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.hero__badge-text {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(15, 31, 36, 0.25);
  border-radius: 14px;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 2px;
  animation: scroll 1.8s var(--easing) infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__copy p { font-size: 1.02rem; color: var(--slate-700); }
.about__copy--center { max-width: 760px; margin: 0 auto; }

.about__list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink-2);
}
.about__list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--teal-500);
  background: var(--teal-50);
  border-radius: 50%;
  padding: 2px;
}

.about__card {
  position: sticky;
  top: 120px;
}
.about__quote {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about__quote::before {
  content: "";
  position: absolute;
  inset: -50% -50% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(91, 186, 196, 0.4), transparent 70%);
}
.about__quote-mark { color: var(--teal-400); opacity: 0.55; margin-bottom: 8px; }
.about__quote blockquote {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 20px;
  color: #fff;
}
.about__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-300);
}

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing), border-color 0.35s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal-200);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 14px;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--slate-500);
  margin: 0;
}

.services__cta {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  gap: 40px;
  align-items: center;
}
.services__cta h3 { margin: 0 0 6px; font-size: 1.3rem; }
.services__cta p { margin: 0; color: var(--slate-500); }
.services__prices {
  display: flex;
  gap: 32px;
  border-left: 1px solid var(--slate-200);
  padding-left: 36px;
}
.price { display: flex; flex-direction: column; gap: 4px; }
.price__time {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.price__amount {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--ink);
}

/* ===== Courses ===== */
.courses__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.courses__copy p { color: var(--slate-700); margin-bottom: 28px; }
.courses__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courses__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--slate-200);
}
.courses__list li:last-child { border-bottom: 1px solid var(--slate-200); }
.courses__list strong {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--teal-700);
}
.courses__list span { color: var(--slate-700); }

.courses__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  background: var(--slate-100);
}
.courses__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Praxis gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-100);
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact__intro .contact-card {
  margin-top: 32px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-card--accent {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  border-color: transparent;
}
.contact-card--accent h3 { color: #fff; }
.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--teal-700);
}
.contact-card--accent h3 { color: var(--teal-300); }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--slate-100);
  font-size: 0.95rem;
}
.hours li:first-child { border-top: 0; }
.hours li > span:first-child { font-weight: 600; color: var(--ink); }
.hours__closed { color: var(--slate-400); font-style: italic; }

.contact-card__note {
  margin: 18px 0 0;
  font-size: 0.86rem;
  color: var(--slate-500);
}

.contact-card address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 24px;
}

.contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card--accent .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.contact-card--accent .btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.contact-card--accent .btn--ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.18);
}
.contact-card--accent .btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer__brand img {
  width: 240px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  background: #fff;
  padding: 2px 12px;
  border-radius: 24px;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.35);
}
.site-footer__brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.site-footer a:hover { color: var(--teal-300); }
.site-footer address { font-style: normal; line-height: 1.7; }

.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.site-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.site-footer__bar-inner a { color: rgba(255,255,255,0.55); }
.site-footer__bar-inner a:hover { color: var(--teal-300); }
.site-footer__bar-inner span { margin: 0 10px; }

/* ===== Toast (not-implemented notice) ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: #fff;
  padding: 16px 22px 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  max-width: calc(100% - 32px);
  opacity: 0;
  transition: transform 0.35s var(--easing), opacity 0.3s var(--easing);
  z-index: 200;
  pointer-events: none;
  border-left: 4px solid var(--teal-400);
}
.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(91, 186, 196, 0.18);
  color: var(--teal-300);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ============================================================
   Subpage components (Angebot etc.)
   ============================================================ */

/* ----- Page hero ----- */
.page-hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
  background: linear-gradient(180deg, #fdfdfa 0%, #f0ebde 100%);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 40% at 85% 10%, rgba(90, 192, 209, 0.18) 0%, transparent 65%),
    radial-gradient(35% 35% at 5% 90%, rgba(214, 196, 161, 0.4) 0%, transparent 65%);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.page-hero__copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 8px 0 20px;
}
.page-hero__copy .lead { max-width: 540px; font-size: 1.1rem; }
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.page-hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 240px 240px 22px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--teal-100);
  transform: rotate(-1deg);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wide-media hero variant (text left, wider landscape photo right) */
.page-hero--wide-media .page-hero__grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.page-hero__media--landscape {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  transform: none;
}
.page-hero__media--landscape img {
  object-position: center 30%;
}
@media (max-width: 820px) {
  .page-hero--wide-media .page-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__media--landscape { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-500);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--slate-500);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb span[aria-hidden] { color: var(--slate-300); }

/* ----- Price banner ----- */
.price-banner {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.price-banner__inner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.price-banner__inner::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(90, 192, 209, 0.28), transparent 70%);
  pointer-events: none;
}
.price-banner__intro h2 {
  color: #fff;
  font-size: 1.55rem;
  margin: 6px 0 10px;
}
.price-banner__intro p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.96rem;
}
.price-banner__intro .eyebrow { color: var(--teal-300); }
.price-banner__intro .eyebrow::before { background: var(--teal-300); }
.price-banner__intro { align-self: center; }

.price-banner__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 0;
  position: relative;
  align-self: center;
}
.price-banner__prices .btn { grid-column: span 2; margin-top: 4px; }
.price-banner__note { grid-column: span 2; margin: 8px 0 0; font-size: 0.85rem; color: var(--slate-500); }

.price-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.price-tile--accent {
  background: rgba(90, 192, 209, 0.14);
  border-color: rgba(90, 192, 209, 0.4);
}
.price-tile__time {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.price-tile__amount {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: #fff;
}

/* ----- Table of contents ----- */
.toc__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
}
.toc__grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-2);
  transition: border-color 0.25s, transform 0.25s var(--easing), color 0.2s;
}
.toc__grid a:hover {
  border-color: var(--teal-300);
  transform: translateY(-2px);
  color: var(--teal-700);
}
.toc__grid span {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--teal-500);
  letter-spacing: 0.05em;
  min-width: 28px;
}

/* ----- Service rows ----- */
.service-list { padding-top: clamp(64px, 8vw, 110px); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(15, 31, 36, 0.07);
  scroll-margin-top: 120px;
}
.service-row:last-child { border-bottom: 0; }
.service-row--reverse .service-row__media { order: 2; }

.service-row__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-100);
  box-shadow: var(--shadow);
}
.service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}
.service-row:hover .service-row__media img { transform: scale(1.03); }
.service-row__media.service-row__media--portrait {
  aspect-ratio: 3/4;
}
.service-row__media.service-row__media--portrait img {
  object-fit: cover;
}

.service-row__num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--teal-700);
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.service-row__body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 14px;
}
.service-row__body p {
  font-size: 1.02rem;
  color: var(--slate-700);
  margin-bottom: 20px;
}

.service-row__notes {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--slate-50);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--slate-600);
}
.service-row__notes p { margin-bottom: 8px; font-size: inherit; color: inherit; }
.service-row__notes p:last-child { margin-bottom: 0; }

.tags {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--teal-100);
}

/* ----- CTA band ----- */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(90, 192, 209, 0.22), transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 8px 0 14px;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 480px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.eyebrow--light { color: var(--teal-300); }
.eyebrow--light::before { background: var(--teal-300); }
.btn--on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn--on-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

[aria-current="page"] { color: var(--teal-600) !important; }
[aria-current="page"]::after { width: 100% !important; }

/* ----- Responsive subpage ----- */
@media (max-width: 820px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__media { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 1080px) {
  .toc__grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .service-row--reverse .service-row__media { order: 0; }
  .price-banner__inner { grid-template-columns: 1fr; padding: 48px 28px 56px; }
  .price-banner { margin-top: 0; padding: 56px 0 64px; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-band__actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .toc__grid { grid-template-columns: 1fr; }
  .price-banner__inner { padding: 64px 24px 72px; }
  .price-banner__prices { grid-template-columns: 1fr; }
  .price-banner__prices .btn { grid-column: span 1; }
  .page-hero__media { border-radius: 180px 180px 18px 18px; }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { gap: 56px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__card { position: static; }
  .courses__grid { gap: 56px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .services__cta { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .services__prices { border-left: 0; padding-left: 0; border-top: 1px solid var(--slate-200); padding-top: 24px; }
}

@media (max-width: 820px) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .announce__inner { gap: 10px; padding: 8px 20px; }
  .announce__divider { display: none; }
  .nav, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile { display: block; top: 100%; }
  .hero { padding-top: 56px; padding-bottom: 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__photo { border-radius: 200px 200px 18px 18px; max-width: 380px; margin: 0 auto; }
  .hero__badge { left: 8px; bottom: 12px; }
  .hero__meta { gap: 24px 36px; }
  .hero__meta strong { font-size: 1.5rem; }

  .about__list { grid-template-columns: 1fr; }
  .courses__grid { grid-template-columns: 1fr; }
  .courses__media { aspect-ratio: 4/3; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 2; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .site-footer__bar-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .services__cta { padding: 28px; }
  .courses__list li { grid-template-columns: 1fr; gap: 4px; }
  .courses__list strong { font-size: 1rem; }
  .hours li { grid-template-columns: 90px 1fr; gap: 10px; }
}

/* ===== Vacation overlay ===== */
.vacation-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.vacation-overlay.is-visible { opacity: 1; pointer-events: auto; }

.vacation-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 36, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vacation-overlay__panel {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(15, 31, 36, 0.35);
  max-width: 480px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 240ms cubic-bezier(.2,.7,.3,1);
}
.vacation-overlay.is-visible .vacation-overlay__panel {
  transform: translateY(0) scale(1);
}

.vacation-overlay__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--slate-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
}
.vacation-overlay__close:hover {
  background: var(--slate-100);
  color: var(--ink);
}

.vacation-overlay__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vacation-overlay__title {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}

.vacation-overlay__dates {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--teal-700);
  font-weight: 600;
}

.vacation-overlay__message {
  margin: 0 0 24px;
  color: var(--slate-700);
  line-height: 1.55;
  white-space: pre-line;
}

.vacation-overlay__ok {
  min-width: 160px;
}

@media (max-width: 560px) {
  .vacation-overlay__panel { padding: 32px 22px 24px; }
  .vacation-overlay__title { font-size: 1.5rem; }
}

/* ===== Timeline (Über mich) ===== */
.timeline {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  position: relative;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 140px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--slate-100);
}
.timeline__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 14px 0 22px;
  position: relative;
}
.timeline__year {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 600;
  padding-top: 2px;
  text-align: right;
  padding-right: 24px;
}
.timeline__body {
  position: relative;
  padding-left: 28px;
}
.timeline__body::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-500);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--slate-100);
}
.timeline__body h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--ink);
}
.timeline__body p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}
.timeline__item--current .timeline__body::before {
  background: var(--ink);
}

/* ===== Qualifications grid ===== */
.qual-grid {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.qual-grid li {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-left: 46px;
  display: flex;
  align-items: center;
}
.qual-grid li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-100);
  border: 2px solid var(--teal-500);
}

/* ===== Steps (Kurse) ===== */
.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  position: relative;
}
.step__num {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--teal-600);
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--ink);
}
.step p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Info band (Kurse) ===== */
.info-band {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
}
.info-band h2 {
  margin: 6px 0 10px;
  font-size: 1.5rem;
}
.info-band p {
  margin: 0;
  color: var(--slate-500);
}
.info-band__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== Facts (Praxis) ===== */
.facts {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.facts li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.facts__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
}
.facts li strong {
  display: block;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.facts li span {
  color: var(--slate-500);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Directions (Kontakt) ===== */
.directions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.directions-layout__map {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  min-height: 420px;
  height: 100%;
}
.directions-layout__map iframe {
  display: block;
  min-height: 500px;
}
.directions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.directions__card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
}
.directions__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.directions__card--single h3:not(:first-child) {
  margin-top: 20px;
}
.directions__card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--ink);
}
.directions__card p {
  margin: 0 0 10px;
  color: var(--slate-500);
  font-size: 0.95rem;
  line-height: 1.6;
}
.directions__card p:last-of-type { margin-bottom: 14px; }

/* ===== Responsive for new components ===== */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .directions-layout { grid-template-columns: 1fr; }
  .directions-layout__map { position: static; min-height: 320px; }
  .directions { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .info-band { grid-template-columns: 1fr; padding: 32px 28px; }
  .qual-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== Legal pages (Impressum / Datenschutz) ===== */
.legal__container {
  max-width: 760px;
}
.legal h1 {
  margin: 8px 0 32px;
}
@media (max-width: 820px) {
  .legal h1 { font-size: 1.6rem; }
}
.legal h2 {
  margin: 40px 0 12px;
  font-size: 1.15rem;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--ink);
}
.legal p {
  margin: 0 0 14px;
  color: var(--slate-700);
  line-height: 1.7;
}
.legal .lead {
  color: var(--slate-500);
  margin-bottom: 32px;
}
.legal address {
  font-style: normal;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: 8px;
}
.legal ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  line-height: 1.8;
  color: var(--slate-700);
}
.legal a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--teal-600); }
.legal__note {
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--slate-400);
}

@media (max-width: 640px) {
  .timeline { margin-top: 40px; }
  .timeline::before { left: 24px; }
  .timeline__item { grid-template-columns: 1fr; gap: 6px; padding-left: 56px; }
  .timeline__year { text-align: left; padding-right: 0; padding-left: 0; }
  .timeline__body { padding-left: 0; }
  .timeline__body::before { left: -38px; top: 24px; }
  .steps { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: 1fr; }
}

/* Certificate Lightbox */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cert-lightbox[hidden] { display: none; }
.cert-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.cert-lightbox__inner {
  position: relative;
  max-width: 440px;
  width: 100%;
  z-index: 1;
}
.cert-lightbox__img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.cert-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.cert-lightbox__close:hover { opacity: 1; }

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--teal-200);
  position: absolute;
  top: 16px;
  left: 32px;
}
.testimonial p {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.7;
  margin: 0;
  padding-top: 32px;
}
.testimonial p + p { padding-top: 0; }
.testimonial__author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--slate-100);
}
.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
