:root {
  --ivory: #f7f5f1;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #0b1c2c;
  --ink-2: #14293e;
  --ink-soft: #3c5168;
  --steel: #2c5f8a;
  --steel-deep: #17374f;
  --mist: #e9eef3;
  --line: #dbe2e9;
  --silver: #aebac6;
  --frost: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 24px 60px -24px rgba(11, 28, 44, 0.18);
  --shadow-card: 0 14px 40px -14px rgba(11, 28, 44, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--steel);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--steel-deep);
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}
.container-wide {
  width: min(1440px, 94%);
  margin: 0 auto;
}
.container-narrow {
  width: min(880px, 92%);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0;
  overflow: hidden;
}
.section-tight {
  padding: clamp(48px, 6vw, 84px) 0;
}
.section-bg {
  background-size: cover;
  background-position: center;
  color: #f4f7fa;
}
.section-dark {
  background: var(--ink);
  color: #eef3f8;
}
.section-mist {
  background: var(--mist);
}
.section-paper {
  background: var(--paper);
}
.section-dark .lead,
.section-bg .lead {
  color: rgba(238, 243, 248, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-dark .eyebrow,
.section-bg .eyebrow {
  color: #9fc1dd;
}

.display-1,
.display-2,
.display-3,
.display-4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.display-1 {
  font-size: clamp(46px, 7.2vw, 104px);
}
.display-2 {
  font-size: clamp(38px, 5vw, 72px);
}
.display-3 {
  font-size: clamp(30px, 3.6vw, 50px);
}
.display-4 {
  font-size: clamp(24px, 2.6vw, 36px);
}
.display-1 em,
.display-2 em,
.display-3 em,
.display-4 em {
  font-style: italic;
  font-weight: 400;
  color: var(--steel);
}
.section-dark .display-1 em,
.section-dark .display-2 em,
.section-dark .display-3 em,
.section-bg .display-1 em,
.section-bg .display-2 em,
.section-bg .display-3 em {
  color: #a8cbe6;
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 62ch;
}
.small {
  font-size: 13px;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.btn i {
  font-size: 14px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--steel-deep);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(11, 28, 44, 0.55);
}
.btn-steel {
  background: var(--steel);
  color: #fff;
}
.btn-steel:hover {
  background: var(--steel-deep);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: var(--mist);
  color: var(--ink);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tag i {
  color: var(--steel);
}
.tag-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e6edf4;
}
.tag-dark i {
  color: #9fc1dd;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--silver);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.ornament i {
  font-size: 10px;
  color: var(--steel);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--silver);
}
.card-dark {
  background: var(--ink-2);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e9eff5;
}
.card-bg {
  background-size: cover;
  background-position: center;
  color: #f2f6fa;
  border: none;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--steel);
  font-size: 20px;
  margin-bottom: 18px;
}
.card-dark .card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #a8cbe6;
}

.grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 32px);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-2-1 {
  grid-template-columns: 2fr 1fr;
}
.grid-1-2 {
  grid-template-columns: 1fr 2fr;
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  margin: 10px;
}
.ratio-45 {
  aspect-ratio: 4/5;
}
.ratio-11 {
  aspect-ratio: 1/1;
}
.ratio-169 {
  aspect-ratio: 16/9;
}
.ratio-32 {
  aspect-ratio: 3/2;
}

.float-badge {
  position: absolute;
  z-index: 3;
  background: var(--frost);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  color: var(--ink);
  font-size: 12px;
}
.float-badge strong {
  display: block;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
}
.util-bar {
  background: var(--ink);
  color: #cdd9e4;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.util-bar .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
.util-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.util-item i {
  color: #9fc1dd;
  font-size: 11px;
}
.util-item a {
  color: #cdd9e4;
}
.util-item a:hover {
  color: #fff;
}
.util-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-bar {
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled .main-bar {
  box-shadow: 0 12px 32px -18px rgba(11, 28, 44, 0.3);
}
.main-bar .container-wide {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 46px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
}

.main-nav {
  flex: 1;
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  display: inline-block;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.main-nav a:hover {
  color: var(--ink);
  background: var(--mist);
}
.main-nav a.nav-accent {
  color: var(--steel);
}

.header-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}
.burger:hover {
  background: var(--mist);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 6vw 40px;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
}
.mobile-nav a i {
  font-size: 13px;
  color: var(--silver);
}
.mobile-contacts {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.mobile-contacts div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mobile-contacts i {
  color: var(--steel);
  margin-top: 4px;
}
.mobile-contacts a {
  color: var(--ink-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero-slider {
  position: relative;
  flex: 1;
  display: flex;
  min-height: 70vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide-inner {
  width: min(1240px, 92%);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 140px) 0;
}
.hero-slide .display-1 {
  color: #fff;
  max-width: 12ch;
}
.hero-slide .lead {
  color: rgba(240, 245, 250, 0.85);
}

.slider-ui {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 0;
  right: 0;
}
.slider-ui .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-dot.is-active {
  background: #fff;
}
.slider-arrows {
  display: flex;
  gap: 10px;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

.ticker {
  background: var(--ink);
  color: #d7e2ec;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-item i {
  color: #9fc1dd;
  font-size: 9px;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.split-reverse > :first-child {
  order: 2;
}
.diagonal {
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
}

.mode-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  background: var(--white);
  gap: 4px;
}
.mode-switch button {
  border: none;
  background: transparent;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.mode-switch button.is-active {
  background: var(--ink);
  color: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  background: var(--white);
  padding: clamp(22px, 3vw, 40px);
}
.stat-cell .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  color: var(--ink);
}
.stat-cell .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}
.section-dark .stat-cell,
.stat-dark .stat-cell {
  background: var(--ink-2);
}
.section-dark .stat-cell .num {
  color: #fff;
}
.section-dark .stat-cell .lbl {
  color: #9fb2c2;
}
.stat-grid .stat-cell {
  box-shadow: none;
  border-radius: 0;
}

.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: none;
  padding: 24px 6px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}
.accordion-button:hover {
  color: var(--steel);
}
.accordion-button .acc-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--steel);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}
.accordion-item.is-open .acc-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.accordion-body-inner {
  padding: 0 6px 26px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 70ch;
}
.section-dark .accordion,
.section-dark .accordion-item {
  border-color: rgba(255, 255, 255, 0.14);
}
.section-dark .accordion-button {
  color: #eef3f8;
}
.section-dark .accordion-button .acc-icon {
  border-color: rgba(255, 255, 255, 0.25);
  color: #a8cbe6;
}
.section-dark .accordion-body-inner {
  color: rgba(230, 238, 245, 0.8);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.faq-item + .faq-item {
  margin-top: 14px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
}
.faq-question i {
  color: var(--steel);
  transition: transform 0.3s ease;
  font-size: 12px;
}
.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.tabs-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.tab-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.5s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.showcase-list {
  display: flex;
  flex-direction: column;
}
.showcase-item {
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
}
.showcase-item .idx {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--steel);
  font-weight: 700;
}
.showcase-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 8px 0 8px;
}
.showcase-item .price {
  font-weight: 700;
  color: var(--steel-deep);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.showcase-preview {
  position: sticky;
  top: 120px;
}
.preview-panel {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  color: #fff;
  position: relative;
}
.preview-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 14, 22, 0.75));
}
.preview-panel > div {
  position: relative;
}
.preview-panel h4 {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 6px;
}

.floorplan {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.zone-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--steel);
  cursor: pointer;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}
.zone-dot:hover,
.zone-dot.is-active {
  transform: scale(1.3);
}
.zone-tip {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 4;
  background: var(--frost);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.countdown {
  display: flex;
  gap: 14px;
}
.cd-cell {
  min-width: 92px;
  text-align: center;
  padding: 20px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.cd-cell .cd-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cd-cell .cd-lbl {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9fb2c2;
  margin-top: 8px;
}
.cd-light .cd-cell {
  background: var(--white);
  border-color: var(--line);
}
.cd-light .cd-num {
  color: var(--ink);
}
.cd-light .cd-lbl {
  color: var(--ink-soft);
}

.snap-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78%, 380px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
}
.snap-row > * {
  scroll-snap-align: start;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.lux-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.lux-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.lux-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}
.lux-table tr:last-child td {
  border-bottom: none;
}
.lux-table .price-cell {
  font-weight: 800;
  color: var(--steel-deep);
  white-space: nowrap;
}

.tier-card {
  display: flex;
  flex-direction: column;
}
.tier-card .tier-name {
  font-family: var(--font-display);
  font-size: 30px;
}
.tier-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.tier-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tier-card ul li i {
  color: var(--steel);
  margin-top: 4px;
  font-size: 12px;
}
.tier-featured {
  border: 2px solid var(--steel);
}
.tier-noir {
  background: var(--ink);
  color: #e9eff5;
  border-color: var(--ink);
}
.tier-noir ul li {
  color: rgba(230, 238, 245, 0.8);
}
.tier-noir ul li i {
  color: #9fc1dd;
}
.tier-noir .tier-name {
  color: #fff;
}

.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.input,
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.input:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(44, 95, 138, 0.12);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c04b4b;
  box-shadow: 0 0 0 4px rgba(192, 75, 75, 0.1);
}
.error-msg {
  display: none;
  font-size: 12px;
  color: #a03d3d;
  margin-top: 6px;
}
.field.has-error .error-msg {
  display: block;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--steel);
  flex-shrink: 0;
}
.checkbox-field.has-error {
  color: #a03d3d;
}
.form-loader {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}
.form.is-sending .form-loader {
  display: inline-block;
}
.form.is-sending .btn-label {
  opacity: 0.6;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-wrap {
  position: fixed;
  z-index: 1200;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #eef3f8;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  animation: toastIn 0.4s ease both;
  max-width: 340px;
  border-left: 3px solid var(--steel);
}
.toast i {
  color: #9fc1dd;
}
.toast.toast-error {
  border-left-color: #c04b4b;
}
.toast.toast-error i {
  color: #e09191;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 1100;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  animation: toastIn 0.5s ease both;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 10px 0 18px;
}
.cookie-banner .cookie-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cookie-banner .cookie-title i {
  color: var(--steel);
}
.cookie-actions {
  display: flex;
  gap: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(7, 15, 24, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.lightbox.is-open {
  display: flex;
  animation: fadeUp 0.3s ease;
}
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.audio-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.audio-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.audio-play:hover {
  transform: scale(1.08);
}
.audio-meta {
  flex: 1;
  min-width: 0;
}
.audio-meta .t {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-meta .a {
  font-size: 12px;
  color: #9fb2c2;
}
.audio-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.audio-eq span {
  width: 3px;
  background: #9fc1dd;
  border-radius: 2px;
  height: 30%;
}
.audio-bar.is-playing .audio-eq span {
  animation: eq 1s ease-in-out infinite;
}
.audio-bar.is-playing .audio-eq span:nth-child(2) {
  animation-delay: 0.15s;
}
.audio-bar.is-playing .audio-eq span:nth-child(3) {
  animation-delay: 0.3s;
}
.audio-bar.is-playing .audio-eq span:nth-child(4) {
  animation-delay: 0.45s;
}
.audio-bar.is-playing .audio-eq span:nth-child(5) {
  animation-delay: 0.6s;
}
@keyframes eq {
  0%,
  100% {
    height: 25%;
  }
  50% {
    height: 95%;
  }
}

.vote-card .vote-btn {
  transition: transform 0.2s ease;
}
.vote-card .vote-btn.voted {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
}
.vote-bar {
  height: 6px;
  border-radius: 99px;
  background: var(--mist);
  overflow: hidden;
  margin-top: 14px;
}
.vote-fill {
  height: 100%;
  background: var(--steel);
  border-radius: 99px;
  transition: width 0.8s ease;
}

.timeline {
  position: relative;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 30px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 5px var(--mist);
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item .time {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 800;
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 6px 0;
}

.board {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.board-row {
  display: grid;
  grid-template-columns: 110px 1.4fr 1fr 150px;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  font-size: 14px;
}
.board-row:last-child {
  border-bottom: none;
}
.board-row.board-head {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8fa5b8;
}
.board-row .status {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  text-align: center;
}
.status-live {
  background: rgba(120, 190, 255, 0.16);
  color: #9fc1dd;
}
.status-reg {
  background: rgba(255, 255, 255, 0.12);
  color: #e6edf4;
}
.status-final {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.quote-block {
  border-left: 2px solid var(--steel);
  padding: 8px 0 8px 28px;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.quote-block .who {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}
.section-dark .quote-block p,
.section-bg .quote-block p {
  color: #f0f5f9;
}
.section-dark .quote-block {
  border-color: #9fc1dd;
}

.site-footer {
  background: var(--ink);
  color: #b8c7d4;
  position: relative;
  overflow: hidden;
}
.footer-top {
  padding: clamp(60px, 7vw, 100px) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
}
.footer-brand img {
  height: 54px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  color: #93a7b9;
  max-width: 40ch;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7f95a8;
  margin: 0 0 20px;
  font-family: var(--font-body);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.footer-col a {
  color: #c8d6e2;
  font-size: 14px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-contact div {
  margin-bottom: 14px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact i {
  color: #9fc1dd;
  margin-top: 4px;
  font-size: 13px;
}
.footer-contact a {
  color: #c8d6e2;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c8d6e2;
  font-size: 15px;
  transition: all 0.3s ease;
}
.socials a:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.footer-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
}
.footer-strip .container-wide {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #7f95a8;
}
.footer-legal {
  padding: 22px 0 30px;
  font-size: 11px;
  color: #6d8194;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.zone-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px;
}
.zone-switch button {
  border: none;
  background: transparent;
  color: #9fb2c2;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.zone-switch button.is-active {
  background: #fff;
  color: var(--ink);
}

.page-hero {
  padding: clamp(90px, 12vw, 160px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.page-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-hero .crumbs i {
  font-size: 8px;
  color: var(--silver);
}
.page-hero .crumbs a {
  color: var(--steel);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-row .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  font-size: 17px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip i {
  color: var(--steel);
  font-size: 11px;
}

.divider-num {
  font-family: var(--font-display);
  font-size: clamp(70px, 9vw, 140px);
  line-height: 0.8;
  color: var(--mist);
  position: absolute;
  top: 30px;
  right: 4%;
  user-select: none;
  pointer-events: none;
  font-weight: 600;
}
.section-dark .divider-num {
  color: rgba(255, 255, 255, 0.05);
}

.marquee-imgs {
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.marquee-imgs .media-frame {
  flex: 0 0 300px;
}

.pass-field {
  position: relative;
}
.pass-field input {
  padding-right: 60px;
  letter-spacing: 0.3em;
  text-align: center;
  font-size: 20px;
}
.pass-field button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.article-body h2,
.article-body h3 {
  font-family: var(--font-display);
  margin-top: 40px;
}
.article-body p {
  color: var(--ink-soft);
}
.article-body ul {
  color: var(--ink-soft);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.article-meta i {
  color: var(--steel);
  margin-right: 6px;
}

.m-0 {
  margin: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 28px;
}
.mt-4 {
  margin-top: 40px;
}
.mt-5 {
  margin-top: 56px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 28px;
}
.mb-4 {
  margin-bottom: 40px;
}
.center {
  text-align: center;
}
.center .lead {
  margin-left: auto;
  margin-right: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.flex-center {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.zone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
}
.zone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 13px;
}
.zone-list a {
  color: #c8d6e2;
}
.zone-list a:hover {
  color: #fff;
}
.text-balance {
  text-wrap: balance;
}
.w-100 {
  width: 100%;
}
.rel {
  position: relative;
}
.hide {
  display: none !important;
}
.jc-center {
  justify-content: center;
}
.text-left {
  text-align: left;
}
.list-none {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.float-badge-bl {
  left: 18px;
  bottom: 18px;
}
.float-badge-tr {
  top: 18px;
  right: 18px;
}
.float-badge-tl {
  top: 18px;
  left: 18px;
}
.float-badge-br {
  bottom: 18px;
  right: 18px;
}
.section-bg h1,
.section-bg h2,
.section-bg h3,
.section-bg h4,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-bg .display-1,
.section-bg .display-2,
.section-bg .display-3,
.section-bg .display-4,
.section-dark .display-1,
.section-dark .display-2,
.section-dark .display-3,
.section-dark .display-4 {
  color: #f4f8fb;
}
.section-bg p,
.section-dark p {
  color: rgba(233, 240, 246, 0.82);
}
.section-bg .feature-row p,
.section-dark .feature-row p {
  color: rgba(233, 240, 246, 0.9);
}
.legal-stack .card {
  border-radius: 0;
  border-bottom: none;
  box-shadow: none;
}
.legal-stack .card:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}
.legal-stack .card:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.legal-stack .card:hover {
  transform: none;
}
.legal-stack .card p {
  color: var(--ink-soft);
  font-size: 15px;
}
.pt-1 {
  padding-top: 8px;
}
.pt-2 {
  padding-top: 16px;
}
.pt-3 {
  padding-top: 24px;
}
.divider-top {
  border-top: 1px solid var(--line);
}
.card-dark .divider-top,
.section-dark .divider-top {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.zd-1 {
  top: 24%;
  left: 22%;
}
.zd-2 {
  top: 58%;
  left: 44%;
}
.zd-3 {
  top: 36%;
  left: 72%;
}
.zd-4 {
  top: 68%;
  left: 70%;
}
.zd-5 {
  top: 20%;
  left: 55%;
}
.zd-6 {
  top: 78%;
  left: 30%;
}
.audio-bar-dark {
  background: var(--ink);
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .burger {
    display: inline-flex;
    margin-left: auto;
  }
  .util-bar .util-item.hide-m {
    display: none;
  }
}

@media (max-width: 760px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-1,
  .grid-1-2,
  .split,
  .showcase,
  .form-row {
    grid-template-columns: 1fr;
  }
  .split-reverse > :first-child {
    order: 0;
  }
  .showcase-preview {
    position: static;
  }
  .preview-panel {
    min-height: 340px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-slide-inner {
    padding: 90px 0 140px;
  }
  .hero-slide .display-1 {
    max-width: 100%;
  }
  .cd-cell {
    min-width: 0;
    flex: 1;
  }
  .countdown {
    width: 100%;
  }
  .board-row {
    grid-template-columns: 90px 1.4fr 110px;
  }
  .board-row .hide-sm {
    display: none;
  }
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
  .toast-wrap {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .toast {
    max-width: none;
  }
  .slider-ui .container {
    justify-content: center;
  }
  .slider-arrows {
    display: none;
  }
  .float-badge {
    position: static;
    margin-top: 14px;
  }
  .diagonal {
    clip-path: none;
  }
  html {
    overflow-x: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
