@charset "UTF-8";

:root {
  --blue: #105cff;
  --blue-bright: #2e78ff;
  --blue-soft: #dfe9ff;
  --ink: #07111d;
  --ink-2: #0d1926;
  --graphite: #16222e;
  --paper: #f7f9fc;
  --surface: #eef2f6;
  --white: #fff;
  --text: #111b25;
  --muted: #5d6874;
  --line: #d8dee5;
  --line-dark: rgba(255, 255, 255, 0.15);
  --heading: "Bahnschrift", "DIN Alternate", "Arial Narrow", sans-serif;
  --body: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  --container: 1240px;
  --wide: 1450px;
  --shadow: 0 30px 80px rgba(7, 17, 29, 0.16);
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 0.45em;
  font-family: var(--heading);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.content-grid > *, .section-head > *, .service-pane > *, .room-layout > *, .calendar-shell > *, .faq-layout > *, .contact-layout > * { min-width: 0; }

h1 { font-size: clamp(4.4rem, 8.1vw, 9rem); }
h2 { font-size: clamp(3.1rem, 5.7vw, 6.3rem); }
h3 { font-size: clamp(1.5rem, 2.3vw, 2.25rem); }
p { margin: 0 0 1.3em; }

::selection { color: var(--white); background: var(--blue); }

.container, .container-wide {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.container-wide { width: min(calc(100% - 64px), var(--wide)); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span { display: block; width: 0; height: 100%; background: var(--blue-bright); }

.overline, .kicker {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overline { margin-bottom: 26px; }

.section { position: relative; padding: 150px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.52fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 75px;
}

.section-head h2 { margin: 0; }
.section-head > p { margin: 0 0 10px; color: var(--muted); font-size: 1.06rem; }
.section-head--light h2 { color: var(--white); }
.section-head--light > p { color: #b8c5d1; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: var(--blue); border-color: var(--blue); }
.btn--primary:hover { background: #0a48cc; border-color: #0a48cc; }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.btn--dark { color: var(--white); background: var(--ink); }

.action-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.text-link {
  display: inline-flex;
  width: fit-content;
  gap: 35px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link span { color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 17, 29, .95);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(16px);
}

.header-inner { display: flex; height: 100%; align-items: center; gap: 38px; }
.brand { flex: 0 0 auto; }
.brand img { width: 188px; height: auto; filter: brightness(0) invert(1); }

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(12px, 1.35vw, 26px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: #d0dae4;
  font-size: .74rem;
  font-weight: 750;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover, .site-nav a.is-active { color: var(--white); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
  padding: 0 14px;
  color: var(--white);
  background: var(--blue);
  font-size: .72rem;
  font-weight: 800;
}

.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

/* Side rail */
.section-rail {
  position: fixed;
  z-index: 50;
  top: 50%;
  left: 17px;
  display: grid;
  gap: 3px;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.section-rail a {
  display: flex;
  width: 74px;
  align-items: center;
  gap: 8px;
  color: #aab2bb;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
}

.section-rail a::before { width: 5px; height: 1px; content: ""; background: currentColor; transition: width .2s; }
.section-rail a.is-active { color: #fff; }
.section-rail a.is-active::before { width: 15px; }
.section-rail span { font-size: .5rem; opacity: .7; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 920px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-media { position: absolute; z-index: -3; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5,12,21,.98) 0%, rgba(5,12,21,.93) 35%, rgba(5,12,21,.48) 67%, rgba(5,12,21,.18) 100%), linear-gradient(0deg, rgba(7,17,29,.7), transparent 40%); }

.hero-grid, .calendar-grid, .contact-grid-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.hero-line { position: absolute; z-index: -1; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-bright), transparent); transform: rotate(-13deg); transform-origin: left; opacity: .55; }
.hero-line--one { top: 44%; left: -8%; width: 68%; }
.hero-line--two { right: -14%; bottom: 23%; width: 48%; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: end;
  margin-top: auto;
  margin-bottom: 110px;
  padding-top: 160px;
}

.hero-copy { width: 100%; min-width: 0; max-width: 990px; padding-left: 76px; }
.hero-copy .kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; color: #b6c7d7; }
.signal { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 7px rgba(46,120,255,.13); }
.hero h1 { max-width: 980px; margin-bottom: 28px; text-transform: uppercase; overflow-wrap: anywhere; hyphens: manual; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.78); }
.hero-copy > p { max-width: 700px; color: #c5d0da; font-size: clamp(1rem, 1.45vw, 1.22rem); line-height: 1.6; }
.hero-copy .action-row { margin-top: 37px; }

.hero-status { align-self: end; border: 1px solid rgba(255,255,255,.2); background: rgba(8,18,29,.72); backdrop-filter: blur(16px); }
.status-head { display: flex; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.status-head > span { color: #8fa1b1; }
.status-head strong { color: #dce7f0; font-weight: 800; }
.status-head i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #54d29c; box-shadow: 0 0 10px #54d29c; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; }
.status-grid div { min-height: 96px; padding: 17px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.status-grid div:nth-child(even) { border-right: 0; }
.status-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.status-grid span, .status-grid strong { display: block; }
.status-grid span { margin-bottom: 14px; color: #6f8496; font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; }
.status-grid strong { color: #f4f7fa; font-size: .79rem; line-height: 1.35; }

.hero-foot { position: absolute; right: 0; bottom: 20px; left: 0; display: flex; justify-content: space-between; color: #778997; font-size: .6rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.signal-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.signal-strip__inner { display: grid; grid-template-columns: 1.1fr repeat(5, 1fr); }
.signal-strip__inner > span { display: flex; min-height: 86px; align-items: center; justify-content: center; border-right: 1px solid var(--line); color: #34414c; font-family: var(--heading); font-size: .9rem; font-weight: 650; letter-spacing: .02em; text-transform: uppercase; }
.signal-strip__inner > span:last-child { border-right: 0; }
.signal-strip__label { justify-content: flex-start !important; color: var(--blue) !important; font-family: var(--body) !important; font-size: .64rem !important; letter-spacing: .14em !important; }

/* Manifesto */
.manifesto { background: var(--white); }
.content-grid { display: grid; grid-template-columns: 115px minmax(0, 1.25fr) minmax(250px, .52fr); gap: 70px; align-items: start; }
.section-code { display: grid; padding-top: 8px; color: var(--blue); }
.section-code span { font-family: var(--heading); font-size: 2rem; font-weight: 650; }
.section-code small { color: var(--muted); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.manifesto-copy h2 { font-size: clamp(3.1rem, 5vw, 5.6rem); line-height: 1.02; }
.manifesto-copy em { color: #929ca6; font-style: normal; font-weight: 400; }
.manifesto-aside { padding-top: 55px; }
.manifesto-aside p { color: var(--muted); font-size: 1rem; }
.manifesto-aside .text-link { margin-top: 20px; }

/* Services */
.services { background: var(--paper); }
.service-console { border: 1px solid #bcc6d0; background: var(--white); box-shadow: var(--shadow); }
.service-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #bcc6d0; }
.service-tab { min-height: 84px; padding: 18px 22px; border: 0; border-right: 1px solid #bcc6d0; background: var(--surface); text-align: left; cursor: pointer; font-family: var(--heading); font-size: .92rem; font-weight: 650; transition: color .2s, background .2s; }
.service-tab:last-child { border-right: 0; }
.service-tab span { display: block; margin-bottom: 7px; color: #8c98a4; font-family: var(--body); font-size: .57rem; letter-spacing: .12em; }
.service-tab:hover { background: #e5ebf1; }
.service-tab.is-active { color: var(--white); background: var(--ink); }
.service-tab.is-active span { color: #7da6ff; }

.service-stage { min-height: 500px; }
.service-pane { display: grid; grid-template-columns: 180px minmax(250px, .65fr) minmax(330px, 1fr); gap: 65px; align-items: center; min-height: 500px; padding: 60px 70px; }
.service-pane[hidden] { display: none; }
.service-icon { display: grid; width: 150px; height: 150px; place-items: center; color: var(--blue); border: 1px solid #cbd5df; background: repeating-linear-gradient(0deg, transparent 0 14px, #edf1f5 15px), repeating-linear-gradient(90deg, transparent 0 14px, #edf1f5 15px); }
.service-icon svg { width: 100px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: square; stroke-linejoin: miter; }
.service-index { margin-bottom: 22px; color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-pane h3 { margin-bottom: 20px; font-size: clamp(2.4rem, 3.5vw, 4rem); overflow-wrap: anywhere; hyphens: auto; }
.service-pane > div p:last-child { color: var(--muted); }
.service-pane ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-pane li { position: relative; min-height: 63px; padding: 18px 16px 14px 29px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .85rem; font-weight: 700; line-height: 1.35; }
.service-pane li:nth-child(even) { border-right: 0; }
.service-pane li::before { position: absolute; top: 25px; left: 10px; width: 7px; height: 7px; content: ""; border: 1px solid var(--blue); transform: rotate(45deg); }
.console-foot { display: flex; justify-content: space-between; padding: 14px 18px; color: #73808c; border-top: 1px solid #bcc6d0; background: var(--surface); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.console-foot a { color: var(--text); }
.console-foot b { color: var(--blue); }

/* Advantages */
.advantages { color: var(--white); background: var(--ink); }
.advantages::before { position: absolute; inset: 0; content: ""; opacity: .1; background-image: radial-gradient(#8fa8c0 1px, transparent 1px); background-size: 20px 20px; mask-image: linear-gradient(90deg, transparent, black 60%, transparent); }
.advantage-board { position: relative; display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: minmax(260px, auto) minmax(210px, auto); border: 1px solid #3b4956; background: #3b4956; gap: 1px; }
.advantage-board article { background: var(--ink-2); }
.advantage-main { grid-row: 1 / 3; padding: 48px; overflow: hidden; }
.board-label { display: block; margin-bottom: 100px; color: #74889a; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.advantage-main > strong { display: block; max-width: 330px; margin-bottom: 25px; font-family: var(--heading); font-size: clamp(3rem, 4.8vw, 5rem); font-weight: 650; line-height: .95; letter-spacing: -.04em; }
.advantage-main p { max-width: 440px; color: #aebdca; }
.pulse-line { position: relative; height: 70px; margin-top: 55px; overflow: hidden; }
.pulse-line::before { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; content: ""; background: #344556; }
.pulse-line i { position: absolute; top: 13px; left: -20%; width: 42%; height: 42px; border-top: 2px solid var(--blue-bright); clip-path: polygon(0 48%, 28% 48%, 34% 5%, 42% 95%, 50% 48%, 100% 48%, 100% 54%, 51% 54%, 42% 100%, 34% 12%, 29% 54%, 0 54%); background: var(--blue-bright); animation: pulse-run 5s linear infinite; }
@keyframes pulse-run { to { left: 110%; } }
.advantage-cell { padding: 34px; }
.advantage-cell > span { display: block; margin-bottom: 50px; color: #6e8497; font-size: .65rem; }
.advantage-cell h3 { font-size: 1.55rem; line-height: 1.1; }
.advantage-cell p { margin: 0; color: #9daeba; font-size: .84rem; }
.advantage-stat { display: flex; flex-direction: column; justify-content: end; padding: 34px; background: #10243d !important; }
.advantage-stat small { color: #7195c6; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }
.advantage-stat strong { font-family: var(--heading); font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1; }
.advantage-stat span { color: #9fb3c5; font-size: .76rem; }

/* Room */
.room { background: var(--white); }
.room-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr); gap: 90px; align-items: center; }
.room-visual { position: relative; min-height: 760px; }
.room-visual::before { position: absolute; z-index: 0; top: -20px; right: -20px; width: 36%; height: 44%; content: ""; background: var(--blue); }
.room-visual img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.room-badge { position: absolute; z-index: 2; right: -38px; bottom: 34px; width: 190px; padding: 23px; color: var(--white); background: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.room-badge span, .room-badge strong, .room-badge small { display: block; }
.room-badge span { color: #7e92a5; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.room-badge strong { margin: 7px 0; font-family: var(--heading); font-size: 2.55rem; line-height: 1; }
.room-badge small { color: #b2c0cd; }
.room-coordinates { position: absolute; z-index: 2; bottom: -30px; left: 0; color: #788592; font-size: .6rem; font-weight: 800; letter-spacing: .14em; }
.room-copy h2 { font-size: clamp(3.1rem, 5vw, 5.4rem); }
.room-copy > p:not(.overline) { color: var(--muted); }
.room-data { margin: 35px 0; border-top: 1px solid var(--line); }
.room-data div { display: grid; grid-template-columns: 105px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.room-data dt { color: #7b8792; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.room-data dd { margin: 0; font-size: .87rem; font-weight: 650; line-height: 1.5; }
.price-band { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 0; border: 1px solid var(--line); }
.price-band > div { padding: 20px; }
.price-band > div:first-child { border-right: 1px solid var(--line); }
.price-band span, .price-band strong, .price-band small { display: block; }
.price-band span { color: #7d8994; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.price-band strong { font-family: var(--heading); font-size: 2.2rem; line-height: 1.2; }
.price-band small { color: var(--muted); font-size: .68rem; }
.action-row--dark .text-link { margin-left: 8px; }

/* Calendar */
.calendar-section { color: var(--white); background: #091522; overflow: hidden; }
.calendar-grid { z-index: 0; opacity: .18; mask-image: linear-gradient(180deg, black, transparent 70%); }
.calendar-section .container { position: relative; z-index: 1; }
.calendar-shell { display: grid; grid-template-columns: 320px minmax(0, 1fr); border: 1px solid #364859; background: #142333; box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.calendar-meta-panel { display: flex; flex-direction: column; min-width: 0; padding: 28px; border-right: 1px solid #364859; background: #0d1a27; }
.calendar-live { display: flex; align-items: center; gap: 10px; color: #9aafc0; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.calendar-live i { width: 7px; height: 7px; border-radius: 50%; background: #54d29c; box-shadow: 0 0 13px #54d29c; }
.calendar-room-id { margin: 44px 0 30px; padding-bottom: 28px; border-bottom: 1px solid #314252; }
.calendar-room-id small, .calendar-room-id strong { display: block; }
.calendar-room-id small { color: #70879a; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.calendar-room-id strong { font-family: var(--heading); font-size: 2rem; line-height: 1.2; letter-spacing: .02em; }
.calendar-meta-panel dl { margin: 0; }
.calendar-meta-panel dl div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid #263747; font-size: .78rem; }
.calendar-meta-panel dt { color: #6f8496; }
.calendar-meta-panel dd { margin: 0; color: #dce5ec; font-weight: 700; text-align: right; }
.calendar-booking { display: grid; gap: 3px; margin-top: 34px; }
.calendar-booking span { margin-bottom: 8px; color: #6f8496; font-size: .62rem; text-transform: uppercase; letter-spacing: .09em; }
.calendar-booking strong { font-size: .95rem; }
.calendar-booking a { width: fit-content; color: #b8c9d7; font-size: .78rem; overflow-wrap: anywhere; }
.calendar-booking a:hover { color: var(--white); }
.pdf-link { display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; margin-top: auto; padding: 15px 0 0; border-top: 1px solid #314252; }
.pdf-link span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--white); background: var(--blue); font-size: .6rem; font-weight: 800; }
.pdf-link b { font-size: .74rem; }
.pdf-link i { color: var(--blue-bright); font-style: normal; }
.calendar-frame-wrap { min-width: 0; background: #f5f7fa; overflow: hidden; }
.calendar-toolbar { display: flex; height: 45px; align-items: center; justify-content: space-between; padding: 0 16px; color: #9cacba; background: #142333; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.calendar-frame { width: 100% !important; height: 620px; min-height: 620px; border: 0 !important; background: #fff; }
.calendar-fallback { min-height: 220px; padding: 40px; color: var(--text); }
.calendar-note { display: flex; max-width: 850px; gap: 25px; margin: 27px 0 0 auto; color: #8fa3b4; font-size: .77rem; }
.calendar-note span { color: #6f94e5; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Process */
.process { background: var(--paper); }
.process-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: none; }
.process-track::before { position: absolute; top: 31px; right: 6%; left: 6%; height: 1px; content: ""; background: #bfc9d3; }
.process-track li { position: relative; padding-right: 35px; }
.process-track li > span { position: relative; z-index: 1; display: grid; width: 64px; height: 64px; place-items: center; margin-bottom: 38px; color: var(--blue); border: 1px solid #aab8c6; background: var(--paper); font-family: var(--heading); font-size: .9rem; font-weight: 650; }
.process-track li h3 { font-size: 1.35rem; line-height: 1.15; }
.process-track li p { color: var(--muted); font-size: .82rem; }

/* FAQ */
.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq-intro > p:not(.overline) { max-width: 400px; color: var(--muted); }
.faq-intro .text-link { margin-top: 16px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; width: 100%; grid-template-columns: 1fr 34px; gap: 25px; align-items: center; padding: 26px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 750; }
.faq-question > span { position: relative; width: 32px; height: 32px; border: 1px solid #aab8c6; border-radius: 50%; }
.faq-question > span::before, .faq-question > span::after { position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; content: ""; background: var(--blue); transform: translate(-50%,-50%); }
.faq-question > span::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s; }
.faq-question[aria-expanded="true"] > span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 700px; margin: 0; padding: 0 70px 26px 0; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

/* Contact */
.contact { position: relative; padding: 150px 0; color: var(--white); background: var(--ink); overflow: hidden; isolation: isolate; }
.contact-grid-bg { mask-image: radial-gradient(circle at 20% 50%, black, transparent 75%); }
.contact::after { position: absolute; z-index: -1; top: -100px; right: -100px; width: 480px; height: 480px; content: ""; border: 80px solid rgba(16,92,255,.12); border-radius: 50%; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 540px; gap: 100px; align-items: center; }
.contact-copy h2 { max-width: 750px; }
.contact-copy > p:not(.overline) { max-width: 650px; color: #b3c1ce; }
.contact-copy .action-row { margin-top: 40px; }
.contact-command { border: 1px solid #3c4b5a; background: rgba(12,25,38,.84); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.contact-command__head { display: flex; justify-content: space-between; padding: 15px 18px; color: #8498aa; border-bottom: 1px solid #334554; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-command__head i { color: #54d29c; font-style: normal; }
.contact-person { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 23px; border-bottom: 1px solid #334554; }
.contact-person > span { color: #5f7a93; font-size: .65rem; }
.contact-person small, .contact-person strong, .contact-person a { display: block; }
.contact-person small { margin-bottom: 5px; color: #7990a4; font-size: .63rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-person strong { font-family: var(--heading); font-size: 1.3rem; }
.contact-person a { width: fit-content; color: #c1cfda; font-size: .83rem; }
.contact-person--room { background: #10243d; }
.contact-mail { display: flex; justify-content: space-between; padding: 21px 23px; color: var(--white); background: var(--blue); font-family: var(--heading); font-size: 1.2rem; }

/* Footer */
.site-footer { color: #a8b5c0; background: #050b11; }
.footer-main { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 80px; padding-top: 70px; padding-bottom: 60px; }
.footer-brand img { width: 190px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { margin: 0; color: #71818f; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-links, .footer-direct { display: grid; align-content: start; gap: 9px; font-size: .82rem; }
.footer-links a:hover, .footer-direct a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; padding-bottom: 25px; border-top: 1px solid #21303c; font-size: .68rem; }

.agency-credit {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: #758593;
  font-weight: 600;
  letter-spacing: .02em;
}

.agency-credit:hover { color: var(--white); }

/* Coming soon */
.coming-soon { min-height: 100svh; color: var(--white); background: var(--ink); overflow: hidden; }
.coming-shell { position: relative; z-index: 1; display: grid; min-height: 100svh; grid-template-rows: auto minmax(0, 1fr) auto; padding: 38px 0 24px; }
.coming-bg { position: fixed; z-index: 0; inset: 0; }
.coming-bg img { width: 100%; height: 100%; object-fit: cover; }
.coming-bg::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5,12,21,.98), rgba(5,12,21,.86) 55%, rgba(5,12,21,.35)), linear-gradient(0deg, rgba(5,12,21,.75), transparent); }
.coming-grid { position: fixed; z-index: 1; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, black, transparent); }
.coming-top { display: flex; justify-content: space-between; align-items: center; }
.coming-logo { width: 215px; height: auto; filter: brightness(0) invert(1); }
.coming-status { color: #9fb0bf; font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.coming-status i { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px var(--blue-bright); }
.coming-content { align-self: center; max-width: 900px; padding: 38px 0 30px; }
.coming-content h1 { max-width: 800px; margin-bottom: 20px; font-size: clamp(3.7rem, 6vw, 6.8rem); text-transform: uppercase; }
.coming-content h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.75); }
.coming-content > p:not(.overline) { max-width: 650px; color: #c1ccd5; font-size: 1rem; }
.coming-contacts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.coming-contacts a { padding: 11px 14px; border: 1px solid rgba(255,255,255,.25); font-size: .78rem; font-weight: 700; }
.coming-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.16); color: #7f909f; font-size: .65rem; }
.coming-bottom div { display: flex; gap: 24px; }
.coming-bottom .agency-credit { color: #8393a1; }
.coming-bottom .agency-credit:hover { color: #c6d1da; }

/* Internal / legal pages */
.inner-page { background: var(--paper); }
.inner-page .site-header { position: relative; color: var(--white); background: var(--ink); }
.inner-hero { position: relative; padding: 110px 0 100px; color: var(--white); background: var(--ink); overflow: hidden; }
.inner-hero::after { position: absolute; top: -260px; right: -130px; width: 620px; height: 620px; content: ""; border: 110px solid rgba(16,92,255,.12); border-radius: 50%; }
.inner-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 9px; margin-bottom: 35px; color: #8394a4; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.inner-hero h1 { max-width: 1050px; font-size: clamp(3.4rem, 6.2vw, 6.4rem); }
.inner-hero p { max-width: 710px; color: #adbdca; }
.inner-content { padding: 110px 0; }
.inner-section-head { display: grid; grid-template-columns: 90px .7fr 1fr; gap: 45px; align-items: start; padding: 38px 0; border-top: 1px solid var(--line); }
.inner-section-head > span { color: var(--blue); font-size: .7rem; font-weight: 800; }
.inner-section-head h2 { font-size: clamp(2rem, 3.4vw, 3.7rem); }
.inner-section-head p { color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.tag-cloud li { padding: 8px 11px; color: #34414c; border: 1px solid #c9d2da; background: var(--white); font-size: .76rem; font-weight: 700; }
.inner-room-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.inner-room-grid img { width: 100%; aspect-ratio: 3/2; object-fit: cover; box-shadow: var(--shadow); }
.inner-panel { padding: 35px; border: 1px solid var(--line); background: var(--white); }
.inner-panel h2 { font-size: 2.8rem; }
.legal-card { max-width: 880px; padding: 45px; border-left: 4px solid var(--blue); background: var(--white); box-shadow: var(--shadow); }
.legal-card h2 { font-size: 2.3rem; }
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.contact-option { min-height: 270px; padding: 32px; background: var(--white); }
.contact-option > span { display: block; margin-bottom: 65px; color: var(--blue); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-option strong, .contact-option a { display: block; }
.contact-option strong { font-family: var(--heading); font-size: 1.5rem; }
.contact-option a { width: fit-content; margin-top: 6px; color: var(--muted); font-size: .84rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1250px) {
  .header-cta { display: none; }
  .section-rail { display: none; }
  .hero-copy { padding-left: 0; }
  .service-pane { gap: 40px; padding: 50px 40px; }
  .room-layout { gap: 65px; }
  .contact-layout { grid-template-columns: 1fr 480px; gap: 70px; }
}

@media (max-width: 1040px) {
  .container, .container-wide { width: min(calc(100% - 44px), var(--container)); }
  .section { padding: 115px 0; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header.is-scrolled { backdrop-filter: none; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - 72px);
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 25px 22px 55px;
    background: rgba(7,17,29,.99);
    opacity: 0;
    overflow-y: auto;
    transform: translateY(-12px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 110;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 15px 4px; border-bottom: 1px solid #263746; font-family: var(--heading); font-size: 1.2rem; }
  .site-nav a::after { display: none; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 880px; }
  .hero-inner { grid-template-columns: 1fr; align-items: end; margin-bottom: 85px; }
  .hero-status { display: none; }
  .hero-copy { max-width: 780px; }
  .content-grid { grid-template-columns: 75px 1fr; }
  .manifesto-aside { grid-column: 2; padding-top: 0; }
  .service-pane { grid-template-columns: 130px 1fr; }
  .service-icon { width: 120px; height: 120px; }
  .service-pane ul { grid-column: 1 / -1; }
  .advantage-board { grid-template-columns: 1fr 1fr; }
  .advantage-main { grid-row: auto; grid-column: 1 / -1; }
  .room-layout { grid-template-columns: 1fr; }
  .room-visual { min-height: 620px; }
  .room-badge { right: 25px; }
  .calendar-shell { grid-template-columns: 270px minmax(0, 1fr); }
  .calendar-frame { height: 520px; min-height: 520px; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 45px 20px; }
  .process-track::before { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-command { max-width: 650px; }
  .inner-section-head { grid-template-columns: 65px 1fr; }
  .inner-section-head > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container, .container-wide { width: min(calc(100% - 30px), var(--container)); }
  .site-header, .site-header.is-scrolled { height: 68px; }
  .brand img { width: 165px; }
  .site-nav { height: calc(100dvh - 68px); }
  .section { padding: 86px 0; }
  h1 { font-size: clamp(3.25rem, 16.5vw, 5.6rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .btn { width: 100%; }
  .action-row { width: 100%; }
  .hero { min-height: 800px; }
  .hero-media img { object-position: 60% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(5,12,21,.97), rgba(5,12,21,.77)), linear-gradient(0deg, rgba(5,12,21,.85), transparent); }
  .hero-inner { margin-bottom: 72px; padding-top: 120px; }
  .hero-copy .kicker { margin-bottom: 24px; }
  .hero-copy { padding-left: 0; }
  .hero-copy > p { font-size: .96rem; }
  .hero-foot span:nth-child(2), .hero-foot span:nth-child(3) { display: none; }
  .signal-strip__inner { grid-template-columns: 1fr 1fr; }
  .signal-strip__inner > span { min-height: 62px; border-bottom: 1px solid var(--line); }
  .signal-strip__label { grid-column: 1 / -1; justify-content: center !important; }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-aside { grid-column: auto; }
  .section-code { display: none; }
  .service-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
  .service-tab { min-width: 185px; min-height: 72px; }
  .service-pane { grid-template-columns: 1fr; min-height: 0; gap: 30px; padding: 35px 24px; }
  .service-icon { width: 92px; height: 92px; }
  .service-icon svg { width: 72px; }
  .service-pane ul { grid-template-columns: 1fr; grid-column: auto; }
  .service-pane li { border-right: 0; }
  .console-foot { gap: 20px; }
  .console-foot > span { display: none; }
  .advantage-board { grid-template-columns: 1fr; }
  .advantage-main { grid-column: auto; padding: 30px; }
  .board-label { margin-bottom: 60px; }
  .advantage-cell, .advantage-stat { min-height: 210px; padding: 28px; }
  .room-layout { gap: 60px; }
  .room-visual { min-height: 480px; }
  .room-visual::before { right: -8px; }
  .room-badge { right: 14px; bottom: 14px; width: 160px; }
  .room-badge strong { font-size: 2rem; }
  .room-data div { grid-template-columns: 80px 1fr; gap: 15px; }
  .price-band { grid-template-columns: 1fr; }
  .price-band > div:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .action-row--dark .text-link { margin: 12px 0 0; }
  .calendar-shell { grid-template-columns: 1fr; }
  .calendar-meta-panel { border-right: 0; border-bottom: 1px solid #364859; }
  .calendar-meta-panel dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .pdf-link { margin-top: 30px; }
  .calendar-toolbar { font-size: .55rem; }
  .calendar-frame { height: 460px; min-height: 460px; }
  .calendar-note { display: grid; gap: 5px; }
  .process-track { grid-template-columns: 1fr; gap: 26px; }
  .process-track li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 0; }
  .process-track li > span { width: 48px; height: 48px; margin: 4px 0 0; }
  .faq-question { font-size: .94rem; }
  .faq-answer p { padding-right: 0; }
  .contact { padding: 90px 0; }
  .contact-person { grid-template-columns: 35px 1fr; padding: 20px 16px; }
  .contact-mail { padding: 18px 16px; font-size: .96rem; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding-top: 50px; padding-bottom: 45px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .coming-shell { padding: 25px 0 20px; }
  .coming-logo { width: 165px; }
  .coming-status { font-size: .55rem; }
  .coming-content { align-self: start; padding: 48px 0 32px; }
  .coming-content h1 { font-size: clamp(3.05rem, 14vw, 4.2rem); }
  .coming-contacts { display: grid; }
  .coming-contacts a { text-align: center; }
  .coming-bottom { flex-direction: column; gap: 10px; }
  .inner-hero { padding: 75px 0 70px; }
  .inner-content { padding: 75px 0; }
  .inner-section-head { grid-template-columns: 1fr; gap: 15px; }
  .inner-section-head > div:last-child { grid-column: auto; }
  .inner-room-grid, .contact-options { grid-template-columns: 1fr; }
  .legal-card { padding: 28px; }
}

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