:root {
  --paper: #f7f8fa;
  --paper-2: #eef1f6;
  --ink: #0f1623;
  --ink-2: #1c2736;
  --navy: #14355a;
  --sapphire: #2c5f8a;
  --sapphire-2: #3d78ad;
  --crimson: #9d2235;
  --platinum: #c7d0db;
  --line: rgba(15, 22, 35, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", sans-serif;
  --shadow-lg: 0 30px 60px -15px rgba(15, 22, 35, 0.25);
  --shadow-md: 0 18px 40px -12px rgba(15, 22, 35, 0.18);
  --shadow-sm: 0 8px 24px -8px rgba(15, 22, 35, 0.14);
  --r-lg: 1.5rem;
  --r-md: 1rem;
  --r-sm: 0.625rem;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
}
img {
  display: block;
  max-width: 100%;
}
.font-serif {
  font-family: var(--serif);
}

.container-site {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container-site {
    padding-inline: 2.5rem;
  }
}

.section {
  padding-block: 4.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .section {
    padding-block: 7rem;
  }
}
.section-dark {
  background: var(--ink);
  color: #eef2f7;
}
.section-dark .eyebrow {
  color: var(--platinum);
}
.section-tint {
  background: var(--paper-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sapphire);
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--bare::before {
  display: none;
}

.display-xl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 7.5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.1;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(15, 22, 35, 0.72);
}
.section-dark .lead {
  color: rgba(238, 242, 247, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn i {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover i {
  transform: translateX(4px);
}
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: var(--paper-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-line {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-line:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.section-dark .btn-line,
.btn-line--light {
  border-color: var(--line-light);
  color: #fff;
}
.section-dark .btn-line:hover,
.btn-line--light:hover {
  border-color: #fff;
}
.btn-accent {
  background: var(--sapphire);
  color: #fff;
}
.btn-accent:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.72rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 22, 35, 0.65);
  background: #fff;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.chip:hover,
.chip.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.section-dark .chip {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: var(--line-light);
}
.section-dark .chip:hover,
.section-dark .chip.is-on {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.chip-strip {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.chip-strip::-webkit-scrollbar {
  display: none;
}

.bg-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.num-ghost {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--sapphire);
  letter-spacing: 0.2em;
}
.divider {
  height: 1px;
  background: var(--line);
  border: 0;
}
.section-dark .divider {
  background: var(--line-light);
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  transition:
    background 0.35s,
    box-shadow 0.35s;
}
.header-top {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
}
.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.header-top-item i {
  color: var(--platinum);
  font-size: 0.7rem;
}
.header-main {
  background: rgba(247, 248, 250, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled .header-main {
  box-shadow: 0 10px 30px rgba(15, 22, 35, 0.08);
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 22, 35, 0.75);
  padding-block: 0.4rem;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--sapphire);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--ink);
}
.nav-link:hover::after {
  width: 100%;
}
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--ink);
  color: #fff;
  padding: 6rem 1.75rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}
.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu nav a {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  padding-block: 0.55rem;
  color: #fff;
  border-bottom: 1px solid var(--line-light);
}
.mobile-menu .mm-contacts {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  gap: 0.5rem;
}
.mobile-menu .mm-contacts i {
  width: 1.2rem;
  color: var(--platinum);
}

.site-footer {
  background: var(--ink);
  color: rgba(238, 242, 247, 0.8);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-block: 4rem 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(238, 242, 247, 0.6);
}
.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.86rem;
  color: rgba(238, 242, 247, 0.65);
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 0.4rem;
}
.footer-contact {
  display: grid;
  gap: 0.7rem;
  font-size: 0.88rem;
}
.footer-contact i {
  width: 1.1rem;
  color: var(--platinum);
}
.footer-contact a {
  color: rgba(238, 242, 247, 0.85);
}
.social-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-3px);
}
.footer-meta {
  border-top: 1px solid var(--line-light);
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: rgba(238, 242, 247, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}
.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  padding-bottom: 1.75rem;
  font-size: 0.75rem;
}
.footer-legal-row a {
  color: rgba(238, 242, 247, 0.55);
}
.footer-legal-row a:hover {
  color: #fff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-slide > .bg-media {
  position: absolute;
  inset: 0;
}
.hero-slide.is-active .kenburns {
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(15, 22, 35, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-arrow:hover {
  background: #fff;
  color: var(--ink);
}
.slider-dots {
  display: flex;
  gap: 0.55rem;
}
.slider-dots .dot {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.slider-dots .dot.is-on {
  background: #fff;
}

.float-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  animation: floaty 5s ease-in-out infinite;
}
.float-tag i {
  color: var(--platinum);
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-micro-thumb {
  width: 88px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}
.marquee-item i {
  color: var(--platinum);
  font-size: 0.8rem;
}

.booking-bar {
  position: sticky;
  bottom: 1rem;
  z-index: 800;
}
.booking-panel {
  background: rgba(15, 22, 35, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  color: #fff;
  padding: 1.1rem 1.4rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .booking-panel {
    grid-template-columns: 1.3fr 1fr 1fr auto;
    align-items: center;
  }
}
.bk-field {
  display: grid;
  gap: 0.3rem;
}
.bk-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.bk-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: #fff;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  outline: none;
  width: 100%;
}
.bk-input:focus {
  border-color: #fff;
}
.bk-input option {
  color: var(--ink);
}
.bk-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-media {
  position: relative;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-media img {
  transform: scale(1.06);
}
.card-body {
  padding: 1.6rem;
}
.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sapphire);
  font-weight: 700;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.service-card .go {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.service-card:hover .go i {
  transform: translateX(4px);
}
.service-card .go i {
  transition: transform 0.3s;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.spec-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
}
.spec-list i {
  color: var(--sapphire);
  margin-top: 0.2rem;
}
.section-dark .spec-list i {
  color: var(--platinum);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.section-dark .timeline::before {
  background: var(--line-light);
}
.tl-item {
  position: relative;
  padding-bottom: 2rem;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 2px solid var(--sapphire);
  background: var(--paper);
}
.section-dark .tl-item::before {
  background: var(--ink);
  border-color: var(--platinum);
}
.tl-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sapphire);
  text-transform: uppercase;
}
.section-dark .tl-time {
  color: var(--platinum);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item + .faq-item {
  margin-top: 0.8rem;
}
.faq-item.is-open {
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: 0;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-question i {
  transition: transform 0.35s;
  color: var(--sapphire);
  font-size: 0.8rem;
}
.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(15, 22, 35, 0.7);
}
.section-dark .faq-item {
  background: var(--ink-2);
  border-color: var(--line-light);
}
.section-dark .faq-question {
  color: #fff;
}
.section-dark .faq-answer-inner {
  color: rgba(238, 242, 247, 0.7);
}

.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0.4rem;
  background: none;
  border: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.acc-head i {
  font-size: 0.8rem;
  color: var(--sapphire);
  transition: transform 0.35s;
}
.acc-item.is-open .acc-head i {
  transform: rotate(45deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.acc-body-inner {
  padding: 0 0.4rem 1.6rem;
}

.tab-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 22, 35, 0.6);
  cursor: pointer;
  transition: all 0.25s;
}
.tab-btn.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tab-pane {
  display: none;
}
.tab-pane.is-on {
  display: block;
  animation: fadeUp 0.5s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.metric-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}
.metric-num sup {
  font-size: 0.45em;
  color: var(--sapphire);
}

.peek-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.75rem;
}
.peek-carousel::-webkit-scrollbar {
  display: none;
}
.peek-carousel > * {
  scroll-snap-align: start;
  flex: 0 0 min(78vw, 540px);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 22, 35, 0.6);
}
.input,
.textarea,
.select,
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.05rem;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.input:focus,
.textarea:focus,
.select:focus,
.form-input:focus {
  border-color: var(--sapphire);
  box-shadow: 0 0 0 3px rgba(44, 95, 138, 0.12);
}
.input.is-error,
.textarea.is-error,
.select.is-error,
.form-input.is-error {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(157, 34, 53, 0.1);
}
.field-msg {
  font-size: 0.78rem;
  color: var(--crimson);
  display: none;
}
.field-msg.is-on {
  display: block;
}
.check-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(15, 22, 35, 0.7);
}
.check-row input {
  margin-top: 0.2rem;
  accent-color: var(--navy);
}
.check-row a {
  color: var(--navy);
  text-decoration: underline;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn.is-loading .spinner {
  display: inline-block;
}
.btn.is-loading .btn-ic {
  display: none;
}

.toast-wrap {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 990;
  display: grid;
  gap: 0.6rem;
  max-width: min(92vw, 380px);
}
.toast {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  border-left: 3px solid var(--sapphire-2);
}
.toast i {
  color: var(--platinum);
  margin-top: 0.15rem;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.toast.is-out {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 999;
  width: min(94vw, 430px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  display: none;
}
.cookie-banner.is-on {
  display: block;
  animation: cookieUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cookieUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cookie-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cookie-title i {
  color: var(--sapphire);
  font-size: 1rem;
}
.cookie-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(15, 22, 35, 0.65);
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.cookie-btn {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid var(--line);
}
.cookie-btn--accept {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cookie-btn--accept:hover {
  background: var(--navy);
}
.cookie-btn--reject {
  background: transparent;
  color: rgba(15, 22, 35, 0.6);
}
.cookie-btn--reject:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.macro-img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.macro-zoom:hover .macro-img {
  transform: scale(1.15);
}
.passport-table {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.8rem;
}
.passport-table td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.passport-table td:first-child {
  color: rgba(15, 22, 35, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.section-dark .passport-table td {
  border-color: var(--line-light);
}
.section-dark .passport-table td:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--sapphire);
  opacity: 0.35;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px dashed var(--line);
}
.price-row .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.price-val {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  white-space: nowrap;
}

.seat {
  width: 30px;
  height: 30px;
  border-radius: 8px 8px 3px 3px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 0;
  transition: all 0.2s;
}
.seat.is-taken {
  background: var(--paper-2);
  border-color: transparent;
  cursor: not-allowed;
}
.seat.is-picked {
  background: var(--sapphire);
  border-color: var(--sapphire);
}

.form-step {
  display: none;
}
.form-step.is-active {
  display: block;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.form-toast {
  min-height: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--crimson);
}
.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(15, 22, 35, 0.72);
}
.form-consent input {
  margin-top: 0.2rem;
  accent-color: var(--navy);
  flex: 0 0 auto;
}
.form-consent a {
  color: var(--navy);
}
.form-step [data-step-next],
.form-step [data-step-prev],
.form-step button[type="submit"] {
  min-height: 2.7rem;
}

.stepper {
  display: flex;
  gap: 0.5rem;
}
.step-dot {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: var(--line);
}
.step-dot.is-done {
  background: var(--sapphire);
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--crimson);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(157, 34, 53, 0.2);
  cursor: pointer;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(157, 34, 53, 0.2);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(157, 34, 53, 0.08);
  }
}

.glow-card {
  position: relative;
  background: var(--ink-2);
  border-radius: var(--r-lg);
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(61, 120, 173, 0.25),
    transparent 45%
  );
  pointer-events: none;
}

.dn-toggle {
  display: inline-flex;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  overflow: hidden;
}
.dn-toggle button {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  transition: all 0.3s;
}
.dn-toggle button.is-on {
  background: #fff;
  color: var(--ink);
}
.dn-layer {
  position: absolute;
  inset: 0;
  transition: opacity 0.8s ease;
}
.dn-layer--night {
  opacity: 0;
}
.is-night .dn-layer--night {
  opacity: 1;
}
.is-night .dn-layer--day {
  opacity: 0;
}

.clock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 768px) {
  .clock-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.clock-cell {
  background: var(--ink-2);
  padding: 1.4rem 1.2rem;
}
.clock-city {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.clock-time {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: #fff;
  margin-top: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.progress-bar {
  height: 3px;
  background: var(--line-light);
  border-radius: 99px;
  overflow: hidden;
}
.progress-bar i {
  display: block;
  height: 100%;
  background: #fff;
  width: 0;
  transition: width 0.6s ease;
}

.big-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--ink);
  transition:
    padding-left 0.35s,
    color 0.3s;
}
.big-link:hover {
  padding-left: 1rem;
  color: var(--sapphire);
}
.big-link i {
  font-size: 1rem;
  color: var(--sapphire);
  transition: transform 0.3s;
}
.big-link:hover i {
  transform: translateX(6px);
}

.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.tick-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.9rem;
}
.tick-list i {
  color: var(--sapphire);
  font-size: 0.8rem;
}

.gallery-masonry {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) {
  .gallery-masonry {
    columns: 2;
  }
}
@media (min-width: 1024px) {
  .gallery-masonry {
    columns: 3;
  }
}
.gallery-masonry > * {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.img-frame {
  border: 1px solid var(--line);
  padding: 0.7rem;
  background: #fff;
  border-radius: var(--r-sm);
}
.img-frame img {
  border-radius: 4px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.award-badge i {
  color: var(--platinum);
}

.pwd-pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 260px;
}
.pwd-key {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--serif);
  cursor: pointer;
  transition: all 0.2s;
}
.pwd-key:hover {
  background: rgba(255, 255, 255, 0.15);
}
.pwd-display {
  letter-spacing: 0.6em;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  min-height: 2.2rem;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-top {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .section {
    padding-block: 3.5rem;
  }
  .booking-bar {
    bottom: 0.5rem;
  }
  .booking-panel {
    padding: 0.9rem 1rem;
    border-radius: var(--r-md);
  }
  .display-xl {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }
  .marquee-track {
    gap: 2rem;
    padding-right: 2rem;
  }
  .toast-wrap {
    top: auto;
    bottom: 5.5rem;
    right: 0.75rem;
    left: 0.75rem;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
