@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --bg: #f6f8fc;
  --bg-alt: #edf2fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #0f172a;
  --muted: #506079;
  --line: rgba(15, 23, 42, 0.1);
  --teal: #24d2c3;
  --teal-dark: #00a7b0;
  --sand: #ffb84d;
  --coral: #ff5f7a;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --anchor-offset: 124px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

:is(#top, #leistungen, #ablauf, #ergebnisse, #kontakt) {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(36, 210, 195, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 95, 122, 0.12), transparent 26%),
    radial-gradient(circle at 50% 20%, rgba(255, 184, 77, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #eef3fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 33, 47, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 47, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 88%);
}

button, input, textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  padding: 0 0 18px;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 16px;
  z-index: 100;
  margin-top: 20px;
  margin-bottom: 24px;
  padding: 8px 8px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04), 0 0 0 1px inset rgba(255, 255, 255, 0.6);
}

.nav {
  position: static;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  flex: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.brand-logo-small {
  width: 52px;
  height: 52px;
  padding: 5px;
  border-radius: 14px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #eff4fb);
  border: 1px solid var(--line);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 1;
  justify-content: space-between;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 0;
}

.nav-actions {
  margin-left: auto;
}

.nav-panel a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.04);
  transform: none;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--coral);
  transition: transform 0.12s ease, box-shadow 0.12s ease, color 0.12s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  color: var(--teal-dark);
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-panel .button {
  white-space: nowrap;
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.95rem;
}

/* Header buttons: ensure white text for better contrast */
.header-top .nav-panel .button,
.header-top .nav-panel .button-cta {
  color: #fff;
}

.nav-panel .button-cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
  padding: 12px 0 14px;
}

.hero-right {
  display: grid;
  gap: 18px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.79rem;
  font-weight: 800;
}

.hero-copy h1,
.section-heading h2,
.hero-card h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  line-height: 0.95;
}

.lead {
  max-width: 60ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 122, 118, 0.28);
}

.button-cta {
  background: linear-gradient(135deg, var(--coral), var(--sand));
  color: white;
  font-weight: 900;
  padding: 0 22px;
  min-height: 56px;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(255,95,122,0.18);
}

.button-cta:hover,
.button-cta:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ff5470, #ffb04a);
  box-shadow: 0 26px 60px rgba(255,84,112,0.24);
}

/* More specific rule for the book CTA to ensure hover color applies */
.button-cta.book-cta:hover,
.button-cta.book-cta:focus-visible {
  background: linear-gradient(135deg, #ff5470, #ffb04a);
  box-shadow: 0 28px 64px rgba(255,84,112,0.28);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
}

.button-whatsapp {
  background: linear-gradient(135deg, #27d366, #1fbb57);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  gap: 0.7em;
  box-shadow: 0 16px 30px rgba(31, 187, 87, 0.22);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: linear-gradient(135deg, #22c95f, #189d49);
  color: #fff;
  box-shadow: 0 20px 42px rgba(31, 187, 87, 0.28);
}

.button-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.trust-row article,
.hero-card,
.card,
.proof-card,
.contact-card,
.timeline article,
.testimonial-band {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.trust-row article {
  padding: 18px;
  border-radius: var(--radius-md);
}

.trust-row strong {
  display: block;
  font-size: 1.5rem;
}

.trust-row span {
  color: var(--muted);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  transform: rotate(0deg);
}

.book-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.book-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.book-title {
  font-weight: 800;
  margin: 0 0 6px;
}

.book-meta {
  margin: 0 0 12px;
  color: var(--muted);
}

.book-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.book-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.book-cover {
  width: 180px;
  height: auto;
  max-height: 36vh;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 30px rgba(15,23,42,0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.book-cover:hover,
.book-link:focus .book-cover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(15,23,42,0.18);
}
.book-info { padding: 0; }

.book-title { font-weight: 800; margin: 0 0 6px; }

.book-body { display: flex; flex-direction: column; gap: 12px; }

.book-cta { align-self: flex-end; padding-inline: 22px; padding-block: 10px; font-size: 1rem; border-radius: 12px; }


.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.hero-card-top p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #44b08a;
  box-shadow: 0 0 0 6px rgba(68, 176, 138, 0.15);
}

.hero-card h2 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.checklist {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.6;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(31, 122, 118, 0.12);
  border: 1px solid rgba(31, 122, 118, 0.28);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.mini-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(31, 122, 118, 0.12), rgba(214, 159, 95, 0.18));
}

.mini-panel span {
  color: var(--muted);
  line-height: 1.5;
}

.mini-panel a {
  color: var(--teal-dark);
  font-weight: 800;
}

.section {
  padding: 24px 0;
}

.section.alt {
  padding-inline: 24px;
  margin-inline: -24px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(239, 231, 219, 0.7));
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 560px;
}

#leistungen .section-heading,
#ablauf .section-heading,
#ergebnisse .section-heading {
  max-width: none;
  width: 100%;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.proof-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.booking-embed {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.booking-embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.muted { color: var(--muted); }

.card code { background: rgba(0,0,0,0.04); padding: 2px 6px; border-radius: 6px; font-size: .95em; }

.embed-fallback {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
}

@media (max-width: 720px) {
  .booking-embed iframe { height: 440px; }
}

.card h3,
.proof-card h3,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.card p,
.proof-card p,
.timeline p,
.contact-card,
.site-footer,
.testimonial-band p {
  color: var(--muted);
  line-height: 1.7;
}

.accent-teal {
  background: linear-gradient(180deg, rgba(36, 210, 195, 0.18), rgba(255, 255, 255, 0.92));
}

.accent-sand {
  background: linear-gradient(180deg, rgba(255, 184, 77, 0.18), rgba(255, 255, 255, 0.92));
}

.accent-ink {
  background: linear-gradient(180deg, rgba(160, 184, 255, 0.14), rgba(255, 255, 255, 0.94));
}

.accent-coral {
  background: linear-gradient(180deg, rgba(255, 95, 122, 0.16), rgba(255, 255, 255, 0.92));
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 10px 10px;
  border-radius: var(--radius-lg);
}

.timeline article > div {
  display: grid;
  gap: 4px;
  align-content: start;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: auto;
  min-width: 44px;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: rgba(31, 122, 118, 0.12);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 1.65rem;
}

.timeline h3 {
  margin: 0;
}

.timeline p {
  margin: 0;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-band {
  margin-top: 20px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(36, 210, 195, 0.12), rgba(255, 95, 122, 0.1));
}

.testimonial-band blockquote {
  margin: 0 0 10px;
  max-width: 22ch;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions .button {
  width: 100%;
  justify-content: center;
}

.contact-meta {
  display: grid;
  gap: 8px;
}

.site-footer {
  padding: 28px 0 24px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 18px;
}

.footer-brand .brand {
  display: block;
  width: 100%;
}

.footer-brand .brand-logo-small {
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-links a,
.footer-contact a {
  color: var(--ink);
  font-weight: 700;
}

.footer-contact .button-whatsapp {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 0.95em;
  margin-top: 8px;
  border-radius: 999px;
}

.footer-contact .button-whatsapp:hover,
.footer-contact .button-whatsapp:focus-visible {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-link-button,
.footer-nav-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.footer-link-button:hover,
.footer-link-button:focus-visible,
.footer-nav-button:hover,
.footer-nav-button:focus-visible {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
  margin-top: 12px;
}

.back-to-top {
  color: var(--muted);
  font-weight: 700;
}

body.cookie-banner-visible {
  padding-bottom: 188px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.cookie-banner__copy h2 {
  margin: 6px 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  min-width: 220px;
}

.cookie-banner__actions .button {
  width: 100%;
  justify-content: center;
}

.cookie-banner__link {
  justify-self: center;
  color: var(--muted);
  font-weight: 700;
}

.booking-page.booking-locked {
  overflow: hidden;
}

.booking-page .booking-protected {
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.booking-page.booking-locked .booking-protected {
  filter: blur(6px);
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.booking-gate {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 10%, rgba(36, 210, 195, 0.2), transparent 34%),
    radial-gradient(circle at 90% 90%, rgba(255, 95, 122, 0.16), transparent 30%),
    rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-gate[hidden] {
  display: none !important;
}

.booking-gate-card {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.booking-gate-card h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.65rem, 4.2vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.booking-gate-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-gate-form {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.booking-gate-form input {
  min-height: 48px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 1rem;
}

.booking-gate-form input:focus-visible {
  outline: 2px solid rgba(36, 210, 195, 0.6);
  outline-offset: 2px;
  border-color: rgba(36, 210, 195, 0.9);
}

.booking-gate-form .button {
  width: 100%;
}

.booking-gate-error {
  min-height: 1.2em;
  margin: 2px 0 0;
  color: #c81d3f;
  font-size: 0.94rem;
  font-weight: 700;
}

.booking-page .booking-hero {
  padding-bottom: 8px;
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.booking-hero-copy {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 246, 255, 0.85));
  box-shadow: var(--shadow);
}

.booking-hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: none;
}

.booking-hero-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: none;
}

.booking-calendar .section-heading,
.booking-pricing .section-heading {
  max-width: none;
  width: 100%;
}

.booking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.booking-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(36, 210, 195, 0.12);
  border: 1px solid rgba(36, 210, 195, 0.3);
}

.booking-hero-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.94), rgba(31, 122, 118, 0.92));
  color: #eef7ff;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.3);
}

.booking-hero-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.booking-hero-panel ol {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.booking-hero-panel li {
  line-height: 1.55;
}

.booking-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.35);
  color: rgba(236, 250, 255, 0.9);
  font-size: 0.95rem;
}

/* Improve CTA styling inside the dark booking panel */
.booking-hero-panel .button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: none;
  margin-top: 12px;
}

.booking-hero-panel .button.button-cta {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}

.booking-hero-panel .button.button-cta:hover,
.booking-hero-panel .button.button-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.booking-steps .section-heading,
.booking-faq .section-heading {
  max-width: none;
}

.booking-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 254, 0.8));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.booking-step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(36, 210, 195, 0.16);
  color: var(--teal-dark);
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 700;
}

.booking-step-card h3 {
  margin: 14px 0 10px;
  font-size: 1.2rem;
}

.booking-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.booking-price-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 184, 77, 0.35);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 224, 0.86));
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.12);
}

.booking-price-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
}

.booking-price {
  margin: 10px 0 2px;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
}

.booking-price-meta {
  margin: 0;
  color: var(--muted);
}

.booking-price-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 9px;
  color: var(--ink);
}

.booking-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-faq-grid article {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.booking-faq-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.booking-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1060px) {
  .hero,
  .contact-layout,
  .booking-hero-grid,
  .booking-pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero-right { order: 2; }
  .book-row { flex-direction: row; }
  .cards,
  .proof-grid,
  .booking-step-grid,
  .booking-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .book-row { flex-direction: column; align-items: stretch; }
  .book-cover {
    width: 100%;
    height: auto;
    max-height: 48vh;
    border-radius: 12px;
  }
  .book-cta { width: 100%; }
}

@media (min-width: 721px) {
  .book-cta { width: auto; }
}

@media (min-width: 1060px) {
  .book-cover { width: 220px; }
  .book-cta { padding-inline: 28px; font-size: 1.05rem; }
}

@media (max-width: 820px) {
  :root {
    --anchor-offset: 128px;
  }

  .header-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 6px 6px 6px 12px;
    border-radius: 999px;
  }

  .brand {
    align-self: center;
  }

  .nav {
    padding: 0;
    position: relative;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-logo-small {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    display: grid;
    gap: 14px;
    width: min(92vw, 360px);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links,
  .nav-actions {
    display: grid;
    gap: 14px;
  }

  .nav-actions {
    margin-left: 0;
  }

  .nav-panel .button {
    width: 100%;
    justify-content: center;
  }

  .cards,
  .proof-grid,
  .trust-row,
  .booking-step-grid,
  .booking-faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px 0;
  }

  .section.alt {
    margin-inline: 0;
    padding-inline: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  body.cookie-banner-visible {
    padding-bottom: 270px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-banner__actions {
    min-width: 0;
  }

  .booking-gate {
    padding: 16px;
  }

  .booking-gate-card {
    padding: 20px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, var(--max-width));
  }

  .section {
    padding: 22px 0;
  }

  .site-header {
    padding-bottom: 36px;
  }

  .header-top {
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 6px;
    gap: 6px;
  }

  .nav {
    padding: 0;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 0.92rem;
    letter-spacing: -0.02em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-panel {
    width: min(94vw, 330px);
    padding: 12px;
    gap: 12px;
  }

  .hero {
    padding-top: 12px;
    gap: 18px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 1.04;
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
  }

  .button-cta {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-card,
  .card,
  .proof-card,
  .contact-card {
    padding: 18px;
  }

  .testimonial-band {
    padding: 18px 16px;
  }

  .testimonial-band blockquote {
    font-size: clamp(1.35rem, 7.2vw, 2rem);
    line-height: 1.16;
  }

  .mini-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .timeline span {
    width: 42px;
    min-width: 42px;
    height: 42px;
    aspect-ratio: auto;
    border-radius: 12px;
    font-size: 1.1rem;
    line-height: 1;
  }

  .booking-embed iframe {
    height: 360px;
  }
}
