:root {
  --ink: #0d1b2a;
  --ink-2: #22344a;
  --slate: #46586e;
  --mist: #64748b;
  --line: #dde3ea;
  --ivory: #f7f5f1;
  --paper: #fdfcfa;
  --white: #ffffff;
  --accent: #1c4d72;
  --accent-2: #2e6b99;
  --accent-soft: #e8f0f6;
  --night: #0a141f;
  --night-2: #101f30;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --shadow-lg: 0 30px 60px -20px rgba(13, 27, 42, 0.25);
  --shadow-md: 0 18px 40px -18px rgba(13, 27, 42, 0.22);
  --shadow-sm: 0 8px 24px -12px rgba(13, 27, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

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

.font-serif,
h1,
h2,
h3 {
  font-family: var(--serif);
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.wrap-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.section-tight {
  padding: 64px 0;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent-2);
}

.eyebrow.centered::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent-2);
}

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display-xl {
  font-size: clamp(34px, 8vw, 44px);
}

.display-lg {
  font-size: clamp(38px, 6vw, 76px);
}

.display-md {
  font-size: clamp(30px, 4.4vw, 54px);
}

.display-sm {
  font-size: clamp(24px, 3.2vw, 38px);
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--slate);
}

.on-dark .lead,
.lead.on-dark {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(46, 107, 153, 0.35);
  text-underline-offset: 4px;
  transition:
    color 0.25s,
    text-decoration-color 0.25s;
}

.text-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-solid:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.btn-full {
  width: 100%;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-pad {
  padding: 36px;
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img,
.glass:hover .card-img img {
  transform: scale(1.05);
}

.glass .card-img {
  border-radius: 6px 6px 0 0;
}

.floor-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.floor-row:last-child {
  border-bottom: none;
}

.floor-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
}

.page-content {
  min-height: 50vh;
}

.icon-circle {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  background: var(--white);
}

.route-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.route-row:last-child {
  border-bottom: none;
}

.route-row i {
  font-size: 18px;
  margin-top: 4px;
  width: 24px;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--white);
  text-decoration: none;
}

.tag-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.tag-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.post-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.post-link:hover {
  color: var(--accent);
}

.ty-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 30px;
  color: #9dc8ea;
}

.on-dark-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mw-720 {
  max-width: 720px;
}

.scroll-x {
  overflow-x: auto;
}

.ov-hidden {
  overflow: hidden;
}

.border-accent {
  border-color: var(--accent-2);
}

.border-accent-soft {
  border-color: rgba(125, 179, 221, 0.5);
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-light {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.chip:hover,
.chip.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.chip.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.chip.on-dark:hover,
.chip.on-dark.active {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.rule {
  width: 72px;
  height: 2px;
  background: var(--accent-2);
  border: 0;
}

.viewfinder {
  position: relative;
}

.vf-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: rgba(255, 255, 255, 0.75);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.vf-corner.tl {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}
.vf-corner.tr {
  top: 18px;
  right: 18px;
  border-width: 1px 1px 0 0;
}
.vf-corner.bl {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 1px 1px;
}
.vf-corner.br {
  bottom: 18px;
  right: 18px;
  border-width: 0 1px 1px 0;
}

.vf-corner.dark {
  border-color: rgba(13, 27, 42, 0.5);
}

.num-ghost {
  font-family: var(--serif);
  font-size: clamp(90px, 14vw, 200px);
  line-height: 0.8;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(100, 116, 139, 0.35);
  user-select: none;
  pointer-events: none;
}

.num-ghost.on-dark {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.on-dark .stat-num {
  color: var(--white);
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

.on-dark .stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.bg-night {
  background: var(--night-2);
}

.bg-night-deep {
  background: var(--night);
}

.bg-paper {
  background: var(--paper);
}

.section-paper {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow-light {
  color: #7db3dd;
}

.eyebrow-light::before,
.eyebrow-light.centered::after {
  background: #7db3dd;
}

.h-24 {
  font-size: 24px;
}

.h-22 {
  font-size: 22px;
}

.card-soft {
  background: var(--accent-soft);
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  color: inherit;
}

.text-dim {
  color: var(--mist);
}

.text-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.on-dark .text-body,
.text-body.on-dark {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-side {
  position: sticky;
  top: 110px;
}

.quote-block {
  border-left: 3px solid var(--accent-2);
  padding-left: 32px;
  margin: 48px 0;
}

.quote-block cite {
  font-style: normal;
}

.social-row-light a {
  border-color: var(--line);
  color: var(--slate);
}

.social-row-light a:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li {
  margin-bottom: 10px;
}

.toc-list a {
  color: var(--slate);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s;
}

.toc-list a:hover {
  color: var(--accent);
}

.text-small {
  font-size: 13px;
}

.hero-h {
  min-height: 92vh;
}

.br-4 {
  border-radius: 4px;
}

.br-6 {
  border-radius: 6px;
}

.price-sm {
  font-size: 26px;
}

.stat-32 {
  font-size: 32px;
}

.stat-36 {
  font-size: 36px;
}

.accent-icon {
  color: var(--accent-2);
}

.accent-icon-light {
  color: #7db3dd;
}

.dim-65 {
  color: rgba(255, 255, 255, 0.65);
}

.dim-55 {
  color: rgba(255, 255, 255, 0.55);
}

.sep-w {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.field-cell {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .field-cell {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
}

.mb-0-force {
  margin-bottom: 0 !important;
}

.card-fixed {
  min-width: 340px;
  max-width: 340px;
}

.dim-70 {
  color: rgba(255, 255, 255, 0.7);
}

.accent-strong {
  color: var(--accent);
}

.d-inline-block {
  display: inline-block;
}

.bb-0 {
  border-bottom: 0 !important;
}

.m-0 {
  margin: 0;
}

@media (max-width: 640px) {
  .card-fixed {
    min-width: 280px;
    max-width: 280px;
  }
}

.icon-tile {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 17px;
  background: var(--white);
  flex-shrink: 0;
}

.on-dark .icon-tile,
.icon-tile.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.media-frame:hover img {
  transform: scale(1.05);
}

.media-ratio-43 {
  aspect-ratio: 4 / 3;
}
.media-ratio-169 {
  aspect-ratio: 16 / 9;
}
.media-ratio-34 {
  aspect-ratio: 3 / 4;
}
.media-ratio-11 {
  aspect-ratio: 1 / 1;
}

.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.tl-item {
  position: relative;
  padding-bottom: 40px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ivory);
  border: 2px solid var(--accent-2);
}

.tl-year {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item + .accordion-item {
  margin-top: 12px;
}

.accordion-item.open {
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.accordion-button i {
  font-size: 12px;
  color: var(--accent-2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-button i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.accordion-body-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.faq-question {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes equalize {
  0%,
  100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--white);
}

.slider-arrow {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--white);
  color: var(--ink);
}

.dots-dark .slider-dot {
  background: rgba(13, 27, 42, 0.2);
}

.dots-dark .slider-dot.active {
  background: var(--ink);
}

.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.eq-bars span {
  width: 3px;
  height: 100%;
  background: var(--accent-2);
  transform-origin: bottom;
  animation: equalize 1.1s ease-in-out infinite;
}

.eq-bars span:nth-child(2) {
  animation-delay: 0.15s;
}
.eq-bars span:nth-child(3) {
  animation-delay: 0.3s;
}
.eq-bars span:nth-child(4) {
  animation-delay: 0.45s;
}
.eq-bars span:nth-child(5) {
  animation-delay: 0.6s;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
  display: inline-block;
  animation: pulseDot 1.6s ease-in-out infinite;
}

.h-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 12px;
}

.h-scroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.h-scroll::-webkit-scrollbar {
  height: 4px;
}

.h-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.table-price {
  width: 100%;
  border-collapse: collapse;
}

.table-price th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
}

.table-price td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}

.table-price tr:last-child td {
  border-bottom: 0;
}

.table-price .price-cell {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.price-tag {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--ink);
}

.on-dark .price-tag {
  color: var(--white);
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(46, 107, 153, 0.15);
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-error {
  display: none;
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
  font-weight: 600;
}

.form-error.show {
  display: block;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate);
}

.form-check-light {
  color: rgba(255, 255, 255, 0.72);
}

.form-check-light .text-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.form-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 999px;
  animation: spinSlow 0.7s linear infinite;
}

.loader.active {
  display: inline-block;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 99999;
  background: var(--ink);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: calc(100vw - 40px);
  text-align: center;
}

.toast.show {
  transform: translate(-50%, 0);
}

.toast.success {
  background: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 32px));
  z-index: 99998;
  display: none;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--ink);
  padding: 22px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
  animation: fadeUp 0.6s ease both;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.cookie-btn.reject {
  background: transparent;
  color: var(--slate);
  border-color: var(--line);
}

.cookie-btn.reject:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.cookie-btn.accept {
  background: var(--ink);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background: var(--accent);
}

.site-topbar {
  background: var(--night);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-item i {
  margin-right: 8px;
  color: var(--accent-2);
}

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mm-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mm-close {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.mm-contacts {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.mm-contacts i {
  margin-right: 10px;
  color: var(--accent-2);
}

.header-cta {
  padding: 12px 22px;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-topbar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.25s;
}

.site-topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.main-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand-logo img {
  height: 46px;
  width: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 10px 13px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 3px;
  transition:
    color 0.25s,
    background 0.25s;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--night);
  color: var(--white);
  padding: 28px 24px 40px;
  overflow-y: auto;
  transform: translateY(-102%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.mobile-nav-list a i {
  font-size: 13px;
  opacity: 0.5;
}

.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.25s,
    padding-left 0.25s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact-line {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-line i {
  color: var(--accent-2);
  margin-top: 4px;
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-line a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-row a:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-reg {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.footer-reg-block {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-main {
  padding-top: 72px;
  padding-bottom: 56px;
}

.sticky-cta-mobile {
  display: none;
}

.divider-v {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

.list-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 12px;
  color: var(--accent-2);
}

.on-dark .list-check li {
  color: rgba(255, 255, 255, 0.75);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent-2);
  opacity: 0.4;
}

.step-num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.1em;
}

.compare-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.course-row {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.course-num {
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  min-width: 44px;
}

.rotate-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--mist);
}

.spin-badge {
  animation: spinSlow 22s linear infinite;
}

.float-soft {
  animation: floatY 6s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }
  .burger-btn {
    display: inline-flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section-tight {
    padding: 44px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .btn {
    padding: 15px 26px;
    font-size: 11px;
  }
  .card-pad {
    padding: 26px;
  }
  .cookie-banner {
    bottom: 12px;
    padding: 18px 20px;
  }
  .table-price thead {
    display: none;
  }
  .table-price,
  .table-price tbody,
  .table-price tr,
  .table-price td {
    display: block;
    width: 100%;
  }
  .table-price td {
    padding: 8px 0;
    border-bottom: 0;
  }
  .table-price tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .bg-fixed {
    background-attachment: scroll;
  }
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
  html,body{overflow-x: hidden;}
}
