:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-mute: #64748b;
  --paper: #f8fafc;
  --paper-warm: #f1f5f9;
  --line: #e2e8f0;
  --accent: #075985;
  --accent-deep: #0c4a6e;
  --accent-soft: #e0f2fe;
  --white: #ffffff;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: var(--font-display);
}

.wrap {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px) {
  .wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-block {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media (min-width: 1024px) {
  .section-block {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.section-tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.eyebrow.light {
  color: #7dd3fc;
}

.eyebrow.light::before {
  background: #7dd3fc;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 7vw, 3rem);
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-size: clamp(2.125rem, 5vw, 3.75rem);
}

.display-md {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

.text-mute {
  color: var(--ink-mute);
}

.hairline {
  border-top: 1px solid var(--line);
}

.hairline-b {
  border-bottom: 1px solid var(--line);
}

.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.6em;
  line-height: 0.85;
  float: left;
  margin: 0.08em 0.15em 0 0;
  color: var(--accent);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 14px 30px -12px rgba(7, 89, 133, 0.55);
}

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

.btn-accent:hover {
  background: var(--accent-deep);
  box-shadow: 0 14px 30px -12px rgba(7, 89, 133, 0.55);
}

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

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

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

.btn-light:hover {
  background: var(--accent-soft);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.link-arrow:hover {
  gap: 0.875rem;
  color: var(--accent-deep);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.9375rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--white);
}

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

.chip.accent {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-color: #bae6fd;
}

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

.overlay-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  color: var(--white);
  isolation: isolate;
}

.img-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--paper-warm);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(15, 23, 42, 0.25);
  border-color: #cbd5e1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

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

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  animation: marquee 28s linear infinite;
}

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

.snap-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px -18px rgba(15, 23, 42, 0.3);
}

.header-inner {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

@media (min-width: 1280px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-contacts {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  margin-left: auto;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-mute);
}

@media (min-width: 1280px) {
  .header-contacts {
    display: flex;
    margin-left: 0;
  }
}

.header-contacts #bonzarooms-phone {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
}

.header-contacts a {
  color: inherit;
}

.header-contacts a:hover {
  color: var(--accent);
}

.burger {
  margin-left: auto;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

@media (min-width: 1280px) {
  .burger {
    display: none;
  }
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-close {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
}

.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu nav a i {
  font-size: 0.9rem;
  color: var(--accent);
}

.mobile-menu-contacts {
  margin-top: auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.mobile-menu-contacts .mc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-contacts .mc-item i {
  width: 1.25rem;
  color: var(--accent);
}

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

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

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

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 2rem;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.hero-dots button.active {
  background: var(--white);
}

.hero-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.booking-console {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 60px -25px rgba(2, 6, 23, 0.55);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-field label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.booking-field input,
.booking-field select {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
  outline: none;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--accent);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.375rem 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-button:hover {
  color: var(--accent);
}

.accordion-button .acc-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
  transition:
    transform 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.accordion-item.open .accordion-button .acc-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-body-inner {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.9375rem;
  max-width: 46rem;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}

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

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

.tab-panel {
  display: none;
}

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

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

.timeline {
  position: relative;
  padding-left: 2rem;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.375rem;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 9999px;
  background: var(--paper);
  border: 3px solid var(--accent);
}

.ba-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.35);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.875rem;
  padding: 0.875rem 1.125rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(7, 89, 133, 0.12);
}

.form-field.invalid .form-input,
.form-field.invalid .form-select,
.form-field.invalid .form-textarea {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.form-error {
  display: none;
  font-size: 0.75rem;
  color: #e11d48;
  font-weight: 600;
}

.form-field.invalid .form-error {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 9999px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-zone {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: min(26rem, calc(100vw - 2rem));
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 20px 45px -18px rgba(2, 6, 23, 0.6);
  animation: toastIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  pointer-events: auto;
}

.toast i {
  color: #7dd3fc;
  font-size: 1.1rem;
}

.toast.error i {
  color: #fda4af;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast.leaving {
  animation: toastOut 0.4s ease both;
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 300;
  width: min(27rem, calc(100vw - 2.5rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 30px 70px -20px rgba(2, 6, 23, 0.35);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-banner .cb-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.875rem;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.site-footer {
  background: var(--ink);
  color: #cbd5e1;
}

.site-footer a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

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

.footer-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
}

.social-btn {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

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

.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 250;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s,
    background 0.25s ease;
  box-shadow: 0 14px 35px -12px rgba(2, 6, 23, 0.5);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--accent);
}

.pin-marker {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--accent);
}

.pin-marker::after {
  content: "";
  position: absolute;
  inset: -0.5rem;
  border-radius: 9999px;
  border: 2px solid var(--accent);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  80%,
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.check-list li i {
  color: var(--accent);
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.num-badge {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--white);
  flex-shrink: 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.price-table th {
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.875rem 1rem;
  border-bottom: 2px solid var(--ink);
}

.price-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.price-table tr:hover td {
  background: var(--paper-warm);
}

.price-table .price-val {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.3s ease both;
}

.modal-box {
  background: var(--white);
  border-radius: 1.5rem;
  max-width: 34rem;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  animation: fadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.prose-site p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.prose-site h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 1.25rem;
  line-height: 1.2;
}

.prose-site h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2rem 0 1rem;
}

.prose-site ul {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style: none;
}

.prose-site ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose-site ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
}

.prose-site a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #bae6fd;
  text-underline-offset: 3px;
}

.prose-site a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}

.prose-site blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.prose-site strong {
  color: var(--ink);
}

.grain {
  position: relative;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
}

.scroll-hint {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 9999px;
  position: relative;
}

.scroll-hint::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--white);
  animation: scrollHint 1.8s ease infinite;
}

@keyframes scrollHint {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(0.9rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .section-block {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  table.price-table {
    min-width: 0 !important;
    display: block;
  }

  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .price-table tbody,
  .price-table tr {
    display: block;
  }

  .price-table tr {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

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

  .price-table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-width: 0;
    padding: 0.45rem 1rem;
    border: 0;
    text-align: right;
  }

  .price-table td::before {
    flex: 0 0 40%;
    color: var(--ink-mute);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
  }

  .price-table td:nth-child(1)::before {
    content: "Option";
  }
  .price-table td:nth-child(2)::before {
    content: "Details";
  }
  .price-table td:nth-child(3)::before {
    content: "Price";
  }

  .price-table.availability-table td:nth-child(1)::before {
    content: "Suite tier";
  }
  .price-table.availability-table td:nth-child(2)::before {
    content: "Outlook";
  }
  .price-table.availability-table td:nth-child(3)::before {
    content: "Floor";
  }
  .price-table.availability-table td:nth-child(4)::before {
    content: "This week";
  }
  .price-table.availability-table td:nth-child(5)::before {
    content: "From";
  }

  .price-table td:first-child {
    display: block;
    padding-top: 0.75rem;
    text-align: left;
  }

  .price-table td:first-child::before {
    display: block;
    margin-bottom: 0.3rem;
  }

  .price-table tr:hover td {
    background: transparent;
  }

  .cookie-banner {
    left: 1rem;
    bottom: 1rem;
    width: calc(100vw - 2rem);
  }
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}
