:root {
  --bg: #ffffff;
  --ink: #17323a;
  --accent: #1f6f7a;
  --accent-dk: #164e57;
  --accent-deep: #123f47;
  --muted: #5b6b6b;
  --tint: #e4f1f2;
  --ghost: rgba(31,111,122,.045);
  --line: #e6ecec;
  --footer: #0f3138;
  --font: var(--gh-font-body, "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  --font-heading: var(--gh-font-heading, "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .hero__title, .section__title { font-family: var(--font-heading); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dk); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
code { background: var(--tint); padding: 2px 6px; border-radius: 4px; font-size: .9em; }

/* Buttons */
.tk-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.tk-btn:hover { background: var(--accent-dk); color: #fff; transform: translateY(-1px); }
.tk-btn--sm { padding: 8px 16px; font-size: 14px; }
.tk-btn--onhero { background: #fff; color: var(--accent-dk); align-self: flex-start; }
.tk-btn--onhero:hover { background: #eef7f8; color: var(--accent-deep); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: #fff; }
.navbar { border-bottom: .5px solid var(--line); }
.brand__logo { height: 54px; width: auto; display: block; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { font-weight: 600; font-size: 17px; color: var(--ink); }
.mainnav { display: flex; align-items: center; gap: 20px; font-size: 15px; }
.mainnav a { color: var(--muted); }
.mainnav a:hover { color: var(--accent); }
.mainnav a.tk-btn { color: #fff; }

/* Hero */
.hero {
  background: var(--accent-dk);
  background-size: cover;
  background-position: center top;
  color: #fff;
}
.hero__inner { padding: 88px 24px; max-width: 720px; display: flex; flex-direction: column; align-items: flex-start; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin: 0; color: #fff; }
.hero__title .accent { color: #8fd3da; white-space: nowrap; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.9); margin: 18px 0 22px; }

/* Badges */
.tk-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.tk-badges--center { justify-content: center; }
.tk-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: #fff;
  font-weight: 500; font-size: 13px; padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
}
.tk-badge::before { content: "✓"; font-weight: 700; }
a.tk-badge--link { text-decoration: none; }
a.tk-badge--link:hover { background: rgba(255,255,255,.28); color: #fff; }
.section--offers .tk-badge { background: rgba(31,111,122,.1); color: var(--accent-dk); border-color: rgba(31,111,122,.22); }

/* Intro strip */
.intro { background: var(--tint); }
.intro__inner { display: flex; align-items: center; gap: 16px; padding: 18px 24px; }
.intro__face { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex: 0 0 60px; box-shadow: 0 2px 8px rgba(23,50,58,.15); }
.intro__text { margin: 0; color: var(--accent-deep); font-size: 15px; }
.intro__text a { font-weight: 600; white-space: nowrap; }

/* Preise CTA */
.prices__cta { margin-top: 22px; }

/* Booking Meta */
.booking__meta { color: rgba(255,255,255,.75); font-size: 14px; margin: 16px auto 0; }
.booking__meta a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Sections */
.section { padding: 64px 0; position: relative; }
.section .wrap { position: relative; }
.section--prices, .section--about { background: #fafbfb; }
.section__title { position: relative; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 6px; }
.section__title--light { color: #fff; }
.section__lead { position: relative; color: var(--muted); margin: 0 0 26px; }

/* Cards */
.tk-cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); position: relative; }
.tk-card { border: .5px solid var(--line); border-radius: 12px; padding: 22px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.tk-card:hover { border-color: var(--accent); box-shadow: 0 6px 24px rgba(23,50,58,.06); }
.tk-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.tk-card p { margin: 0; color: var(--muted); font-size: 15px; }
.tk-card--link { display: flex; flex-direction: column; color: inherit; }
.tk-card--link:hover { color: inherit; }
.tk-card__cta { margin-top: auto; padding-top: 14px; font-size: 14px; font-weight: 600; color: var(--accent); opacity: 0; transition: opacity .15s ease; }
.tk-card--link:hover .tk-card__cta { opacity: 1; }
@media (hover: none) { .tk-card__cta { display: none; } }
.tk-card__img { border-radius: 8px; margin-bottom: 12px; }
.review .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 8px; }
.review__name { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }

/* Prices */
.prices { max-width: 560px; }
.prices table { width: 100%; border-collapse: collapse; }
.prices td { padding: 12px 0; border-bottom: .5px solid var(--line); font-size: 15px; }
.prices td:last-child { text-align: right; color: var(--accent); font-weight: 600; }
.prices tbody tr { transition: background .12s ease; cursor: pointer; }
.prices tbody tr:hover td { background: #eef6f6; }
.prices tbody tr:nth-child(2) td { background: var(--tint); font-weight: 600; border-bottom-color: transparent; }
.prices tbody tr:nth-child(2) td:first-child { box-shadow: inset 3px 0 0 var(--accent); padding-left: 14px; }
.prices tbody tr:nth-child(2) td:last-child { color: var(--accent-dk); }
.prices tbody tr:nth-child(2):hover td { background: #d9edee; }

/* Booking iframe + CTA-Karte + Mockup */
.booking__iframe { width: 100%; min-height: 720px; border: 0; display: block; border-radius: 8px; background: #fff; }
.booking__fallback { color: rgba(255,255,255,.75); font-size: 14px; margin: 12px 0 0; }
.booking__fallback a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.booking__cta { background: #fff; border-radius: 12px; padding: 34px 24px; max-width: 520px; margin: 0 auto; color: #333; }
.booking__cta-lead { margin: 0 0 20px; font-size: 17px; color: #445; }
.booking__cta-note { color: var(--muted); font-size: 13px; margin: 16px 0 0; }
.tk-btn--lg { font-size: 17px; padding: 15px 30px; }
.ith-booking { min-height: 400px; background: #fff; border-radius: 12px; padding: 8px; }
.ith-mock { background: #fff; border-radius: 12px; padding: 24px; max-width: 620px; margin: 0 auto; color: #333; text-align: left; font-family: "Open Sans", var(--font); }
.ith-mock__label { display: block; color: #6b7c86; font-size: 14px; margin: 0 0 6px 2px; }
.ith-mock__card {
  display: flex; align-items: center; gap: 10px; justify-content: space-between;
  border: 1px solid #7cc3e6; border-radius: 999px; background: #fff;
  padding: 10px 18px; margin-bottom: 16px; font-weight: 600; font-size: 15px;
}
.ith-mock__provider { justify-content: flex-start; }
.ith-mock__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px;
  background: #e0f4fd; color: #2a99cc; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.ith-mock__price { display: inline-flex; align-items: center; gap: 8px; color: #333; white-space: nowrap; }
.ith-mock__price svg { color: #2a99cc; }
.ith-mock__cal { border: 1px solid #7cc3e6; border-radius: 10px; overflow: hidden; }
.ith-mock__bar {
  background: #2a99cc; color: #fff; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; font-weight: 600; font-size: 15px;
}
.ith-mock__nav {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.9);
  color: #b9d8e8; display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
}
.ith-mock__nav--next { color: #e8623d; }
.ith-mock__grid { display: grid; grid-template-columns: repeat(7, 1fr); min-height: 190px; }
.ith-mock__col { border-right: 1px solid #cfe9f7; padding: 8px 5px 12px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ith-mock__col:last-child { border-right: 0; }
.ith-mock__day { color: #2a99cc; font-size: 13px; }
.ith-mock__date { font-size: 17px; color: #4a5a63; margin-bottom: 2px; }
.ith-mock__slot {
  background: #e0f4fd; color: #1d7aa8; border-radius: 7px;
  padding: 5px 0; width: 100%; text-align: center; font-size: 12.5px; font-weight: 600;
}
.ith-mock__note { color: var(--muted); font-size: 13px; text-align: center; margin: 14px 0 0; }
@media (max-width: 560px) {
  .ith-mock { padding: 16px; }
  .ith-mock__grid { grid-template-columns: repeat(7, minmax(0,1fr)); }
  .ith-mock__slot { font-size: 10.5px; }
  .ith-mock__date { font-size: 14px; }
  .booking__iframe { min-height: 620px; }
  .booking__cta { padding: 26px 18px; }
}

/* FAQ */
.faq { max-width: 720px; }
.faq h3 { font-size: 16px; font-weight: 700; margin: 1.4em 0 .3em; color: var(--ink); }
.faq h3:first-child { margin-top: 0; }
.faq p { color: var(--muted); margin: 0 0 .4em; }
.faq details { border-bottom: .5px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; padding: 14px 28px 14px 0; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 12px; color: var(--accent); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { color: var(--muted); margin: 0 0 16px; }

/* About */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: center; }
.about__media img, .about__placeholder { border-radius: 12px; }
.about__placeholder { background: var(--tint); min-height: 220px; display: flex; align-items: center; justify-content: center; color: var(--accent-dk); font-size: 14px; }
.about__body .post-content { color: var(--muted); }

/* Booking */
.section--booking { background: var(--accent-dk); color: #fff; text-align: center; }
.booking__lead { color: rgba(255,255,255,.85); max-width: 440px; margin: 0 auto 16px; }
.booking__embed { background: var(--accent-deep); border-radius: 12px; padding: 24px; margin-top: 20px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.contact__list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.contact__map { background: var(--tint); border-radius: 12px; min-height: 240px; display: flex; align-items: center; justify-content: center; color: var(--accent-dk); font-size: 14px; overflow: hidden; }
.contact__map iframe { width: 100%; height: 100%; min-height: 240px; border: 0; display: block; }

/* Post / page content */
.post-content { font-size: 16px; }
.post-content h2 { font-size: 1.4rem; font-weight: 600; margin: 1.6em 0 .5em; }
.post-content img { border-radius: 8px; margin: 1em 0; }

/* Koenig content width classes */
.kg-width-wide { position: relative; width: 100%; }
.kg-width-full { position: relative; width: 100%; }
@media (min-width: 1100px) {
  .post-content .kg-width-wide { width: 105%; margin-left: -2.5%; }
}
.kg-width-full img { border-radius: 0; }
.post__feature { border-radius: 12px; margin: 12px 0 24px; }

/* Footer */
.site-footer { background: var(--footer); color: rgba(255,255,255,.7); font-size: 13px; }
.site-footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 22px 24px; }
.legalnav { display: flex; gap: 16px; }
.legalnav a { color: rgba(255,255,255,.7); }
.legalnav a:hover { color: #fff; }

/* Sticky mobile CTA */
.tk-sticky-cta { display: none; }

@media (max-width: 820px) {
  .about, .contact { grid-template-columns: 1fr; }
  .mainnav { gap: 14px; font-size: 14px; }
  .mainnav a:not(.tk-btn) { display: none; }
}
@media (max-width: 720px) {
  .hero { background-position: center top; }
  .hero__inner { padding: 180px 24px 56px; align-items: center; text-align: center; }
  .hero__title, .hero__subtitle { text-shadow: 0 1px 12px rgba(18,63,71,.45); }
  .tk-badges { justify-content: center; }
  .tk-btn--onhero { align-self: center; }
  .section { padding: 48px 0; }
  .brand__logo { height: 40px; }
  .mainnav .tk-btn { display: none; }
  .navbar__inner { padding: 10px 20px; }
  .tk-sticky-cta {
    display: block; position: fixed; left: auto; right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 60; text-align: center; box-shadow: 0 3px 10px rgba(23,50,58,.28);
    padding: 12px 22px; font-size: 14px;
    opacity: 0; transform: translateY(72px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .tk-sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
