@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --paper: #fafaf8;
  --white: #ffffff;
  --ink: #10151c;
  --ink-2: #2a3240;
  --muted: #5d6675;
  --line: #e8e6df;
  --line-dark: rgba(255, 255, 255, 0.14);
  --emerald: #0d5c4d;
  --emerald-deep: #083c33;
  --emerald-soft: #e7f0ed;
  --crimson: #8c1f30;
  --crimson-soft: #f6eaec;
  --night: #0b1117;
  --night-2: #131b24;
  --silver: #9aa6b4;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 24px rgba(16, 21, 28, 0.06);
  --shadow-md: 0 18px 50px rgba(16, 21, 28, 0.12);
  --shadow-lg: 0 30px 90px rgba(16, 21, 28, 0.22);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
main {
  display: block;
  overflow: hidden;
}

.wrap {
  width: min(1240px, 92vw);
  margin-inline: auto;
}
.wrap-wide {
  width: min(1480px, 94vw);
  margin-inline: auto;
}
.section {
  padding: clamp(64px, 9vw, 130px) 0;
  position: relative;
}
.section-tight {
  padding: clamp(44px, 6vw, 80px) 0;
  position: relative;
}
.section-dark {
  background: var(--night);
  color: #f4f6f8;
}
.section-mist {
  background: linear-gradient(180deg, #ffffff 0%, #f2f4f1 100%);
}
.section-emerald {
  background: var(--emerald-deep);
  color: #eef5f2;
}
.section-line-top {
  border-top: 1px solid var(--line);
}

.bg-media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-media > * {
  position: relative;
  z-index: 2;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 30px);
}
.col-4 {
  grid-column: span 4;
}
.col-5 {
  grid-column: span 5;
}
.col-6 {
  grid-column: span 6;
}
.col-7 {
  grid-column: span 7;
}
.col-8 {
  grid-column: span 8;
}
.col-12 {
  grid-column: span 12;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light {
  color: #7fd4c0;
}
.eyebrow--crimson {
  color: var(--crimson);
}

.display-1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7.5vw, 108px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.display-3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
  font-weight: 500;
}
.display em {
  font-style: italic;
  color: var(--emerald);
}
.display-2 em,
.display-3 em {
  font-style: italic;
  color: var(--emerald);
}
.section-dark .display-2 em,
.section-dark .display-3 em,
.section-emerald .display-2 em {
  color: #8fd8c6;
}

.lead {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.section-dark .lead,
.section-emerald .lead {
  color: #c3ccd4;
}
.text-serif {
  font-family: var(--font-serif);
}

.index-num {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 21, 28, 0.22);
  display: block;
}
.section-dark .index-num,
.section-emerald .index-num {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.28);
}

.v-label {
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--silver);
}

.giant-word {
  font-family: var(--font-serif);
  font-size: clamp(70px, 14vw, 220px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 21, 28, 0.1);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.section-dark .giant-word {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
  white-space: nowrap;
}
.btn i {
  font-size: 12px;
  transition: transform 0.35s var(--ease);
}
.btn:hover i {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--emerald);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-emerald {
  background: var(--emerald);
  color: #fff;
}
.btn-emerald:hover {
  background: var(--emerald-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-crimson {
  background: var(--crimson);
  color: #fff;
}
.btn-crimson:hover {
  background: #6d1725;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
}
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  padding: 11px 22px;
  font-size: 11px;
}

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  border-bottom: 1px solid var(--emerald);
  padding-bottom: 6px;
  transition:
    gap 0.3s var(--ease),
    color 0.3s;
}
.link-line:hover {
  gap: 16px;
  color: var(--emerald-deep);
}
.section-dark .link-line {
  color: #8fd8c6;
  border-color: #8fd8c6;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: #d8d6cc;
}
.card-dark {
  background: var(--night-2);
  border-color: var(--line-dark);
  color: #eef2f5;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--emerald-soft);
  color: var(--emerald);
  font-size: 20px;
  margin-bottom: 22px;
}
.card-dark .card-icon {
  background: rgba(127, 212, 192, 0.12);
  color: #8fd8c6;
}
.card-icon--crimson {
  background: var(--crimson-soft);
  color: var(--crimson);
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.card-dark p {
  color: #b6c0cb;
}

.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #dfe3e6;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.frame:hover img {
  transform: scale(1.05);
}
.frame--tall {
  aspect-ratio: 3 / 4;
}
.frame--wide {
  aspect-ratio: 16 / 9;
}
.frame--square {
  aspect-ratio: 1 / 1;
}
.frame--cinema {
  aspect-ratio: 21 / 9;
}
.frame-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.frame-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--white);
}
.badge i {
  color: var(--emerald);
}
.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  color: #e6ebef;
}
.badge-dark i {
  color: #8fd8c6;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--white);
  color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.chip:hover,
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.hr-fade {
  height: 1px;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line) 20%,
    var(--line) 80%,
    transparent
  );
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: clamp(22px, 3vw, 38px);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  color: var(--emerald);
  display: block;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats-row--dark {
  background: var(--line-dark);
  border-color: var(--line-dark);
}
.stats-row--dark .stat {
  background: var(--night-2);
}
.stats-row--dark .stat-num {
  color: #8fd8c6;
}
.stats-row--dark .stat-label {
  color: #93a0ad;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.header-top {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.header-top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-top-item i {
  color: var(--emerald);
  font-size: 11px;
}
.header-main {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}
.header-logo img {
  height: 52px;
  width: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.nav-list a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width 0.3s var(--ease);
}
.nav-list a:hover {
  color: var(--emerald);
}
.nav-list a:hover::after {
  width: 100%;
}
.nav-list a.nav-accent {
  color: var(--crimson);
}
.nav-list a.nav-accent::after {
  background: var(--crimson);
}
.header-cta {
  flex-shrink: 0;
}
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--paper);
  padding: 28px 6vw 40px;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: block;
  animation: menuIn 0.4s var(--ease);
}
@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.mobile-menu-head img {
  height: 46px;
}
.mobile-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 17px;
}
.mobile-nav {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink);
}
.mobile-nav a i {
  font-size: 13px;
  color: var(--emerald);
}
.mobile-contacts {
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.mobile-contacts div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mobile-contacts i {
  color: var(--emerald);
  width: 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding: clamp(120px, 16vh, 180px) 0 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-year {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-title-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-side-card {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 22px 26px;
  display: grid;
  gap: 6px;
  min-width: 230px;
}
.hero-side-card .big {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
}
.slider-dots {
  display: flex;
  gap: 10px;
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 210px;
}
.slider-dot {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  padding: 0;
  transition: background 0.3s;
}
.slider-dot.is-active {
  background: #fff;
}
.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 17, 23, 0.25);
  color: #fff;
  font-size: 14px;
  transition: background 0.3s;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}
.slider-arrow--prev {
  left: 24px;
}
.slider-arrow--next {
  right: 24px;
}

.booking-bar {
  position: relative;
  z-index: 5;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-field {
  padding: 20px 26px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 4px;
  align-content: center;
}
.booking-field:last-of-type {
  border-right: 0;
}
.booking-field label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-field select,
.booking-field input {
  border: 0;
  background: transparent;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.booking-submit {
  display: flex;
  align-items: stretch;
}
.booking-submit .btn {
  border-radius: 0;
  height: 100%;
  padding-inline: 38px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 20px 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}
.marquee-track i {
  color: var(--emerald);
  font-size: 12px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.tile-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: #e3e7ea;
}
.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--emerald);
  font-size: 13px;
  display: grid;
  place-items: center;
  z-index: 4;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}
.hotspot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.hotspot:hover,
.hotspot.is-active {
  background: var(--emerald);
  color: #fff;
  transform: scale(1.12);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 88px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.tl-item {
  display: grid;
  grid-template-columns: 70px 40px 1fr;
  gap: 0 22px;
  padding: 30px 0;
  position: relative;
}
.tl-year {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--emerald);
  text-align: right;
}
.tl-dot {
  position: relative;
}
.tl-dot::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--emerald);
}
.tl-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 8px;
}
.tl-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.timeline--horizontal {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}
.timeline--horizontal::before {
  display: none;
}
.timeline--horizontal .tl-item {
  min-width: 320px;
  grid-template-columns: 1fr;
  scroll-snap-align: start;
  gap: 12px;
  border-top: 2px solid var(--line);
  padding-top: 24px;
}
.timeline--horizontal .tl-dot::before {
  top: -33px;
  left: 0;
}
.timeline--horizontal .tl-year {
  text-align: left;
}

.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}
.step-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--emerald);
}
.step-item h4 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 22px;
}
.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.section-dark .step-item {
  border-color: var(--line-dark);
}
.section-dark .step-item p {
  color: #aeb9c4;
}
.section-dark .step-num {
  -webkit-text-stroke-color: #8fd8c6;
}

.faq details,
details.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary,
details.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker,
details.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq summary::after,
details.faq-item summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--emerald);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after,
details.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq details .faq-a,
details.faq-item .faq-a {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
}
.section-dark .faq details,
.section-dark details.faq-item {
  background: var(--night-2);
  border-color: var(--line-dark);
}
.section-dark .faq summary,
.section-dark details.faq-item summary {
  color: #eef2f5;
}
.section-dark .faq details .faq-a,
.section-dark details.faq-item .faq-a {
  color: #aeb9c4;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.accordion-button i {
  color: var(--emerald);
  transition: transform 0.3s var(--ease);
}
.accordion-item.is-open .accordion-button i {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.accordion-body > div {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.tab-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.swipe-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.swipe-track > * {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
}
.swipe-track--wide > * {
  flex: 0 0 min(520px, 88vw);
}

.car {
  position: relative;
}
.car-nav {
  display: flex;
  gap: 10px;
}
.car-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.car-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.quote-block {
  position: relative;
  padding-left: 34px;
}
.quote-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--emerald);
  border-radius: 3px;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 14px;
}
.quote-block cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.polaroid {
  background: #fff;
  padding: 14px 14px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease);
}
.polaroid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 3px;
}
.polaroid figcaption {
  padding-top: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
}
.polaroid:nth-child(odd) {
  transform: rotate(-2.4deg);
}
.polaroid:nth-child(even) {
  transform: rotate(1.8deg);
}
.polaroid:hover {
  transform: rotate(0) scale(1.04);
  z-index: 3;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th {
  text-align: left;
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: #f4f4f0;
}
.price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}
.price-table tr:last-child td {
  border-bottom: 0;
}
.price-table tr:hover td {
  background: #f7f8f5;
}
.price-tag {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--emerald);
  white-space: nowrap;
}
.price-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
}

.pkg {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.pkg:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.pkg--featured {
  background: var(--night);
  color: #f1f5f7;
  border-color: var(--night);
}
.pkg--featured .pkg-price {
  color: #8fd8c6;
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1;
  color: var(--emerald);
}
.pkg-price small {
  font-size: 15px;
  color: var(--muted);
  font-family: var(--font-sans);
}
.pkg ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}
.pkg ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pkg ul li i {
  color: var(--emerald);
  margin-top: 4px;
  font-size: 12px;
}
.pkg--featured ul li i {
  color: #8fd8c6;
}
.pkg .btn {
  margin-top: auto;
}

.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field label i {
  color: var(--emerald);
  margin-right: 6px;
}
.input,
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(13, 92, 77, 0.12);
}
.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(140, 31, 48, 0.1);
}
.field-error {
  display: none;
  font-size: 12.5px;
  color: var(--crimson);
  font-weight: 600;
}
.field.is-error .field-error {
  display: block;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--emerald);
  flex-shrink: 0;
}
.consent a {
  color: var(--emerald);
  font-weight: 700;
  text-decoration: underline;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.submit-wrap {
  position: relative;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.is-loading .spinner {
  display: inline-block;
}
.is-loading .btn-label {
  opacity: 0.6;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-stack {
  position: fixed;
  z-index: 2000;
  bottom: 24px;
  right: 24px;
  display: grid;
  gap: 10px;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.4s var(--ease);
  max-width: 340px;
}
.toast i {
  color: #8fd8c6;
}
.toast--error i {
  color: #f0a3ae;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.toast.is-out {
  animation: toastOut 0.4s var(--ease) forwards;
}
@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(11, 17, 23, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.is-open {
  display: flex;
  animation: fadeUp 0.3s var(--ease);
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 86vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 1900;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  width: min(680px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: none;
  align-items: center;
  gap: 20px;
}
.cookie-banner.is-visible {
  display: flex;
  animation: fadeUp 0.5s var(--ease);
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
}
.cookie-banner .cookie-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--emerald-soft);
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.cookie-btn--decline {
  background: #eef0ee;
  color: var(--ink-2);
}
.cookie-btn--decline:hover {
  background: #e2e5e0;
}
.cookie-btn--accept {
  background: var(--emerald);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--emerald-deep);
}

.site-footer {
  background: var(--night);
  color: #cfd7de;
}
.footer-giant {
  font-family: var(--font-serif);
  font-size: clamp(46px, 9vw, 150px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(50px, 6vw, 90px) 0;
}
.footer-logo img {
  height: 58px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.footer-col a {
  font-size: 14px;
  color: #b6c1cb;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.footer-col a:hover {
  color: #8fd8c6;
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: #8fd8c6;
  margin-top: 4px;
  width: 16px;
}
.footer-contact-item a {
  color: #e6ecf1;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: #cfd7de;
  font-size: 15px;
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
  transform: translateY(-4px);
}
.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  font-size: 12.5px;
  color: #8a96a3;
  display: grid;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8a96a3;
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: #8fd8c6;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.4s var(--ease);
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-top:hover {
  background: var(--emerald);
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.breadcrumbs i {
  font-size: 9px;
  color: var(--silver);
}
.breadcrumbs a:hover {
  color: var(--emerald);
}

.toc {
  display: grid;
  gap: 2px;
}
.toc a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  align-items: center;
  transition: background 0.25s;
}
.toc a i {
  color: var(--emerald);
  font-size: 10px;
}
.toc a:hover {
  background: var(--white);
}

.article-body p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  margin: 44px 0 18px;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  margin: 34px 0 14px;
}
.article-body ul {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.article-body ul li {
  padding-left: 28px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink-2);
}
.article-body ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 11px;
  color: var(--emerald);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.check-list li i {
  color: var(--emerald);
  margin-top: 5px;
  font-size: 12px;
  flex-shrink: 0;
}
.section-dark .check-list li {
  color: #c3ccd4;
}
.section-dark .check-list li i {
  color: #8fd8c6;
}

.num-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: nl;
  display: grid;
  gap: 16px;
}
.num-list li {
  counter-increment: nl;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  font-size: 15px;
}
.num-list li::before {
  content: counter(nl, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--emerald);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--white);
}

.contact-card {
  text-align: center;
  padding: 34px 24px;
}
.contact-card .card-icon {
  margin-inline: auto;
}

.jackpot-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1;
  color: #8fd8c6;
  letter-spacing: 0.02em;
}
.roulette-wheel {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  position: relative;
  background: conic-gradient(
    from 0deg,
    #8c1f30 0deg 20deg,
    #131b24 20deg 40deg,
    #0d5c4d 40deg 60deg,
    #131b24 60deg 80deg,
    #8c1f30 80deg 100deg,
    #131b24 100deg 120deg,
    #0d5c4d 120deg 140deg,
    #131b24 140deg 160deg,
    #8c1f30 160deg 180deg,
    #131b24 180deg 200deg,
    #0d5c4d 200deg 220deg,
    #131b24 220deg 240deg,
    #8c1f30 240deg 260deg,
    #131b24 260deg 280deg,
    #0d5c4d 280deg 300deg,
    #131b24 300deg 320deg,
    #8c1f30 320deg 340deg,
    #131b24 340deg 360deg
  );
  animation: wheelSpin 40s linear infinite;
}
.roulette-wheel::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: var(--night-2);
  border: 1px solid var(--line-dark);
}
@keyframes wheelSpin {
  to {
    transform: rotate(360deg);
  }
}

.diagonal-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.overlap-card {
  margin-top: -90px;
  position: relative;
  z-index: 5;
}

.weather-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
}
.weather-pill i {
  color: #8fd8c6;
}

.float-cta {
  position: fixed;
  z-index: 950;
  bottom: 22px;
  left: 22px;
  display: none;
}
.flex-end {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-desc {
  font-size: 14px;
  color: #b6c1cb;
  max-width: 34ch;
}
.footer-head-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 40px;
}
.footer-legal a {
  color: #8a96a3;
}
.footer-legal a:hover {
  color: #8fd8c6;
}
.lead-light {
  color: #d5dce2;
}
.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sticky-col {
  position: sticky;
  top: 120px;
}
.stack {
  display: grid;
  gap: 18px;
}
.center-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.row-flex {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.avatar-round {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
}
.text-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
}
.section-dark .text-quote {
  color: #eef2f5;
}
.full-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  color: #fff;
}
.eyebrow--custom {
  color: #8fd8c6;
}
.cat-card {
  display: block;
}
.cat-card .frame {
  margin-bottom: 18px;
}
.cat-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 8px;
  transition: color 0.3s;
}
.cat-card:hover h3 {
  color: var(--emerald);
}
.cat-card .cat-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 14px;
}
.cat-card p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
}

.legal-note {
  font-size: 12.5px;
  color: var(--muted);
  border-left: 3px solid var(--emerald);
  padding: 14px 18px;
  background: var(--white);
  border-radius: 0 12px 12px 0;
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 34px;
}
.divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.divider-label span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-dark .divider-label::after {
  background: var(--line-dark);
}

@media (max-width: 1100px) {
  .nav-list {
    gap: 18px;
  }
  .nav-list a {
    font-size: 11.5px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .header-top .header-top-item--hide {
    display: none;
  }
  .nav-list {
    display: none;
  }
  .burger {
    display: grid;
    place-items: center;
  }
  .header-cta {
    display: none;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-12 {
    grid-template-columns: 1fr;
  }
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: span 12;
  }
  .booking-bar {
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }
  .booking-field {
    border-bottom: 1px solid var(--line);
  }
  .booking-submit {
    grid-column: 1 / -1;
  }
  .booking-submit .btn {
    border-radius: 0;
  }
  .diagonal-split {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 30px;
  }
  .tl-item {
    grid-template-columns: 60px 30px 1fr;
    gap: 0 14px;
  }
  .tl-dot::before {
    left: 8px;
  }
  .hero-side-card {
    position: static;
    margin-top: 26px;
  }
  .slider-arrow {
    display: none;
  }
  .slider-dots {
    bottom: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .v-label {
    display: none;
  }
  .overlap-card {
    margin-top: 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
  }
  .cookie-banner .cookie-ico {
    margin-inline: auto;
  }
  .cookie-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-bar {
    grid-template-columns: 1fr;
  }
  .booking-field {
    border-right: 0;
  }
  .step-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .step-num {
    font-size: 34px;
  }
  .hero-title-row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-year {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .polaroid:nth-child(odd),
  .polaroid:nth-child(even) {
    transform: none;
  }
}

.page-content {
  position: relative;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--emerald);
  font-size: 14px;
}
