:root {
  --navy: #062b50;
  --navy-deep: #041d36;
  --blue: #075ca8;
  --blue-light: #1882c8;
  --teal: #0f9f9a;
  --gold: #e7ad34;
  --green: #11965b;
  --ink: #10253a;
  --muted: #607185;
  --canvas: #f5f8fb;
  --surface: #ffffff;
  --line: rgba(8, 43, 77, 0.12);
  --shadow-sm: 0 14px 38px rgba(5, 40, 75, 0.08);
  --shadow-lg: 0 28px 80px rgba(4, 35, 66, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
iframe { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid rgba(24, 130, 200, 0.34);
  outline-offset: 3px;
}

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 43, 77, 0.08);
  background: rgba(249, 251, 253, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; min-width: 0; }

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: auto;
  height: 60px;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
.brand-copy { display: grid; min-width: 0; line-height: 1.18; }
.brand-copy strong { font-size: 18px; font-weight: 850; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: 0.015em; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 2px; }
.nav-links a { padding: 10px 11px; border-radius: 999px; color: #334e68; font-size: 13.5px; font-weight: 700; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: rgba(7, 92, 168, 0.07); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #087eaa 58%, var(--teal)); box-shadow: 0 12px 28px rgba(7, 92, 168, 0.22); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(7, 92, 168, 0.3); }
.button-light { color: var(--navy); background: #fff; border-color: var(--line); }
.button-light:hover { border-color: rgba(7, 92, 168, 0.26); box-shadow: var(--shadow-sm); }
.button-white { color: var(--navy); background: #fff; box-shadow: 0 12px 30px rgba(2, 20, 39, 0.18); }
.button-large { min-height: 52px; padding-inline: 24px; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span { display: block; width: 20px; height: 2px; margin: 2px 0; background: var(--navy); border-radius: 2px; transition: 0.2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(247, 251, 255, 0.98) 5%, rgba(241, 249, 251, 0.9) 52%, rgba(232, 245, 250, 0.78)),
    var(--canvas);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: linear-gradient(rgba(8, 67, 116, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 67, 116, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 75%);
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { top: -180px; right: -130px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(15, 159, 154, 0.2), rgba(15, 159, 154, 0)); }
.hero-orb-two { left: 40%; bottom: -300px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(231, 173, 52, 0.12), rgba(231, 173, 52, 0)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 70px; }

.status-badge, .live-badge, .availability, .calendar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-badge { padding: 8px 12px; color: #08734b; background: rgba(17, 150, 91, 0.09); border: 1px solid rgba(17, 150, 91, 0.18); }
.status-dot, .live-badge span, .availability i, .calendar-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(17, 150, 91, 0.11); }

.hero h1 {
  max-width: 750px;
  margin: 24px 0;
  color: var(--navy-deep);
  font-size: clamp(48px, 6.7vw, 82px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span { color: transparent; background: linear-gradient(102deg, var(--blue), var(--teal)); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 650px; margin: 0 0 30px; color: #4c6277; font-size: clamp(17px, 1.7vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 26px; color: var(--muted); font-size: 13px; font-weight: 700; }
.trust-icon { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; font-size: 12px; }
.trust-divider { width: 1px; height: 18px; margin-inline: 8px; background: var(--line); }

.hero-visual { position: relative; min-height: 500px; display: grid; align-items: center; }
.glass-panel { position: relative; z-index: 1; padding: 23px; border: 1px solid rgba(255, 255, 255, 0.84); border-radius: 34px; background: rgba(255, 255, 255, 0.7); box-shadow: var(--shadow-lg); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.panel-kicker { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.14em; }
.panel-head h2 { max-width: 290px; margin: 5px 0 0; font-size: 24px; line-height: 1.15; letter-spacing: -0.035em; }
.live-badge { flex: 0 0 auto; padding: 7px 10px; color: #08734b; background: #ebfaf3; }

.space-preview { position: relative; min-width: 0; max-width: 100%; min-height: 245px; display: flex; align-items: flex-end; overflow: hidden; padding: 26px; color: #fff; background: linear-gradient(135deg, var(--navy-deep), var(--blue) 62%, #139aa2); border-radius: 24px; }
.space-preview::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(0, 25, 55, 0.92) 0%, rgba(0, 35, 65, 0.55) 55%, rgba(0, 25, 50, 0.18) 100%); pointer-events: none; }
.space-preview::after { content: ""; position: absolute; z-index: 2; top: -80px; right: -70px; width: 240px; height: 240px; border: 44px solid rgba(255, 255, 255, 0.08); border-radius: 50%; pointer-events: none; }
.preview-slides { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.preview-slide { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1.15s ease-in-out; }
.preview-slide.is-active { opacity: 1; }
.preview-slide-cu { object-position: center 50%; }
.preview-slide-kopie { object-position: center 58%; }
.preview-slide-muiz { object-position: center 40%; }
.preview-pattern { position: absolute; z-index: 2; inset: 0; overflow: hidden; pointer-events: none; }
.preview-pattern i { position: absolute; display: block; width: 170px; height: 170px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 32px; transform: rotate(34deg); }
.preview-pattern i:nth-child(1) { left: -45px; top: -70px; }
.preview-pattern i:nth-child(2) { left: 100px; top: -18px; }
.preview-pattern i:nth-child(3) { left: 250px; top: 35px; }
.preview-content { position: relative; z-index: 3; }
.preview-content span { display: block; margin-bottom: 6px; color: rgba(255, 255, 255, 0.7); font-size: 12px; font-weight: 700; }
.preview-content strong { font-size: 21px; line-height: 1.3; }
.quick-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 12px; }
.quick-steps div { padding: 12px; border: 1px solid rgba(8, 43, 77, 0.08); border-radius: 15px; background: rgba(255, 255, 255, 0.76); }
.quick-steps b, .quick-steps span { display: block; }
.quick-steps b { color: var(--blue); font-size: 11px; }
.quick-steps span { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 750; }
.floating-note { position: absolute; z-index: 2; min-width: 155px; padding: 13px 16px; border: 1px solid rgba(8, 43, 77, 0.09); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); animation: float 5s ease-in-out infinite; }
.floating-note span, .floating-note strong { display: block; }
.floating-note span { color: var(--muted); font-size: 10px; font-weight: 700; }
.floating-note strong { margin-top: 2px; color: var(--navy); font-size: 13px; }
.note-top { top: 25px; right: -25px; }
.note-bottom { bottom: 22px; left: -35px; animation-delay: -2.5s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.stats-band { position: relative; z-index: 2; border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.72); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { min-height: 112px; display: grid; align-content: center; padding: 20px 32px; border-left: 1px solid var(--line); }
.stats-grid div:last-child { border-right: 1px solid var(--line); }
.stats-grid strong { color: var(--navy); font-size: 28px; font-weight: 900; line-height: 1.15; letter-spacing: -0.035em; }
.stats-grid span { margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 750; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-label { display: inline-block; margin-bottom: 13px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 0.16em; }
.section-heading h2, .terms-intro h2, .contact-copy h2 { margin: 0; color: var(--navy-deep); font-size: clamp(36px, 4.5vw, 56px); font-weight: 880; letter-spacing: -0.055em; line-height: 1.02; }
.section-heading p { max-width: 470px; margin: 0; color: var(--muted); }

.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.space-card { position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(8, 43, 77, 0.09); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 0.28s ease, box-shadow 0.28s ease; }
.space-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(5, 40, 75, 0.13); }
.space-art { position: relative; height: 205px; overflow: hidden; touch-action: pan-y; }
.space-track { width: 100%; height: 100%; display: flex; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.space-slide { min-width: 100%; height: 100%; }
.space-slide img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.4s ease; }
.space-card:hover .space-slide img { transform: scale(1.025); }
.space-art::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(3, 26, 45, 0.22), transparent 52%); pointer-events: none; }
.art-cu { background: linear-gradient(145deg, #073b6f, #087bad); }
.art-kopie { background: linear-gradient(145deg, #16465f, #159590); }
.art-muiz { background: linear-gradient(145deg, #45314a, #a75a4d); }
.availability { position: absolute; z-index: 2; top: 17px; left: 17px; padding: 7px 11px; color: #e6fff4; background: rgba(3, 26, 45, 0.42); border: 1px solid rgba(255, 255, 255, 0.2); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.availability i { background: #54e6a4; box-shadow: none; }
.carousel-button { position: absolute; z-index: 3; top: 50%; width: 35px; height: 35px; display: grid; place-items: center; padding: 0 0 3px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 50%; background: rgba(3, 26, 45, 0.48); box-shadow: 0 5px 15px rgba(3, 26, 45, 0.2); font: 700 28px/1 sans-serif; cursor: pointer; transform: translateY(-50%); transition: background 0.2s, transform 0.2s; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.carousel-button:hover, .carousel-button:focus-visible { background: rgba(3, 26, 45, 0.78); transform: translateY(-50%) scale(1.08); }
.carousel-button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots { position: absolute; z-index: 3; right: 0; bottom: 12px; left: 0; display: flex; justify-content: center; gap: 7px; }
.carousel-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.62); box-shadow: 0 1px 5px rgba(3, 26, 45, 0.35); cursor: pointer; transition: width 0.25s, background 0.25s; }
.carousel-dot.active { width: 22px; border-radius: 99px; background: #fff; }
.carousel-dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.space-monogram { position: absolute; right: 25px; bottom: 5px; color: rgba(255, 255, 255, 0.16); font-size: 92px; font-weight: 950; letter-spacing: -0.09em; line-height: 1; }
.space-body { position: relative; display: flex; flex: 1; flex-direction: column; padding: 25px; }
.space-number { position: absolute; top: 27px; right: 25px; color: #9db0c0; font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.space-body h3 { margin: 0 0 9px; color: var(--navy); font-size: 23px; letter-spacing: -0.035em; }
.space-body > p { margin: 0; color: var(--muted); font-size: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 19px 0 24px; }
.tag-row span { padding: 5px 9px; color: #476077; background: #f0f5f8; border-radius: 999px; font-size: 10.5px; font-weight: 800; }
.card-actions { display: grid; gap: 12px; margin-top: auto; }
.card-actions .button { width: 100%; }
.text-link { width: fit-content; color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(7, 92, 168, 0.25); text-underline-offset: 4px; }
.text-link:hover { text-decoration-color: currentColor; }

.process-section { background: #edf4f8; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-card { position: relative; min-height: 230px; overflow: hidden; padding: 25px; border: 1px solid rgba(8, 43, 77, 0.08); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.84); }
.process-card::after { content: ""; position: absolute; right: -28px; bottom: -45px; width: 115px; height: 115px; border: 22px solid rgba(7, 92, 168, 0.035); border-radius: 50%; transition: transform 0.3s ease; }
.process-card:hover::after { transform: scale(1.12); }
.process-card > span { width: 45px; height: 45px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 14px; font-size: 12px; font-weight: 900; box-shadow: 0 10px 24px rgba(7, 92, 168, 0.2); }
.process-card h3 { margin: 25px 0 8px; color: var(--navy); font-size: 19px; letter-spacing: -0.025em; }
.process-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13.5px; }

.calendar-shell { overflow: hidden; border: 1px solid rgba(8, 43, 77, 0.1); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-lg); }
.calendar-toolbar { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: #f8fafc; }
.calendar-tabs { display: flex; gap: 5px; overflow-x: auto; scrollbar-width: none; }
.calendar-tabs::-webkit-scrollbar { display: none; }
.calendar-tab { flex: 0 0 auto; padding: 10px 15px; color: #50677c; border: 1px solid transparent; border-radius: 10px; background: transparent; cursor: pointer; font-size: 13px; font-weight: 800; transition: 0.2s ease; }
.calendar-tab:hover { color: var(--blue); }
.calendar-tab.active { color: var(--blue); border-color: var(--line); background: #fff; box-shadow: 0 7px 18px rgba(5, 40, 75, 0.06); }
.calendar-status { flex: 0 0 auto; padding: 7px 11px; color: #08734b; background: #eaf9f2; }
.calendar-frame { height: 560px; background: #eef3f7; }
.calendar-frame iframe { width: 100%; height: 100%; border: 0; }
.calendar-note { margin: 0; padding: 16px 20px; color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }

.terms-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-deep), var(--navy) 52%, #075f7e); }
.terms-section::before { content: ""; position: absolute; top: -300px; left: -200px; width: 640px; height: 640px; border: 90px solid rgba(255, 255, 255, 0.025); border-radius: 50%; }
.terms-layout { position: relative; display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 80px; align-items: start; }
.section-label-light { color: #79d8d1; }
.terms-intro { position: sticky; top: 110px; }
.terms-intro h2, .contact-copy h2 { color: #fff; }
.terms-intro > p { max-width: 430px; margin: 20px 0 27px; color: rgba(255, 255, 255, 0.67); }
.official-badge { width: fit-content; display: flex; align-items: center; gap: 9px; padding: 9px 13px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; background: rgba(255, 255, 255, 0.07); font-size: 12px; font-weight: 800; }
.official-badge span { width: 21px; height: 21px; display: grid; place-items: center; color: var(--navy); background: #74ddd0; border-radius: 50%; }
.terms-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.terms-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; background: rgba(255, 255, 255, 0.055); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: background 0.2s, transform 0.2s; }
.terms-list li:hover { transform: translateX(4px); background: rgba(255, 255, 255, 0.085); }
.terms-list span { width: 40px; height: 40px; display: grid; place-items: center; color: #8ce3dc; border: 1px solid rgba(140, 227, 220, 0.22); border-radius: 12px; font-size: 11px; font-weight: 900; }
.terms-list p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 14px; }

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 75px; align-items: start; }
.faq-intro h2 { margin: 0; color: var(--navy-deep); font-size: clamp(34px, 4vw, 49px); line-height: 1.04; letter-spacing: -0.05em; }
.faq-intro p { max-width: 380px; margin: 18px 0 0; color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fbfcfd; transition: border-color 0.2s, background 0.2s; }
.faq-item.open { border-color: rgba(7, 92, 168, 0.18); background: #fff; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; color: var(--navy); border: 0; background: transparent; cursor: pointer; text-align: left; font-size: 14px; font-weight: 820; }
.faq-item button span { flex: 0 0 auto; width: 27px; height: 27px; display: grid; place-items: center; color: var(--blue); border-radius: 8px; background: rgba(7, 92, 168, 0.07); font-size: 19px; transition: transform 0.2s; }
.faq-item.open button span { transform: rotate(45deg); }
.faq-answer p { margin: 0; padding: 0 62px 19px 20px; color: var(--muted); font-size: 13.5px; }

.form-section { background: linear-gradient(180deg, #f7fafc, #edf4f8); }
.booking-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; align-items: start; gap: 20px; }
.booking-aside { position: sticky; top: 102px; overflow: hidden; padding: 32px; color: #fff; background: linear-gradient(145deg, var(--navy-deep), var(--navy) 64%, #086376); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.booking-aside::after { content: ""; position: absolute; right: -90px; bottom: -100px; width: 250px; height: 250px; border: 45px solid rgba(255, 255, 255, 0.05); border-radius: 50%; }
.aside-badge { display: inline-block; padding: 6px 10px; color: #8ce3dc; border: 1px solid rgba(140, 227, 220, 0.2); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-aside h3 { margin: 19px 0 10px; font-size: 30px; line-height: 1.05; letter-spacing: -0.045em; }
.booking-aside > p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 14px; }
.aside-list { position: relative; z-index: 1; display: grid; gap: 15px; margin-top: 30px; }
.aside-list div { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.aside-list span { width: 29px; height: 29px; display: grid; place-items: center; color: var(--navy); background: #79d8d1; border-radius: 9px; font-size: 11px; font-weight: 900; }
.aside-list p { margin: 3px 0 0; color: rgba(255, 255, 255, 0.73); font-size: 12.5px; }
.aside-contact { position: relative; z-index: 1; display: grid; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.aside-contact small { color: rgba(255, 255, 255, 0.55); }
.aside-contact a { margin-top: 3px; font-weight: 800; word-break: break-word; }

.booking-form { padding: 32px; border: 1px solid rgba(8, 43, 77, 0.1); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.form-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 27px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading div, .form-heading span, .form-heading strong { display: block; }
.form-heading div > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.form-heading strong { margin-top: 4px; color: var(--navy); font-size: 18px; }
.required-note { color: var(--muted); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #304b63; font-size: 12px; font-weight: 800; }
.field label > span { color: #c33838; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 12px 14px; color: var(--ink); border: 1px solid rgba(8, 43, 77, 0.16); border-radius: 12px; outline: 0; background: #fbfcfd; transition: border 0.2s, box-shadow 0.2s, background 0.2s; }
.field textarea { min-height: 116px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #97a6b3; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(7, 92, 168, 0.09); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #cf5b5b; }
.confirmation { display: flex !important; align-items: flex-start; gap: 12px; padding: 16px; border: 1px solid rgba(8, 43, 77, 0.09); border-radius: 14px; background: #f5f9fb; cursor: pointer; }
.confirmation input { flex: 0 0 auto; width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--blue); }
.confirmation span { color: var(--muted) !important; font-size: 12px; font-weight: 500; }
.confirmation b { color: var(--ink); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 23px; padding-top: 23px; border-top: 1px solid var(--line); }
.form-footer > p { max-width: 265px; margin: 0; color: var(--muted); font-size: 11.5px; }
.form-actions { display: flex; justify-content: flex-end; gap: 9px; }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; font-size: 13px; font-weight: 750; }
.form-status.success { display: block; color: #08734b; border: 1px solid #b9e7d0; background: #ebfaf3; }
.form-status.error { display: block; color: #a53636; border: 1px solid #f0c4c4; background: #fff1f1; }

.contact-section { color: #fff; background: var(--navy-deep); }
.contact-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 65px; align-items: center; }
.contact-copy > p { max-width: 420px; margin: 19px 0 27px; color: rgba(255, 255, 255, 0.67); }
.contact-card { display: grid; gap: 1px; overflow: hidden; margin: 0; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.07); font-style: normal; }
.contact-card > div { display: grid; grid-template-columns: 43px 1fr; gap: 14px; padding: 17px 20px; background: rgba(255, 255, 255, 0.025); }
.contact-icon { width: 37px; height: 37px; display: grid; place-items: center; color: #79d8d1; border: 1px solid rgba(121, 216, 209, 0.18); border-radius: 11px; font-size: 9px; font-weight: 900; }
.contact-card p, .contact-card small, .contact-card strong, .contact-card p > span, .contact-card a { display: block; }
.contact-card p { margin: 0; }
.contact-card small { margin-bottom: 2px; color: rgba(255, 255, 255, 0.48); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.contact-card strong, .contact-card p > span, .contact-card a { color: rgba(255, 255, 255, 0.82); font-size: 13px; font-weight: 650; }
.contact-card a { width: fit-content; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.25); text-underline-offset: 3px; }

.site-footer { padding: 34px 0; background: #03172b; color: rgba(255, 255, 255, 0.54); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 35px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255, 255, 255, 0.54); }
.footer-grid p { margin: 0; font-size: 11.5px; }
.footer-grid p strong { color: rgba(255, 255, 255, 0.77); }
.copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1050px) {
  .brand { gap: 12px; }
  .brand-mark img { height: 54px; max-width: 145px; }
  .nav-links a { padding-inline: 8px; font-size: 12.5px; }
  .hero-grid { gap: 42px; }
  .space-grid { grid-template-columns: repeat(2, 1fr); }
  .space-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: center; }
  .booking-layout { grid-template-columns: 0.82fr 1.18fr; }
}

@media (max-width: 900px) {
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: grid; }
  .nav-book { display: none; }
  .nav-links { position: fixed; top: 88px; right: 20px; left: 20px; display: grid; visibility: hidden; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-10px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; }
  .nav-links.open { visibility: visible; opacity: 1; transform: none; }
  .nav-links a { padding: 12px 14px; font-size: 14px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(610px, 100%); min-height: 460px; margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid div:nth-child(3) { border-top: 1px solid var(--line); }
  .stats-grid div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-layout { grid-template-columns: 1fr; gap: 42px; }
  .terms-intro { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 68px 0; }
  .nav-wrap { min-height: 70px; }
  .brand { gap: 10px; }
  .brand-mark img { height: 44px; max-width: 118px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 9px; line-height: 1.25; }
  .nav-links { top: 78px; right: 14px; left: 14px; }
  .hero { text-align: left; }
  .hero h1 { margin-block: 20px; font-size: clamp(44px, 14vw, 62px); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 7px; font-size: 11.5px; }
  .hero-visual { min-height: 400px; }
  .glass-panel { padding: 15px; border-radius: 24px; }
  .panel-head { gap: 10px; }
  .panel-head h2 { font-size: 19px; }
  .live-badge { font-size: 10px; }
  .space-preview { min-height: 215px; padding: 20px; }
  .preview-slide-cu { object-position: 58% center; }
  .preview-slide-kopie { object-position: 52% center; }
  .preview-slide-muiz { object-position: 50% 35%; }
  .quick-steps { gap: 5px; }
  .quick-steps div { padding: 9px 7px; }
  .floating-note { display: none; }
  .stats-grid div { min-height: 96px; padding: 17px; }
  .stats-grid strong { font-size: 22px; }
  .section-heading { display: grid; gap: 18px; margin-bottom: 30px; }
  .section-heading h2, .terms-intro h2, .contact-copy h2 { font-size: 36px; }
  .space-grid { grid-template-columns: 1fr; }
  .space-card:last-child { grid-column: auto; width: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .calendar-toolbar { align-items: stretch; flex-direction: column; }
  .calendar-status { margin-left: 4px; }
  .calendar-frame { height: 510px; }
  .terms-list li { grid-template-columns: 39px 1fr; gap: 12px; padding: 16px; }
  .terms-list span { width: 36px; height: 36px; }
  .faq-item button { padding-inline: 16px; }
  .faq-answer p { padding: 0 50px 17px 16px; }
  .booking-aside, .booking-form { padding: 22px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-heading { display: grid; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer > p { max-width: none; }
  .form-actions { display: grid; grid-template-columns: 1fr; }
  .form-actions .button { width: 100%; }
  .contact-card > div { padding-inline: 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .copyright { grid-column: auto; }
}

@media (max-width: 380px) {
  .brand { gap: 8px; }
  .brand-mark img { height: 39px; max-width: 102px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .hero-trust .trust-divider { display: none; }
  .quick-steps { grid-template-columns: 1fr; }
  .hero-visual { min-height: 490px; }
}
