:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-mute: #64748b;
  --paper: #f8fafc;
  --paper-2: #f1f5f9;
  --line: rgba(15, 23, 42, 0.12);
  --accent: #0284c7;
  --accent-deep: #075985;
  --accent-ice: #e0f2fe;
  --cyan: #22d3ee;
  --deep: #0b1526;
  --deep-2: #0e1d33;
  --deep-line: rgba(226, 232, 240, 0.14);
  --white: #ffffff;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:
    "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
  --shadow-soft: 0 18px 50px -18px rgba(15, 23, 42, 0.22);
  --shadow-card: 0 10px 34px -14px rgba(15, 23, 42, 0.18);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--paper-2);
}
::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
.font-display {
  font-family: var(--font-display);
}
.wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.wrap-wide {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .wrap {
    padding: 0 2rem;
  }
  .wrap-wide {
    padding: 0 2.5rem;
  }
}
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}
.section-sm {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}
.section-dark {
  background: var(--deep);
  color: #e2e8f0;
}
.section-ink {
  background: var(--deep-2);
  color: #e2e8f0;
}
.section-mist {
  background: var(--paper-2);
}
.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-on-dark {
  color: #f1f5f9;
}
.text-on-dark .eyebrow {
  color: #7dd3fc;
}
.text-on-dark .lead {
  color: #cbd5e1 !important;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-rule::before {
  display: none;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  padding-bottom: 0.08em;
}
.h-hero {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
}
.h-1 {
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
}
.h-2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}
.h-3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.h-1,
.h-2,
.h-3 {
  height: auto !important;
}
.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--accent);
}
.txt-mute {
  color: var(--ink-mute);
}
.text-gradient {
  background: linear-gradient(115deg, #38bdf8 0%, #0284c7 55%, #0e7490 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(226, 232, 240, 0.28);
}
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding: 0.08em 0.12em 0 0;
  color: var(--accent-deep);
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
  text-decoration: none;
  white-space: nowrap;
}
.btn i {
  transition: transform 0.35s var(--ease);
}
.btn:hover i {
  transform: translateX(4px);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(2, 132, 199, 0.55);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: var(--accent-ice);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.62rem 1.3rem;
  font-size: 0.72rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.chip i {
  color: var(--accent);
}
.section-dark .chip,
.text-on-dark .chip {
  border-color: var(--deep-line);
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
}
.badge-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.badge-float strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0;
}
.badge-dark {
  background: rgba(11, 21, 38, 0.85);
  color: #94a3b8;
}
.badge-dark strong {
  color: #fff;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-card);
}
.card-hover {
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(2, 132, 199, 0.35);
}
.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  border-radius: 1.4rem;
}
.glass-light {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-radius: 1.4rem;
}
.frame-img {
  overflow: hidden;
  border-radius: 1.4rem;
}
.frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
  display: block;
}
.card-hover:hover .frame-img img,
.frame-img.zoom-on-hover:hover img {
  transform: scale(1.06);
}
.img-caption {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.75rem;
}
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}
.rule-light {
  height: 1px;
  background: var(--deep-line);
  border: 0;
}
.ghost-num {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(2, 132, 199, 0.3);
  user-select: none;
}
.section-dark .ghost-num,
.text-on-dark .ghost-num {
  -webkit-text-stroke-color: rgba(125, 211, 252, 0.28);
}
.divider-orn {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent);
}
.divider-orn::before,
.divider-orn::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-dark .divider-orn::before,
.section-dark .divider-orn::after {
  background: var(--deep-line);
}
.blueprint-bg {
  background-color: var(--deep);
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
}
.dot-grid {
  background-image: radial-gradient(rgba(15, 23, 42, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section-dark .dot-grid {
  background-image: radial-gradient(
    rgba(226, 232, 240, 0.09) 1px,
    transparent 1px
  );
}
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-deep);
  background: #fff;
}
.section-dark .num-badge {
  background: transparent;
  color: #7dd3fc;
  border-color: var(--deep-line);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.15);
}
.header-topline {
  background: var(--deep);
  color: #cbd5e1;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.topline-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  text-decoration: none;
  white-space: nowrap;
}
.topline-item i {
  color: #38bdf8;
}
a.topline-item:hover {
  color: #fff;
}
.topline-item.hide-m {
  display: none;
}
@media (min-width: 768px) {
  .topline-item.hide-m {
    display: inline-flex;
  }
}
.header-main {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .header-main {
    padding: 1rem 2.5rem;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: 52px;
  height: auto;
  display: block;
}
.brand span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.brand em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
}
.main-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 1100px) {
  .main-nav {
    display: flex;
  }
}
.main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover {
  color: var(--accent);
}
.main-nav a:hover::after {
  width: 100%;
}
.main-nav a.nav-cta {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}
.main-nav a.nav-cta::after {
  display: none;
}
.main-nav a.nav-cta:hover {
  background: var(--ink);
  color: #fff;
}
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
}
.burger:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (min-width: 1100px) {
  .burger {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--deep);
  color: #e2e8f0;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transform: translateY(-105%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  padding: 0.65rem 0;
  color: #e2e8f0;
  text-decoration: none;
  border-bottom: 1px solid var(--deep-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu nav a i {
  font-size: 0.9rem;
  color: #38bdf8;
}
.mobile-menu nav a:hover {
  color: #7dd3fc;
  padding-left: 0.5rem;
  transition: padding 0.3s;
}
.mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #94a3b8;
}
.mobile-contacts i {
  color: #38bdf8;
  margin-right: 0.5rem;
}
body.menu-locked {
  overflow: hidden;
}
.site-footer {
  background: var(--deep);
  color: #94a3b8;
}
.footer-grid {
  max-width: 90rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    padding: 5rem 2.5rem 3.5rem;
  }
}
@media (min-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.5fr 0.9fr 1.1fr 0.9fr 1.2fr;
  }
}
.footer-brand img {
  width: 76px;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 22rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  transition:
    color 0.25s,
    padding 0.25s;
}
.footer-col a:hover {
  color: #fff;
  padding-left: 0.3rem;
}
.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.footer-contact-item i {
  color: #38bdf8;
  margin-top: 0.25rem;
}
.footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: #fff;
}
.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--deep-line);
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-legal {
  border-top: 1px solid var(--deep-line);
  padding: 1.6rem 1.25rem 2rem;
  font-size: 0.75rem;
  line-height: 1.8;
}
.footer-legal-inner {
  max-width: 90rem;
  margin: 0 auto;
}
.footer-legal .reg {
  color: #64748b;
}
.footer-legal .copy {
  color: #94a3b8;
  margin-top: 0.4rem;
}
.hero-slider {
  position: relative;
  min-height: 80vh;
  display: flex;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
    url(/images/pacific-vista-resort-brisbane-casino-0rsl3cr6ku-rn4iivic80.webp);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-slide .slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7rem 0 8.5rem;
}
.hero-slide .zoom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-slide.is-active .zoom-bg {
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.12);
  }
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 21, 38, 0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.slider-arrow.prev {
  left: 1.5rem;
}
.slider-arrow.next {
  right: 1.5rem;
}
@media (min-width: 900px) {
  .slider-arrow {
    display: inline-flex;
  }
}
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}
.slider-dots .dot {
  width: 2.4rem;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-dots .dot.is-active {
  background: #fff;
}
.slider-count {
  position: absolute;
  right: 2rem;
  bottom: 1.6rem;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion-item + .accordion-item {
  margin-top: 0.8rem;
}
.accordion-item.is-open {
  border-color: rgba(2, 132, 199, 0.45);
}
.section-dark .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--deep-line);
}
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}
.section-dark .accordion-button {
  color: #f1f5f9;
}
.accordion-button i {
  color: var(--accent);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.accordion-item.is-open .accordion-button i {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.accordion-body-inner {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.section-dark .accordion-body-inner {
  color: #cbd5e1;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.section-dark .faq-question,
.text-on-dark .faq-question {
  color: #f1f5f9;
}
.faq-question .fx {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.4s var(--ease);
}
.faq-item.is-open .faq-question .fx {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer p,
.faq-answer-inner {
  padding: 0 0.2rem 1.4rem;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}
.section-dark .faq-answer p,
.text-on-dark .faq-answer p {
  color: #cbd5e1;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.tab-btn i {
  color: var(--accent);
}
.tab-btn:hover {
  border-color: var(--accent);
}
.tab-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tab-btn.is-active i {
  color: #7dd3fc;
}
.section-dark .tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--deep-line);
  color: #cbd5e1;
}
.section-dark .tab-btn.is-active {
  background: #fff;
  color: var(--ink);
}
.section-dark .tab-btn.is-active i {
  color: var(--accent);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeSlide 0.6s var(--ease);
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.seg-control {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(11, 21, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.seg-control .tab-btn {
  border: 0;
  background: transparent;
  color: #cbd5e1;
}
.seg-control .tab-btn.is-active {
  background: #fff;
  color: var(--ink);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink-mute);
}
.marquee-item i {
  color: var(--accent);
  font-size: 1rem;
}
.filmstrip {
  position: relative;
  padding: 1.4rem 0;
  background: var(--deep);
}
.filmstrip::before,
.filmstrip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background-image: radial-gradient(
    circle,
    rgba(226, 232, 240, 0.4) 3px,
    transparent 3.5px
  );
  background-size: 26px 14px;
  background-position: center;
}
.filmstrip::before {
  top: 0.3rem;
}
.filmstrip::after {
  bottom: 0.3rem;
}
.film-viewport {
  overflow: hidden;
}
.film-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 1.2rem 0;
}
.filmstrip:hover .film-track {
  animation-play-state: paused;
}
.film-frame {
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
}
.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.film-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2e8f0;
  background: linear-gradient(transparent, rgba(11, 21, 38, 0.85));
}
@media (max-width: 640px) {
  .film-track {
    animation-duration: 26s;
  }
  .film-frame {
    width: 190px;
    height: 128px;
  }
}
.timeline {
  position: relative;
  padding-left: 2.2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--line);
}
.section-dark .timeline::before {
  background: var(--deep-line);
}
.tl-item {
  position: relative;
  padding-bottom: 2.2rem;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: -2.2rem;
  top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #fff;
}
.section-dark .tl-dot {
  background: var(--deep);
}
.tl-item.is-milestone .tl-dot {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.15);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-deep);
  line-height: 1;
}
.section-dark .tl-year {
  color: #7dd3fc;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--ink);
}
.section-dark .stat-num,
.text-on-dark .stat-num {
  color: #fff;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.5rem;
}
.section-dark .stat-label,
.text-on-dark .stat-label {
  color: #94a3b8;
}
.pin {
  position: absolute;
  z-index: 4;
}
.pin-dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  border: 0;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.pin-card {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 13rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(11, 21, 38, 0.92);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-size: 0.74rem;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
}
.pin-card strong {
  display: block;
  color: #7dd3fc;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.pin:hover .pin-card,
.pin:focus-within .pin-card {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.scroll-x {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar {
  display: none;
}
.scroll-x > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.fade-edge {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}
.dot-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.dot-nav .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.dot-nav .dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}
.audio-player {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1.4rem;
  background: rgba(11, 21, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #e2e8f0;
}
.audio-play-btn {
  width: 3.4rem;
  height: 3.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.audio-play-btn:hover {
  transform: scale(1.06);
  background: var(--accent-deep);
}
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 1.4rem;
}
.eq span {
  width: 3px;
  background: #7dd3fc;
  height: 30%;
  border-radius: 2px;
}
.is-playing .eq span {
  animation: eqb 0.9s ease-in-out infinite;
}
.is-playing .eq span:nth-child(2) {
  animation-delay: 0.15s;
}
.is-playing .eq span:nth-child(3) {
  animation-delay: 0.3s;
}
.is-playing .eq span:nth-child(4) {
  animation-delay: 0.45s;
}
@keyframes eqb {
  0%,
  100% {
    height: 25%;
  }
  50% {
    height: 100%;
  }
}
.form-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .span-2 {
    grid-column: span 2;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.err-msg {
  display: none;
  font-size: 0.76rem;
  color: #dc2626;
  font-weight: 600;
}
.field.invalid .err-msg {
  display: block;
}
.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.phone-combo {
  display: flex;
  gap: 0.6rem;
}
.phone-combo select {
  flex: 0 0 7.5rem;
  width: auto;
}
.phone-combo input {
  flex: 1;
  min-width: 0;
}
@media (max-width: 480px) {
  .phone-combo {
    flex-direction: column;
  }
  .phone-combo select {
    flex: 1 1 auto;
    width: 100%;
  }
}
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.check-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.check-field a {
  color: var(--accent);
  text-decoration: underline;
}
.check-field.invalid {
  color: #dc2626;
}
.btn .spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn.is-loading .spinner {
  display: inline-block;
}
.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.toast {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease);
  max-width: min(92vw, 30rem);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast i {
  color: #38bdf8;
  font-size: 1.1rem;
}
.toast.toast-error i {
  color: #f87171;
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9998;
  display: none;
}
.cookie-banner.show {
  display: block;
  animation: fadeSlide 0.6s var(--ease);
}
.cookie-card {
  max-width: 62rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.cookie-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.cookie-card p strong {
  color: var(--ink);
}
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
}
@media (min-width: 768px) {
  .cookie-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.table-luxe {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.table-luxe th {
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 800;
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--ink);
}
.table-luxe td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table-luxe tr:last-child td {
  border-bottom: 0;
}
.table-luxe .price-cell {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-deep);
  white-space: nowrap;
}
.table-luxe tbody tr {
  transition: background 0.25s;
}
.table-luxe tbody tr:hover {
  background: rgba(2, 132, 199, 0.05);
}
.table-wrap {
  overflow-x: auto;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.section-dark .table-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--deep-line);
}
.section-dark .table-luxe th {
  color: #94a3b8;
  border-color: #e2e8f0;
}
.section-dark .table-luxe td {
  border-color: var(--deep-line);
  color: #cbd5e1;
}
.section-dark .table-luxe .price-cell {
  color: #7dd3fc;
}
.section-dark .table-luxe tbody tr:hover {
  background: rgba(125, 211, 252, 0.07);
}
.prose-pvr {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.prose-pvr p {
  margin-bottom: 1.4rem;
}
.prose-pvr h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  margin: 2.4rem 0 1rem;
  line-height: 1.15;
}
.prose-pvr h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2rem 0 0.8rem;
}
.prose-pvr ul {
  margin: 0 0 1.4rem 1.2rem;
  list-style: none;
}
.prose-pvr ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}
.prose-pvr ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 2px;
  background: var(--accent);
}
.prose-pvr a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-pvr a:hover {
  color: var(--accent-deep);
}
.prose-pvr strong {
  color: var(--ink);
}
.quote-block {
  position: relative;
  padding: 2rem 0 2rem 4.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
}
.quote-block::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  position: absolute;
  left: 0;
  top: 1.6rem;
  font-size: 2.6rem;
  color: var(--accent);
  opacity: 0.35;
}
.section-dark .quote-block,
.text-on-dark .quote-block {
  color: #f1f5f9;
}
.quote-cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 1rem;
}
.section-dark .quote-cite,
.text-on-dark .quote-cite {
  color: #94a3b8;
}
.map-frame {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.02);
}
.countdown {
  display: flex;
  gap: 0.8rem;
}
.countdown .cd-cell {
  min-width: 4.2rem;
  text-align: center;
  padding: 0.8rem 0.6rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--deep-line);
}
.countdown .cd-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  display: block;
}
.countdown .cd-lab {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}
.hover-line {
  position: relative;
}
.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.hover-line:hover::after {
  width: 100%;
}
.tick-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tick-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.tick-list li i {
  color: var(--accent);
  margin-top: 0.28rem;
  font-size: 0.8rem;
}
.section-dark .tick-list li,
.text-on-dark .tick-list li {
  color: #cbd5e1;
}
.section-dark .tick-list li i,
.text-on-dark .tick-list li i {
  color: #7dd3fc;
}
.icon-tile {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: var(--accent-ice);
  color: var(--accent-deep);
  flex-shrink: 0;
}
.section-dark .icon-tile {
  background: rgba(125, 211, 252, 0.12);
  color: #7dd3fc;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 4.6rem;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(rgba(255, 255, 255, 0.8), transparent);
  animation: drip 1.8s var(--ease) infinite;
}
@keyframes drip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: top;
  }
  56% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.horizon-stage {
  transition: filter 0.8s var(--ease);
}
.horizon-stage[data-mood="dawn"] .mood-wash {
  background: linear-gradient(
    180deg,
    rgba(56, 130, 246, 0.12),
    rgba(14, 116, 144, 0.25)
  );
}
.horizon-stage[data-mood="day"] .mood-wash {
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.1),
    rgba(2, 132, 199, 0.18)
  );
}
.horizon-stage[data-mood="dusk"] .mood-wash {
  background: linear-gradient(
    180deg,
    rgba(30, 64, 175, 0.2),
    rgba(15, 23, 42, 0.45)
  );
}
.horizon-stage[data-mood="night"] .mood-wash {
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.55),
    rgba(2, 6, 23, 0.75)
  );
}
.mood-wash {
  position: absolute;
  inset: 0;
  transition: background 0.8s;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}
