:root {
  --pearl: #faf8f4;
  --paper: #ffffff;
  --ink: #0f1216;
  --graphite: #23282f;
  --muted: #66707c;
  --ruby: #7f1d2d;
  --ruby-soft: #a53242;
  --line: rgba(15, 18, 22, 0.12);
  --line-soft: rgba(15, 18, 22, 0.07);
  --dark: #0c0e11;
  --dark-2: #14171c;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --shadow-s: 0 8px 24px rgba(15, 18, 22, 0.08);
  --shadow-m: 0 18px 48px rgba(15, 18, 22, 0.14);
  --shadow-l: 0 32px 80px rgba(15, 18, 22, 0.22);
  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--pearl);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--ruby);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--pearl);
}

::-webkit-scrollbar-thumb {
  background: #c8c3ba;
  border-radius: 8px;
}

.container-x {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
}

.sec {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0;
}

.sec-tight {
  padding: clamp(48px, 6vw, 80px) 0;
}

.sec-dark {
  background: var(--dark);
  color: #f3f1ec;
}

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

.sec-graphite {
  background: #ece9e3;
}

.bg-ph {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f3ef;
}

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

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ruby);
}

.kicker-center {
  justify-content: center;
}

.kicker-center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ruby);
}

.sec-dark .kicker,
.bg-ph .kicker {
  color: #d9a3ab;
}

.sec-dark .kicker::before,
.sec-dark .kicker::after,
.bg-ph .kicker::before,
.bg-ph .kicker::after {
  background: #d9a3ab;
}

.h-display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
}

.h-sec {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
}

.h-card {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  margin: 0;
}

.h-sub {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  margin: 0;
}

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.sec-dark .lead,
.bg-ph .lead {
  color: rgba(243, 241, 236, 0.78);
}

.muted {
  color: var(--muted);
}

.sec-dark .muted,
.bg-ph .muted {
  color: rgba(243, 241, 236, 0.62);
}

.small {
  font-size: 0.86rem;
  line-height: 1.6;
}

.serif-i {
  font-family: var(--serif);
  font-style: italic;
}

.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 3.6em;
  font-weight: 600;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--ruby);
}

.num-huge {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 18, 22, 0.25);
}

.sec-dark .num-huge,
.bg-ph .num-huge {
  -webkit-text-stroke-color: rgba(245, 243, 239, 0.3);
}

.sec-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.sec-head-center {
  text-align: center;
}

.sec-head-center .lead {
  margin-inline: auto;
}

.sec-head-center .kicker {
  justify-content: center;
}

.sec-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-top {
  align-items: start;
}

.flow > * + * {
  margin-top: 18px;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cluster-center {
  justify-content: center;
}

.mw-40 {
  max-width: 40ch;
}

.mw-56 {
  max-width: 56ch;
}

.tc {
  text-align: center;
}

.mt-1 {
  margin-top: 14px;
}
.mt-2 {
  margin-top: 26px;
}
.mt-3 {
  margin-top: 40px;
}
.mt-4 {
  margin-top: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-ruby {
  background: var(--ruby);
  color: #fff;
  box-shadow: 0 14px 30px rgba(127, 29, 45, 0.28);
}

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

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--graphite);
}

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

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

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

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

.btn-line-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn-line-light:hover {
  background: #fff;
  color: var(--ink);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.76rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ruby);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.link-arrow i {
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover i {
  transform: translateX(6px);
}

.sec-dark .link-arrow,
.bg-ph .link-arrow {
  color: #e8c4ca;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.bg-ph .badge,
.sec-dark .badge {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ruby);
  animation: pulse 2s infinite;
}

.bg-ph .badge-dot,
.sec-dark .badge-dot {
  background: #e8c4ca;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--graphite);
}

.chip i {
  color: var(--ruby);
}

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 34px rgba(15, 18, 22, 0.07);
}

.hdr-top {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hdr-top-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.hdr-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hdr-top-item i {
  color: #d9a3ab;
  font-size: 0.72rem;
}

.hdr-top-group {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hdr-main {
  transition: padding 0.35s var(--ease);
}

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  transition: padding 0.35s var(--ease);
}

.site-header.is-scrolled .hdr-in {
  padding: 12px 0;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.hdr-logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hdr-logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--ruby);
}

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

.nav-main a {
  display: inline-block;
  padding: 10px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  border-radius: 8px;
  position: relative;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 1.5px;
  background: var(--ruby);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-main a:hover::after {
  transform: scaleX(1);
}

.hdr-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--dark);
  color: #f3f1ec;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
}

.mm-nav {
  padding: 24px;
  flex: 1;
}

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

.mm-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--serif);
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mm-nav a i {
  font-size: 0.85rem;
  color: #d9a3ab;
}

.mm-contacts {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.mm-contacts div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mm-contacts i {
  color: #d9a3ab;
  margin-top: 3px;
}

.site-footer {
  background: var(--dark);
  color: rgba(243, 241, 236, 0.72);
  position: relative;
  overflow: hidden;
}

.f-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: clamp(56px, 7vw, 96px) 0;
}

.f-cta .h-sec {
  color: #fff;
}

.f-cta .kicker {
  color: #d9a3ab;
}

.f-cta .kicker::before {
  background: #d9a3ab;
}

.f-cta-in {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.f-news {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.f-news input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 16px 24px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.f-news input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.f-news button {
  border: 0;
  background: var(--ruby);
  color: #fff;
  padding: 0 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.f-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(48px, 6vw, 80px) 0;
}

.f-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}

.f-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 34ch;
}

.f-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.f-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

.f-social a:hover {
  background: var(--ruby);
  border-color: var(--ruby);
}

.f-title {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}

.f-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.f-list a {
  font-size: 0.88rem;
  color: rgba(243, 241, 236, 0.66);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.f-list a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #d9a3ab;
  transition: width 0.3s var(--ease);
}

.f-list a:hover {
  color: #fff;
}

.f-list a:hover::before {
  width: 14px;
}

.f-contact {
  display: grid;
  gap: 16px;
  font-size: 0.88rem;
}

.f-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.f-contact-item i {
  color: #d9a3ab;
  margin-top: 4px;
  width: 16px;
}

.f-contact-item span,
.f-contact-item a {
  line-height: 1.55;
}

.f-contact-item a:hover {
  color: #fff;
}

.f-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 26px 0;
  font-size: 0.78rem;
  color: rgba(243, 241, 236, 0.45);
}

.f-legal-in {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
}

.f-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.f-legal-nav a:hover {
  color: #fff;
}

.f-reg {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(243, 241, 236, 0.38);
  line-height: 1.7;
  padding: 0 0 26px;
}

.f-giant {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.4rem, 12.5vw, 12rem);
  line-height: 0.85;
  text-align: center;
  color: rgba(255, 255, 255, 0.045);
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.f-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(243, 241, 236, 0.5);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.2s var(--ease),
    transform 6s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-in {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 0 190px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.9rem, 8vw, 6.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 22px 0 0;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin: 22px auto 0;
  line-height: 1.6;
}

.hero-geo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero-geo i {
  color: #d9a3ab;
}

.bookbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 86px;
  z-index: 5;
  width: min(1160px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-l);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.bb-field {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: #fff;
  min-width: 0;
}

.bb-field label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.bb-field label i {
  color: var(--ruby);
}

.bb-field input,
.bb-field select {
  border: 0;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  font-family: inherit;
  width: 100%;
}

.bb-btn {
  border-radius: var(--r-m);
  padding: 0 34px;
}

.statusbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(10px);
}

.statusbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.statusbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.statusbar-item i {
  color: #d9a3ab;
}

.scroll-cue {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: cue 2.4s infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

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

.s-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.s-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.sec-dark .s-arrow,
.bg-ph .s-arrow {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.sec-dark .s-arrow:hover,
.bg-ph .s-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.s-dots {
  display: inline-flex;
  gap: 8px;
}

.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(15, 18, 22, 0.2);
  transition: all 0.3s var(--ease);
}

.s-dot.is-on {
  background: var(--ruby);
  transform: scale(1.35);
}

.sec-dark .s-dot,
.bg-ph .s-dot {
  background: rgba(255, 255, 255, 0.3);
}

.sec-dark .s-dot.is-on,
.bg-ph .s-dot.is-on {
  background: #fff;
}

.hero-dots {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-dots .s-dot {
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots .s-dot.is-on {
  background: #fff;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd8d0;
}

.card-img.tall {
  aspect-ratio: 3 / 4;
}

.card-img.wide {
  aspect-ratio: 21 / 9;
}

.card-img img,
.card-img .img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-img .img-fill {
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
}

.card-body {
  padding: clamp(20px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-body p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 8px;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.card-meta i {
  color: var(--ruby);
}

.img-frame {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd8d0;
}

.img-frame img,
.img-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame iframe {
  border: 0;
  min-height: 380px;
  display: block;
  filter: grayscale(0.35) contrast(1.02);
}

.img-mat {
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-s);
}

.img-mat .img-frame,
.img-mat > img {
  border-radius: calc(var(--r-l) - 8px);
}

.float-card {
  position: relative;
  z-index: 3;
  background: var(--muted);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-m);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line-soft);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mx-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 40px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  background: var(--paper);
  transition: background 0.35s var(--ease);
}

.mx-cell:hover {
  background: var(--pearl);
}

.mx-cell i {
  font-size: 1.7rem;
  color: var(--ruby);
}

.mx-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.mx-cell h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0;
  font-weight: 600;
}

.mx-cell p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

.mx-cell.mx-promo {
  color: #f5f3ef;
  background-size: cover;
  background-position: center;
}

.mx-cell.mx-promo h3,
.mx-cell.mx-promo p {
  color: #fff;
}

.mx-cell.mx-promo p {
  color: rgba(255, 255, 255, 0.75);
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-radius: var(--r-l);
  overflow: hidden;
  position: relative;
}

.duo-panel {
  position: relative;
  padding: clamp(30px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  background-size: cover;
  background-position: center;
  color: #f5f3ef;
  min-height: 380px;
}

.duo-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: var(--paper);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-l);
  padding: 26px 34px;
  text-align: center;
  color: var(--ink);
  max-width: 260px;
}

.spec-list {
  display: grid;
  gap: 0;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.spec-row .spec-k {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
  font-weight: 500;
}

.spec-row .spec-k i {
  color: var(--ruby);
  width: 18px;
  text-align: center;
}

.spec-row .spec-v {
  font-weight: 600;
  text-align: right;
}

.sec-dark .spec-row,
.bg-ph .spec-row {
  border-color: rgba(255, 255, 255, 0.14);
}

.sec-dark .spec-row .spec-k,
.bg-ph .spec-row .spec-k {
  color: rgba(243, 241, 236, 0.8);
}

.price-table {
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--paper);
}

.pt-row {
  display: grid;
  grid-template-columns: 2.2fr 3fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px clamp(18px, 3vw, 34px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease);
}

.pt-row:last-child {
  border-bottom: 0;
}

.pt-row:hover {
  background: var(--pearl);
}

.pt-row.pt-head {
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pt-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
}

.pt-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.pt-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  color: var(--ruby);
}

.pt-price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.pkg {
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--paper);
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.pkg:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
}

.pkg-feat {
  border-color: var(--ruby);
  box-shadow: 0 20px 50px rgba(127, 29, 45, 0.14);
}

.pkg-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.pkg-price small {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.pkg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
}

.pkg-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-list i {
  color: var(--ruby);
  margin-top: 4px;
  font-size: 0.8rem;
}

.carousel {
  position: relative;
}

.c-viewport {
  overflow: hidden;
  border-radius: var(--r-l);
}

.c-track {
  display: flex;
  transition: transform 0.65s var(--ease);
}

.c-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.c-slide.slide-60 {
  flex-basis: 60%;
}

.c-slide.slide-33 {
  flex-basis: 33.333%;
}

.c-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.c-count {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

.c-count b {
  font-size: 1.6rem;
}

.c-prog {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  min-width: 120px;
}

.c-prog i {
  display: block;
  height: 100%;
  background: var(--ruby);
  width: 0;
  transition: width 0.5s var(--ease);
}

.pano-slide {
  min-height: 460px;
  border-radius: var(--r-l);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pano-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.55));
}

.pano-slide > * {
  position: relative;
  z-index: 2;
}

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

.acc-i,
.faq-item {
  border-bottom: 1px solid var(--line);
}

.acc-h,
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}

.acc-h:hover,
.faq-question:hover {
  color: var(--ruby);
}

.acc-h .acc-ico,
.faq-question .acc-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.35s var(--ease);
}

.acc-i.open .acc-h .acc-ico,
.faq-item.open .faq-question .acc-ico {
  background: var(--ruby);
  border-color: var(--ruby);
  color: #fff;
  transform: rotate(180deg);
}

.acc-b,
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.acc-b-in,
.faq-answer-in {
  padding: 0 4px 26px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 75ch;
}

.sec-dark .acc-i,
.sec-dark .faq-item,
.bg-ph .acc-i,
.bg-ph .faq-item {
  border-color: rgba(255, 255, 255, 0.14);
}

.sec-dark .acc-h,
.sec-dark .faq-question,
.bg-ph .acc-h,
.bg-ph .faq-question {
  color: #f3f1ec;
}

.sec-dark .acc-h .acc-ico,
.sec-dark .faq-question .acc-ico,
.bg-ph .acc-h .acc-ico,
.bg-ph .faq-question .acc-ico {
  border-color: rgba(255, 255, 255, 0.3);
}

.sec-dark .acc-b-in,
.sec-dark .faq-answer-in,
.bg-ph .acc-b-in,
.bg-ph .faq-answer-in {
  color: rgba(243, 241, 236, 0.7);
}

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

.tab-b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.tab-b.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.tab-b i {
  color: var(--ruby);
}

.tab-b.is-on i {
  color: #e8c4ca;
}

.tab-p {
  display: none;
}

.tab-p.is-on {
  display: block;
  animation: fadeUp 0.6s var(--ease);
}

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

.timeline {
  position: relative;
  padding-left: 0;
}

.tl-axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--line) 0 6px,
    transparent 6px 12px
  );
}

.tl-i {
  position: relative;
  width: 50%;
  padding: 0 56px 64px 0;
}

.tl-i:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 64px 56px;
}

.tl-dot {
  position: absolute;
  top: 8px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid var(--pearl);
  background: var(--ruby);
  box-shadow: 0 0 0 1px var(--line);
}

.tl-i:nth-child(even) .tl-dot {
  right: auto;
  left: -9px;
}

.tl-date {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ruby);
  line-height: 1;
}

.tl-card {
  margin-top: 14px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}

.tl-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: sepia(0.35) contrast(0.95);
}

.tl-card .tl-body {
  padding: 20px 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.stat {
  text-align: center;
  padding: 10px;
}

.stat-v {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.stat-v sup {
  font-size: 0.45em;
  color: var(--ruby);
}

.sec-dark .stat-v,
.bg-ph .stat-v {
  color: #fff;
}

.stat-l {
  margin-top: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.sec-dark .stat-l,
.bg-ph .stat-l {
  color: rgba(243, 241, 236, 0.6);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: var(--paper);
}

.mq-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: mq 32s linear infinite;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--graphite);
  white-space: nowrap;
}

.mq-item i {
  color: var(--ruby);
  font-size: 0.9rem;
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.mosaic .ms-i {
  border-radius: var(--r-m);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.mosaic .ms-i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic .ms-a {
  grid-column: span 2;
  grid-row: span 2;
}
.mosaic .ms-b {
  grid-column: span 2;
}
.mosaic .ms-c {
  grid-row: span 2;
}

.ms-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(12, 14, 17, 0.72);
  color: #fff;
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.club-card {
  position: relative;
  border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 48px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f0ede8;
  background: linear-gradient(135deg, #1a1d22 0%, #0b0d10 55%, #23262c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.club-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: sheen 5s var(--ease) infinite;
}

@keyframes sheen {
  0%,
  60% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.club-card .cc-chip {
  width: 46px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, #c9c2b6, #8f887c);
  opacity: 0.9;
}

.club-card .cc-num {
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.3em;
  font-weight: 500;
}

.club-card .cc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.65);
}

.phone-mock {
  width: min(300px, 80%);
  margin-inline: auto;
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  border: 10px solid #14161a;
  background: var(--paper);
  box-shadow: var(--shadow-l);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #14161a;
  border-radius: 12px;
  z-index: 3;
}

.pm-screen {
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  gap: 10px;
}

.pm-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 16px;
  font-size: 0.8rem;
  color: var(--ink);
}

.cal-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.cal-day {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 16px 14px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.cal-day:hover {
  border-color: var(--ruby);
}

.cal-day.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.cal-day .cd-d {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cal-day.is-on .cd-d {
  color: rgba(255, 255, 255, 0.6);
}

.cal-day .cd-n {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 4px 0;
}

.cal-day .cd-p {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ruby);
}

.cal-day.is-on .cd-p {
  color: #e8c4ca;
}

.quote-big {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.quote-big i {
  color: var(--ruby);
  font-size: 0.6em;
  vertical-align: super;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 26px;
  background: var(--paper);
  position: relative;
}

.step .st-n {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ruby);
  line-height: 1;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 14px 0 8px;
}

.step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.step .st-ico {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--ruby);
  font-size: 1.1rem;
  opacity: 0.6;
}

.vsteps {
  position: relative;
  padding-left: 34px;
  display: grid;
  gap: 26px;
}

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

.vstep {
  position: relative;
}

.vstep::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ruby);
  box-shadow: 0 0 0 4px var(--pearl);
}

.vstep h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.vstep p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--paper);
  padding: 15px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ruby);
  box-shadow: 0 0 0 3px rgba(127, 29, 45, 0.12);
}

.field.err input,
.field.err select,
.field.err textarea {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.1);
}

.field .f-err {
  display: none;
  font-size: 0.78rem;
  color: #b3261e;
}

.field.err .f-err {
  display: block;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ruby);
  flex-shrink: 0;
}

.check-field a {
  color: var(--ruby);
  text-decoration: underline;
}

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

.spin {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn.loading .spin {
  display: inline-block;
}

.btn.loading .btn-label {
  opacity: 0.6;
}

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

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-m);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-l);
  max-width: min(420px, calc(100vw - 48px));
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.45s var(--ease);
  font-size: 0.92rem;
  line-height: 1.5;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  font-size: 1.3rem;
  color: #8fd0a5;
}

.toast.toast-err i {
  color: #e8a19b;
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1900;
  width: min(460px, calc(100vw - 40px));
  background: var(--dark);
  color: #f3f1ec;
  border-radius: var(--r-l);
  padding: 26px;
  box-shadow: var(--shadow-l);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

#cookie-banner.show {
  display: block;
  animation: cookieIn 0.6s var(--ease);
}

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

#cookie-banner .cb-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

#cookie-banner .cb-title i {
  color: #d9a3ab;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.68);
}

#cookie-banner .cb-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

#cookie-banner .cb-actions a {
  font-size: 0.74rem;
  color: rgba(243, 241, 236, 0.55);
  text-decoration: underline;
  align-self: center;
}

#cookie-banner .btn {
  padding: 11px 20px;
  font-size: 0.72rem;
}

.map-frame {
  border-radius: var(--r-l);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-s);
  min-height: 420px;
  height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.02);
}

.svc-list {
  display: grid;
}

.svc-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3.4vw, 38px) 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.35s var(--ease);
  cursor: pointer;
}

.svc-line:hover {
  padding-left: 18px;
}

.svc-line .svc-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

.svc-line:hover .svc-name {
  color: var(--ruby);
}

.svc-line .svc-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-line .svc-arrow {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}

.svc-line:hover .svc-arrow {
  background: var(--ruby);
  border-color: var(--ruby);
  color: #fff;
  transform: rotate(-45deg);
}

.svc-detail {
  display: none;
  padding: 0 4px 26px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.svc-line-wrap.open .svc-detail {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

.ribbon-dark {
  background: var(--ink);
  color: #f3f1ec;
  border-radius: var(--r-l);
  padding: clamp(26px, 4vw, 44px);
}

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

.eq i {
  width: 3px;
  background: var(--ruby);
  border-radius: 2px;
  animation: eq 1s ease-in-out infinite;
}

.eq i:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.eq i:nth-child(2) {
  height: 90%;
  animation-delay: 0.15s;
}
.eq i:nth-child(3) {
  height: 60%;
  animation-delay: 0.3s;
}
.eq i:nth-child(4) {
  height: 100%;
  animation-delay: 0.45s;
}
.eq i:nth-child(5) {
  height: 50%;
  animation-delay: 0.6s;
}

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

.player {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-m);
  padding: 18px 22px;
  backdrop-filter: blur(10px);
}

.player .pl-btn {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0;
  background: var(--ruby);
  color: #fff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.player .pl-btn:hover {
  transform: scale(1.08);
}

.player .pl-info {
  flex: 1;
  min-width: 0;
}

.player .pl-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.player .pl-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

.player .pl-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 10px;
  overflow: hidden;
}

.player .pl-bar i {
  display: block;
  height: 100%;
  width: 32%;
  background: #d9a3ab;
  border-radius: 4px;
}

.hotspot {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ruby);
  border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(127, 29, 45, 0.25);
  cursor: pointer;
  animation: hs 2.2s infinite;
}

@keyframes hs {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(127, 29, 45, 0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(127, 29, 45, 0.08);
  }
}

.blueprint {
  position: relative;
  border-radius: var(--r-l);
  background:
    linear-gradient(rgba(15, 18, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 18, 22, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  border: 1px solid var(--line);
  min-height: 420px;
  overflow: hidden;
}

.hotspot::after {
  content: attr(title);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--pearl);
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.blueprint:hover .hotspot::after {
  opacity: 1;
}

.hs-1 {
  top: 22%;
  left: 30%;
}
.hs-2 {
  top: 55%;
  left: 60%;
}
.hs-3 {
  top: 75%;
  left: 25%;
}
.hs-4 {
  top: 40%;
  left: 75%;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 6px 8px 6px 22px;
}

.search-bar i {
  color: var(--muted);
}

.search-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  color: var(--ink);
}

.card-horz {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}

.card-horz .card-img {
  min-height: 320px;
  height: 100%;
}

.mb-4 {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.wine-list {
  display: grid;
  gap: 0;
}

.wine-i {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wine-i .w-year {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #d9a3ab;
  min-width: 74px;
}

.wine-i .w-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
}

.wine-i .w-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.wine-i .w-rate {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.wine-i .w-rate b {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
}

.post-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  height: 100%;
}

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

.post-card .pc-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.post-card .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .pc-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.post-card .pc-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ruby);
}

.post-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.post-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.post-card .pc-meta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 0.74rem;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.post-card .pc-meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.author-box {
  display: flex;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 26px;
  background: var(--paper);
}

.author-box img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.toc {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 26px 30px;
  background: var(--paper);
}

.toc ol {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 9px;
  font-size: 0.92rem;
}

.toc a {
  color: var(--graphite);
}

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

.toc .f-list a {
  color: var(--graphite);
  font-size: 0.9rem;
}

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

.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 44px 0 14px;
}

.legal-body p,
.legal-body li {
  color: var(--graphite);
  line-height: 1.75;
  font-size: 0.95rem;
}

.legal-body ul {
  padding-left: 22px;
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.legal-body a {
  color: var(--ruby);
  text-decoration: underline;
}

.note-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--paper);
  padding: 20px 26px;
}

.icon-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ic-chip {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 20px 16px;
  text-align: center;
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 500;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.ic-chip i {
  font-size: 1.4rem;
  color: var(--ruby);
}

.page-hero {
  position: relative;
  padding: clamp(180px, 22vw, 260px) 0 clamp(70px, 9vw, 110px);
  color: #f5f3ef;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero-flat {
  padding: clamp(150px, 18vw, 210px) 0 clamp(50px, 6vw, 80px);
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.crumbs a:hover {
  color: #fff;
}

.page-hero-flat .crumbs {
  color: var(--muted);
}

.page-hero-flat .crumbs a:hover {
  color: var(--ruby);
}

.avail-widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-s);
}

.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(127, 29, 45, 0.08);
  color: var(--ruby);
  font-weight: 600;
  font-size: 0.85rem;
}

.article-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--graphite);
}

.article-body > p {
  margin: 0 0 22px;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 48px 0 18px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 36px 0 14px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.article-body blockquote {
  margin: 40px 0;
  padding: 30px 36px;
  border-left: 3px solid var(--ruby);
  background: var(--paper);
  border-radius: 0 var(--r-m) var(--r-m) 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
}

.article-narrow {
  max-width: 780px;
  margin-inline: auto;
}

.article-quote {
  max-width: 820px;
  margin-inline: auto;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.article-quote i {
  color: var(--ruby);
  margin-right: 8px;
}

.article-quote small {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body a {
  color: var(--ruby);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-fig {
  margin: 36px 0;
  border-radius: var(--r-l);
  overflow: hidden;
}

.article-fig img {
  width: 100%;
}

.article-fig figcaption {
  padding: 14px 4px 0;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.article-fig figcaption i {
  color: var(--ruby);
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rel-card {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 22px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s var(--ease);
}

.rel-card:hover {
  border-color: var(--ruby);
  transform: translateY(-3px);
}

.rel-card .rc-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ruby);
  font-weight: 700;
}

.rel-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0;
}

.cta-panel {
  border-radius: var(--r-l);
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-panel .lead {
  margin-inline: auto;
}

.tier-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tier-i {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tier-i .t-medal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: #e8c4ca;
}

.tier-i h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
}

.tier-i p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(243, 241, 236, 0.6);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.check-i {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
}

.check-i i {
  color: var(--ruby);
  margin-top: 4px;
  flex-shrink: 0;
}

.sec-dark .check-i,
.bg-ph .check-i {
  color: rgba(243, 241, 236, 0.85);
}

.slot-hero {
  border-radius: var(--r-l);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(26px, 4vw, 48px);
  color: #fff;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .nav-main {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .hdr-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .matrix {
    grid-template-columns: repeat(2, 1fr);
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
  .f-brand {
    grid-column: 1 / -1;
  }
  .f-cta-in {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .bookbar {
    grid-template-columns: repeat(2, 1fr);
    bottom: 74px;
  }
  .bb-btn {
    grid-column: 1 / -1;
    padding: 16px;
  }
  .c-slide.slide-60,
  .c-slide.slide-33 {
    flex-basis: 70%;
  }
  .icon-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }
  .duo {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .duo-badge {
    position: static;
    transform: none;
    margin: -30px 20px 20px;
    max-width: none;
  }
  .tl-axis {
    left: 9px;
  }
  .tl-i,
  .tl-i:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 44px 44px;
  }
  .tl-dot,
  .tl-i:nth-child(even) .tl-dot {
    left: 0;
    right: auto;
  }
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .mosaic .ms-a {
    grid-column: span 2;
  }
  .hero-in {
    padding: 120px 0 230px;
  }
  .hero-dots {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .pt-row {
    grid-template-columns: 1fr auto;
  }
  .pt-desc {
    grid-column: 1 / -1;
    order: 3;
  }
  .hdr-top .hdr-top-group:first-child {
    display: none;
  }
  .hdr-top-in {
    justify-content: center;
  }
  .rel-grid {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .c-slide.slide-60,
  .c-slide.slide-33 {
    flex-basis: 88%;
  }
  .pano-slide {
    min-height: 340px;
  }
  .sec-head-split {
    flex-direction: column;
    align-items: flex-start;
  }
  .bookbar {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    gap: 8px;
    bottom: 66px;
  }
  .statusbar-in {
    font-size: 0.7rem;
    gap: 14px;
  }
  .statusbar .hide-m {
    display: none;
  }
  .hero-slide {
    background-position: center;
  }
  .club-card {
    min-height: 240px;
  }
  .wine-i {
    grid-template-columns: 1fr auto;
  }
  .wine-i .w-year {
    grid-column: 1 / -1;
  }
  .f-giant {
    white-space: normal;
    font-size: clamp(3rem, 14vw, 6rem);
  }
}

@media (max-width: 480px) {
  .matrix {
    grid-template-columns: 1fr;
  }
  .mx-cell {
    min-height: 0;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stepper {
    grid-template-columns: 1fr;
  }
  .bookbar {
    grid-template-columns: 1fr;
    position: relative;
    bottom: auto;
    transform: none;
    left: auto;
    width: calc(100% - 32px);
    margin: -120px auto 0;
  }
  .hero {
    min-height: 0;
    padding-bottom: 60px;
  }
  .hero-in {
    padding: 130px 0 160px;
  }
  .statusbar {
    position: static;
    background: var(--dark);
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  .mosaic {
    grid-auto-rows: 130px;
  }
  .icon-chip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .card-horz {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .card-horz {
    grid-template-columns: 1fr;
  }
  .card-horz .card-img {
    min-height: 240px;
  }html,body{overflow-x: hidden;}
}
