/* Marina Betke – Hypnose · Coaching · Mentaltraining
   Shared styles: fonts, reset, header, footer, legal-page layout. */

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/lora-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-variable.woff2') format('woff2');
}

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

button { font-family: inherit; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #E9F2F5;
  color: #26414C;
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #1E5B73; text-decoration: none; }
a:hover { text-decoration: underline; }

@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

.page {
  animation: pageFade .6s ease both;
}

.container {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  background: #0E2F3F;
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F7FBFC;
}

.site-header__mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(91, 176, 208, .85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #BBE4F0;
  background: rgba(247, 251, 252, .06);
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
}

.site-header__names {
  display: grid;
  gap: 2px;
}

.site-header__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  line-height: .95;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header__tagline {
  color: rgba(255, 255, 255, .6);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header__back {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Legal page content */

.legal-article {
  padding: 64px 0 96px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font: 800 13px/1 'Manrope', Arial, sans-serif;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #1E5B73;
}

.legal-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.legal-article h1 {
  margin: 0 0 12px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(34px, 5vw, 52px);
  color: #0E2F3F;
}

.legal-intro {
  margin: 0 0 18px;
  color: #51626A;
  max-width: 660px;
}

.legal-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  background: #DCEEF4;
  border: 1px solid #B6DCE8;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #1E5B73;
}

.legal-card {
  background: #F7FBFC;
  border: 1px solid #CFE0E6;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 40px rgba(14, 47, 63, .05);
}

.legal-card + .legal-card { margin-top: 24px; }

.legal-card--sections {
  display: grid;
  gap: 34px;
}

.legal-card--sections h2 {
  font-size: 24px;
  margin: 0 0 8px;
}

.legal-card--sections section:has(h3) h2 {
  margin-bottom: 14px;
}

.legal-card--sections p { margin: 0 0 16px; }
.legal-card--sections p:last-child { margin-bottom: 0; }

.legal-card h2 {
  margin: 0 0 6px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: #0E2F3F;
}

.legal-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: #1E5B73;
}

.legal-card p {
  margin: 0 0 28px;
  color: #3A4E57;
}

.legal-card p:last-child { margin-bottom: 0; }

.legal-card ul {
  margin: 0 0 10px;
  padding-left: 22px;
  color: #3A4E57;
}

/* Footer */

.site-footer {
  color: rgba(247, 251, 252, .72);
  background: #0A2531;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 0;
  font-size: 14px;
}

.site-footer__links {
  display: flex;
  gap: 22px;
}

.site-footer__links a { color: #BBE4F0; }

/* =========================================================
   Preise (pricing page)
   ========================================================= */

.pricing-intro { max-width: 620px; margin-bottom: 44px !important; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #CFE0E6;
  border-radius: 18px;
  padding: 32px;
  background: #F7FBFC;
  box-shadow: 0 12px 40px rgba(14, 47, 63, .05);
}
.price-card--accent {
  background: #0E2F3F;
  color: #F7FBFC;
  border-color: #0E2F3F;
}

.price-card__name {
  margin: 0 0 4px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: #0E2F3F;
}
.price-card--accent .price-card__name { color: #F7FBFC; }

.price-card__original {
  margin: 0 0 6px;
  color: #7C9099;
  font-size: 14px;
  text-decoration: line-through;
  min-height: 20px;
}
.price-card--accent .price-card__original { color: rgba(247, 251, 252, .55); }

.price-card__amount {
  margin: 0 0 6px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 3.2vw, 38px);
  color: #123C50;
}
.price-card--accent .price-card__amount { color: #F7FBFC; }

.price-card__per-session {
  margin: 0 0 24px;
  color: #51626A;
  font-size: 14px;
  font-weight: 700;
  min-height: 20px;
}
.price-card--accent .price-card__per-session { color: #7CC8E0; }

.price-card__desc { margin: 0 0 24px; color: #51626A; font-size: 15px; flex: 1; }
.price-card--accent .price-card__desc { color: rgba(247, 251, 252, .78); }

.price-card__cta { align-self: flex-start; }

.pricing-note {
  margin-top: 40px;
  color: #51626A;
  font-size: 14px;
}

/* =========================================================
   Startseite (home page)
   ========================================================= */

body.home {
  color: #0E2F3F;
  line-height: 1.6;
  overflow-x: hidden;
}

body.home img { display: block; max-width: 100%; }
body.home summary::-webkit-details-marker { display: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatSoft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes lineGlow { 0%, 100% { opacity: .35; } 50% { opacity: .85; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheetIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }

.wrap { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.wrap--narrow { width: min(900px, calc(100% - 40px)); margin: 0 auto; }

[data-reveal] { opacity: 0; }
[data-reveal].is-visible { animation: revealUp .75s cubic-bezier(.2, .7, .2, 1) both; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font: 800 13px/1 'Manrope', Arial, sans-serif;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #1E5B73;
}
.eyebrow--onlight { color: #7CC8E0; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 17px 30px;
  font: 800 16px/1.15 'Manrope', sans-serif;
  cursor: pointer;
  color: #F7FBFC;
  background: #2E7DA0;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: #1E5B73; transform: translateY(-2px); }
.btn--alt-hover:hover { background: #3E9CC0; transform: translateY(-2px); }
.btn--small { padding: 14px 24px; font-size: 15px; }
.btn--outline {
  color: #1E5B73;
  background: #F7FBFC;
  border: 1px solid #BBD7E1;
}
.btn--outline:hover { background: #EEF6F9; border-color: #2E7DA0; }
.btn--text {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  color: #1E5B73;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F7FBFC;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(187, 228, 240, .5);
  padding-bottom: 3px;
}
.text-link:hover { border-color: #BBE4F0; text-decoration: none; }

/* Home header */

.home-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  animation: fadeUp .8s ease .1s both;
}
.home-header__bar {
  position: relative;
  margin: 14px auto 0;
  min-height: 62px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(91, 176, 208, .32);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 47, 63, .8), rgba(14, 47, 63, .55));
  box-shadow: 0 24px 70px rgba(14, 47, 63, .3);
  backdrop-filter: blur(22px);
}
.home-header__brand { display: flex; align-items: center; gap: 12px; color: #F7FBFC; }
.home-header__mark {
  width: 36px; height: 36px;
  border: 1px solid rgba(91, 176, 208, .85);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #BBE4F0;
  background: rgba(247, 251, 252, .06);
  font-family: 'Lora', Georgia, serif;
  font-size: 15px; font-weight: 500;
}
.home-header__name { font-family: 'Lora', Georgia, serif; font-size: 20px; line-height: .95; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.home-header__tagline { color: rgba(255, 255, 255, .6); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-nav { display: flex; align-items: center; gap: 22px; color: rgba(255, 255, 255, .74); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home-nav a { padding: 6px 0; color: inherit; }
.home-nav a:hover { color: #F7FBFC; }

.home-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.home-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #F7FBFC;
  transition: transform .25s ease, opacity .25s ease;
}
.home-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.home-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.home-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .home-header__burger { display: flex; }

  .home-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    background: #0E2F3F;
    border: 1px solid rgba(91, 176, 208, .32);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(14, 47, 63, .35);
  }
  .home-nav.is-open { display: flex; }
  .home-nav a { padding: 13px 14px; border-radius: 11px; }
  .home-nav a:hover { background: rgba(255, 255, 255, .08); }
}

@media (max-width: 480px) {
  .home-header__bar { gap: 10px; padding: 0 8px 0 12px; }
  .home-header__bar .btn { padding: 10px 14px; font-size: 12px; gap: 6px; }
  .home-header__name { font-size: 15px; }
  .home-header__tagline { display: none; }
  .home-header__mark { width: 30px; height: 30px; font-size: 12px; }
}

/* Hero */

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  color: #F7FBFC;
  background: #0E2F3F;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(14, 47, 63, .96) 0%, rgba(14, 47, 63, .86) 38%, rgba(14, 47, 63, .5) 64%, rgba(14, 47, 63, .12) 100%),
              linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(14, 47, 63, .34));
}
.hero__glowline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  animation: lineGlow 4s ease-in-out infinite;
}
.hero__inner {
  position: relative; z-index: 1;
  min-height: 730px;
  display: grid; align-items: center;
  padding-top: 140px; padding-bottom: 88px;
}
.hero__content { max-width: 720px; padding-top: 32px; }
.hero__eyebrow { margin-bottom: 22px; color: #BBE4F0; opacity: 0; animation: fadeUp .9s ease .2s both; }
.hero__title { margin: 0; max-width: 760px; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-weight: 500; line-height: 1.06; font-size: clamp(44px, 5.4vw, 76px); opacity: 0; animation: fadeUp .9s ease .34s both; }
.hero__lead { max-width: 620px; margin: 28px 0 0; color: rgba(255, 255, 255, .9); font-size: 18px; font-weight: 600; opacity: 0; animation: fadeUp .9s ease .48s both; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 40px; opacity: 0; animation: fadeUp .9s ease .62s both; }
.hero__actions .btn { box-shadow: 0 18px 38px -12px rgba(46, 125, 160, .6); }
.hero__actions .btn:hover { box-shadow: 0 24px 48px -12px rgba(46, 125, 160, .7); }

@media (max-width: 780px) {
  .hero { min-height: 600px; }
  .hero__inner { min-height: 600px; padding-top: 112px; padding-bottom: 56px; }
}

/* Generic sections */

.section { padding: 108px 0; }
.section--alt { background: #F7FBFC; }
.section--dark { background: #0E2F3F; color: #F7FBFC; }

@media (max-width: 780px) {
  .section { padding: 64px 0; }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .5fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin: 0; max-width: 820px; }
.section-head__lead { margin: 0; color: #51626A; font-size: 16.5px; }
.section-head__lead--onlight { color: rgba(255, 255, 255, .78); }

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

h2.h-display, .section-head h2 {
  font-family: 'Lora', Georgia, serif;
  overflow-wrap: break-word;
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(34px, 4.4vw, 60px);
  margin: 0;
}

/* Topics grid */

.topics-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

@media (max-width: 900px) { .topics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .topics-grid { grid-template-columns: 1fr; } }

.topic-card {
  display: block;
  min-height: 296px;
  border: 1px solid #CFE0E6;
  border-radius: 18px;
  padding: 32px;
  background: #F7FBFC;
  box-shadow: 0 12px 40px rgba(14, 47, 63, .05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
a.topic-card, button.topic-card { cursor: pointer; text-align: left; width: 100%; }
.topic-card:hover { transform: translateY(-8px); border-color: rgba(91, 176, 208, .55); box-shadow: 0 28px 70px rgba(14, 47, 63, .16); }
.topic-card--alt { background: #EEF6F9; }
.topic-card--flex { display: flex; flex-direction: column; }
.topic-card__icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; color: #123C50; background: #DCEEF4; }
.topic-card__title { margin: 26px 0 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 24px; font-weight: 500; color: #0E2F3F; }
.topic-card__desc { margin: 13px 0 0; color: #51626A; font-size: 16.5px; line-height: 1.65; }
.topic-card--flex .topic-card__desc { flex: 1; }
.topic-card__link { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: #1E5B73; font-weight: 800; font-size: 15px; }

.free-banner {
  margin-top: 44px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  color: #F7FBFC;
  background: #0E2F3F;
  box-shadow: 0 28px 70px rgba(14, 47, 63, .18);
}
.free-banner__price { color: #7CC8E0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 44px; line-height: 1; font-weight: 500; }
.free-banner__title { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 23px; font-weight: 500; }
.free-banner__desc { margin: 6px 0 0; color: rgba(255, 255, 255, .74); font-size: 16px; }

@media (max-width: 780px) {
  .free-banner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* About */

.about { display: grid; grid-template-columns: minmax(420px, .94fr) minmax(0, 1.06fr); gap: 74px; align-items: center; }
@media (max-width: 780px) { .about { grid-template-columns: 1fr; } }

.about__media { position: relative; min-height: 600px; }
@media (max-width: 780px) { .about__media { min-height: auto; } }

.about__media-main {
  position: absolute; inset: 0 90px 90px 0;
  overflow: hidden; border-radius: 18px;
  background: #DCEAEF;
  box-shadow: 0 28px 70px rgba(14, 47, 63, .16);
}
.about__media-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
@media (max-width: 780px) {
  .about__media-main { position: static; width: 100%; height: 320px; margin-bottom: 16px; }
}

.about__media-secondary {
  position: absolute; right: 0; bottom: -44px; width: 48%; height: 300px;
  border: 12px solid #E9F2F5; overflow: hidden; border-radius: 18px;
  background: #DCEAEF;
  box-shadow: 0 28px 70px rgba(14, 47, 63, .16);
}
.about__media-secondary img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) { .about__media-secondary { display: none; } }

.about__badge {
  position: absolute; left: 34px; bottom: 34px; width: 188px;
  border-radius: 18px; padding: 24px;
  color: #F7FBFC; background: #1E5B73;
  animation: floatSoft 6s ease-in-out infinite;
  box-shadow: 0 20px 44px -16px rgba(14, 47, 63, .5);
}
.about__badge strong { display: block; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 50px; line-height: .9; font-weight: 500; }
.about__badge span { display: block; margin-top: 8px; font-size: 14px; font-weight: 700; }
@media (max-width: 780px) { .about__badge { display: none; } }

.about__content { display: grid; gap: 22px; }
.about__content p { margin: 0; color: #51626A; font-size: 17.5px; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
@media (max-width: 480px) { .about__facts { grid-template-columns: 1fr; } }
.about__fact { border-top: 1px solid #CFE0E6; padding-top: 18px; }
.about__fact strong { display: block; margin-bottom: 7px; font-size: 18px; }
.about__fact p { margin: 0; color: #51626A; font-size: 15.5px; }

/* Why */

.why { display: grid; grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); gap: 70px; align-items: center; }
@media (max-width: 780px) { .why { grid-template-columns: 1fr; } }

.why__lead { margin: 24px 0 0; color: #51626A; font-size: 17px; }
.why__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
@media (max-width: 480px) { .why__facts { grid-template-columns: 1fr; } }
.why__fact { border-top: 1px solid #CFE0E6; padding-top: 22px; }
.why__fact strong { display: block; margin-bottom: 8px; font-size: 18px; }
.why__fact p { margin: 0; color: #51626A; }

.why__media {
  position: relative; min-height: 560px;
  overflow: hidden; border-radius: 18px;
  background: #DCEAEF;
  box-shadow: 0 28px 70px rgba(14, 47, 63, .16);
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__media-caption {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  border-radius: 18px; padding: 26px;
  color: #F7FBFC; background: rgba(14, 47, 63, .86);
  backdrop-filter: blur(14px);
}
.why__media-caption h3 { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 24px; font-weight: 500; }
.why__media-caption p { margin: 8px 0 0; color: rgba(255, 255, 255, .8); font-size: 15.5px; }

/* Process grid */

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(14px);
  transition: transform .25s, background .25s, border-color .25s;
}
.process-card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, .32); background: rgba(255, 255, 255, .12); }
.process-card__num { display: block; margin-bottom: 30px; color: #7CC8E0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 50px; line-height: .9; font-weight: 500; }
.process-card h3 { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 23px; font-weight: 500; }
.process-card p { margin: 13px 0 0; color: rgba(255, 255, 255, .74); }

/* Nervous system statement */

.statement { text-align: center; color: #F7FBFC; }
.statement .eyebrow { margin-bottom: 22px; justify-content: center; }
.statement h2 { margin: 0 0 28px; font-family: 'Lora', Georgia, serif; font-weight: 500; line-height: 1.12; font-size: clamp(28px, 3.4vw, 46px); }
.statement p { margin: 0 auto 20px; max-width: 680px; color: rgba(255, 255, 255, .86); font-size: 18px; }
.statement p:last-child { margin-bottom: 0; color: rgba(255, 255, 255, .7); font-size: 15.5px; }

/* Stats */

.stats-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  overflow: hidden; border: 1px solid #CFE0E6; border-radius: 18px; background: #CFE0E6;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat { min-height: 160px; display: grid; place-items: center; padding: 24px; text-align: center; background: #F7FBFC; }
.stat strong { display: block; color: #123C50; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 54px; line-height: 1; font-weight: 500; }
.stat span { color: #51626A; font-weight: 800; }

/* Stories */

.stories-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 900px) { .stories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .stories-grid { grid-template-columns: 1fr; } }

.story-card {
  overflow: hidden; border: 1px solid #CFE0E6; border-radius: 18px;
  background: #F7FBFC; box-shadow: 0 12px 40px rgba(14, 47, 63, .05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.story-card:hover { transform: translateY(-8px); border-color: rgba(91, 176, 208, .55); box-shadow: 0 28px 70px rgba(14, 47, 63, .16); }
.story-card__media { height: 230px; background: #DCEAEF; }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; }
.story-card__body { padding: 28px; }
.story-card__body h3 { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 23px; font-weight: 500; }
.story-card__body p { margin: 12px 0 0; color: #51626A; }

/* FAQ */

.faq-layout { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); gap: 58px; align-items: start; }
@media (max-width: 780px) { .faq-layout { grid-template-columns: 1fr; } }

.faq-aside-box { margin-top: 32px; border-radius: 18px; padding: 32px; color: #F7FBFC; background: #0E2F3F; }
.faq-aside-box h3 { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 22px; font-weight: 500; }
.faq-aside-box p { margin: 10px 0 0; color: rgba(255, 255, 255, .74); }
.faq-aside-box .btn { margin-top: 24px; }

.faq-item { border-bottom: 1px solid #CFE0E6; }
.faq-item summary { cursor: pointer; padding: 22px 0; font-size: 19px; font-weight: 800; list-style: none; font-family: 'Lora', Georgia, serif; }
.faq-item p { padding: 0 0 24px; margin: 0; color: #51626A; }

/* Trust */

.trust-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px;
  overflow: hidden; border: 1px solid #CFE0E6; border-radius: 18px; background: #CFE0E6;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.trust-cell { min-height: 112px; display: grid; place-items: center; padding: 24px; color: #1E5B73; background: #F7FBFC; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 26px; font-weight: 500; }

.trust-banner {
  margin-top: 34px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px;
  border-radius: 18px; padding: 46px;
  color: #F7FBFC; background: #0E2F3F;
}
@media (max-width: 780px) { .trust-banner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.trust-banner .eyebrow { margin-bottom: 14px; }
.trust-banner h2 { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-weight: 500; line-height: 1.06; font-size: clamp(28px, 3.4vw, 46px); }

/* Booking section */

.booking-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 46px; align-items: end; }
@media (max-width: 780px) { .booking-layout { grid-template-columns: 1fr; } }

.booking-layout h2 { line-height: 1.04; font-size: clamp(32px, 4vw, 56px); }
.booking-layout > div:first-child > p { margin: 24px 0 0; color: #51626A; font-size: 17px; }

.booking-note { margin-top: 34px; border-radius: 18px; padding: 32px; color: #F7FBFC; background: #0E2F3F; }
.booking-note h3 { margin: 0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 22px; font-weight: 500; }
.booking-note p { margin: 10px 0 0; color: rgba(255, 255, 255, .74); }

.booking-card {
  display: grid; gap: 22px;
  border: 1px solid #CFE0E6; border-radius: 18px; padding: 44px;
  background: #F7FBFC; box-shadow: 0 28px 70px rgba(14, 47, 63, .12);
}
.booking-card__title { display: block; color: #123C50; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08; font-weight: 500; }
.booking-card p { margin: 0; color: #51626A; font-size: 16.5px; }
.booking-card__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.booking-card__hint { color: #1E5B73; font-size: 14px; font-weight: 800; }

/* Home footer */

.home-footer { color: rgba(247, 251, 252, .72); background: linear-gradient(180deg, #0E2F3F, #0A2531); }

.home-footer__cta {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px;
  border-bottom: 1px solid rgba(124, 200, 224, .16);
  padding: 58px 0;
}
@media (max-width: 780px) { .home-footer__cta { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.home-footer__cta .eyebrow { margin-bottom: 14px; }
.home-footer__cta h2 { margin: 0; max-width: 760px; color: #F7FBFC; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-weight: 500; line-height: 1.06; font-size: clamp(30px, 3.6vw, 50px); }
.home-footer__cta p { max-width: 620px; margin: 18px 0 0; color: rgba(247, 251, 252, .72); }

.home-footer__cols {
  display: grid; grid-template-columns: 1.25fr .8fr .8fr .9fr; gap: 48px;
  padding: 54px 0 44px;
}
@media (max-width: 780px) { .home-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .home-footer__cols { grid-template-columns: 1fr; } }

.home-footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.home-footer__brand span.mark { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(124, 200, 224, .7); border-radius: 50%; color: #BBE4F0; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 20px; font-weight: 500; }
.home-footer__brand strong { display: block; color: #F7FBFC; font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-size: 26px; letter-spacing: .08em; line-height: .95; text-transform: uppercase; font-weight: 500; }
.home-footer__brand small { color: rgba(247, 251, 252, .55); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-footer__cols > div > p { margin: 0; max-width: 300px; }
.home-footer__cols h3 { margin: 0 0 18px; color: #BBE4F0; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-footer__cols a, .home-footer__cols button {
  display: block;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.home-footer__cols a:hover, .home-footer__cols button:hover { color: #BBE4F0; }

.home-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(124, 200, 224, .14); padding: 24px 0 28px; font-size: 14px; }

/* Booking modal */

.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 30, 40, .6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 24px; overflow-y: auto;
  animation: overlayIn .25s ease;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: #F7FBFC; border-radius: 24px; max-width: 560px; width: 100%; margin: auto;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
  animation: sheetIn .35s cubic-bezier(.2, .8, .2, 1);
  overflow: hidden;
}
.modal__body { padding: clamp(28px, 4vw, 40px); }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.modal__kicker { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #1E5B73; font-weight: 800; margin-bottom: 10px; }
.modal__title { font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-weight: 500; font-size: 30px; color: #0E2F3F; margin: 0; }
.modal__close { background: #DCEAEF; border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 20px; color: #0E2F3F; cursor: pointer; flex-shrink: 0; line-height: 1; }
.modal__intro { font-size: 14.5px; color: #51626A; margin: 0 0 24px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 700; color: #26414C; margin-bottom: 14px; }
.field input, .field select, .field textarea {
  font: 400 15px/1.2 'Manrope', sans-serif;
  padding: 13px 14px;
  border: 1px solid #BBD7E1;
  border-radius: 11px;
  background: #fff;
  color: #0E2F3F;
  outline: none;
}
.field textarea { font: 400 15px/1.5 'Manrope', sans-serif; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #2E7DA0; }
.field-error { font-size: 13px; color: #B4493C; margin: -6px 0 12px; }

.modus-label { font-size: 13px; font-weight: 700; color: #26414C; margin-bottom: 7px; }
.modus-group { display: flex; gap: 10px; margin-bottom: 18px; }
.modus-btn {
  flex: 1; padding: 13px 10px; border-radius: 999px; cursor: pointer;
  font: 800 14px/1 'Manrope', sans-serif; text-align: center; transition: all .15s;
  background: #fff; color: #26414C; border: 1px solid #BBD7E1;
}
.modus-btn.is-active { background: #2E7DA0; color: #F7FBFC; border-color: #2E7DA0; }

.modal__submit { width: 100%; background: #2E7DA0; color: #F7FBFC; border: none; padding: 16px; border-radius: 999px; font: 800 16px/1 'Manrope', sans-serif; cursor: pointer; transition: background .2s; }
.modal__submit:hover { background: #1E5B73; }
.modal__fineprint { font-size: 12px; color: #7C9099; text-align: center; margin: 14px 0 0; }
.modal__submit-error { font-size: 13px; color: #B4493C; text-align: center; margin: 14px 0 0; }

.modal__success { padding: clamp(36px, 5vw, 52px); text-align: center; }
.modal__success-icon { width: 72px; height: 72px; border-radius: 50%; background: #2E7DA0; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.modal__success-icon span { color: #F7FBFC; font-size: 38px; line-height: 1; }
.modal__success h3 { font-family: 'Lora', Georgia, serif; overflow-wrap: break-word; font-weight: 500; font-size: 30px; color: #0E2F3F; margin: 0 0 14px; }
.modal__success p { font-size: 16px; color: #51626A; margin: 0 auto 30px; max-width: 380px; }
