:root {
  --porcelain: #f7f7f9;
  --paper: #fdfdfc;
  --mist: #eef0f4;
  --ink: #15151b;
  --ink-soft: #41414d;
  --ink-faint: #6d6d7a;
  --wine: #7c2134;
  --wine-deep: #341120;
  --wine-ink: #4a1626;
  --steel: #7d8aa0;
  --silver: #c9cedb;
  --night: #0e1118;
  --night-soft: #171b26;
  --line: rgba(21, 21, 27, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 24px 60px -24px rgba(21, 21, 27, 0.22);
  --shadow-card: 0 18px 44px -18px rgba(21, 21, 27, 0.18);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

main.page-content {
  display: block;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.container-wide {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.section {
  padding: clamp(10px, 4vw, 60px) 0;
  position: relative;
}

.section-tight {
  padding: clamp(44px, 6vw, 84px) 0;
  position: relative;
}

.bg-paper {
  background: var(--paper);
}
.bg-porcelain {
  background: var(--porcelain);
}
.bg-mist {
  background: var(--mist);
}
.bg-night {
  background: var(--night);
  color: #f2f3f7;
}
.bg-night-soft {
  background: var(--night-soft);
  color: #f2f3f7;
}
.bg-wine {
  background: var(--wine-deep);
  color: #f6eef1;
}

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

.has-bg .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.has-bg .section-title,
.has-bg h1,
.has-bg h2,
.has-bg h3 {
  color: #ffffff;
}
.has-bg .lead,
.has-bg p {
  color: rgba(244, 245, 249, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-dash::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--wine);
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 62ch;
}

.text-link {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid rgba(124, 33, 52, 0.35);
  padding-bottom: 1px;
}
.text-link:hover {
  color: var(--wine-ink);
  border-color: var(--wine-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn i {
  font-size: 13px;
}

.btn-primary {
  background: var(--wine);
  color: #fff;
}
.btn-primary:hover {
  background: var(--wine-ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(124, 33, 52, 0.55);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

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

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.4);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 64px);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  position: relative;
}

.card-flat {
  box-shadow: none;
}
.card-dark {
  background: var(--night-soft);
  border-color: rgba(255, 255, 255, 0.09);
  color: #eef0f6;
}
.card-dark p {
  color: rgba(238, 240, 246, 0.75);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}

.tag-dark {
  border-color: var(--line-light);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--wine);
  margin: 26px 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 33, 52, 0.4),
    transparent
  );
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(140deg, var(--wine) 0%, var(--wine-ink) 100%);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(124, 33, 52, 0.55);
}

.icon-badge.soft {
  background: var(--mist);
  color: var(--wine);
  box-shadow: none;
}
.icon-badge.line {
  background: transparent;
  border: 1px solid var(--line-light);
  color: #fff;
  box-shadow: none;
}

.stat {
  text-align: center;
  padding: 18px;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}
.stat .stat-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 10px;
}
.bg-night .stat .stat-num,
.has-bg .stat .stat-num {
  color: #fff;
}
.bg-night .stat .stat-label,
.has-bg .stat .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.mf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mf-topbar {
  background: var(--night);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

.mf-topbar-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.mf-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.mf-topbar-item i {
  color: #b8c1d4;
  font-size: 11px;
}
.mf-topbar .mf-topbar-hide-md {
  display: inline-flex;
}

.mf-mainbar {
  background: rgba(253, 253, 252, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.mf-header.scrolled .mf-mainbar {
  box-shadow: 0 14px 34px -18px rgba(21, 21, 27, 0.28);
  background: rgba(253, 253, 252, 0.97);
}

.mf-mainbar-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.mf-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mf-logo img {
  width: 118px;
  height: auto;
}

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

.mf-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}

.mf-nav a:hover {
  color: var(--wine);
  background: rgba(124, 33, 52, 0.07);
}

.mf-nav a.nav-cta {
  background: var(--wine);
  color: #fff;
  padding: 11px 20px;
}
.mf-nav a.nav-cta:hover {
  background: var(--wine-ink);
}

.mf-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  align-items: center;
  justify-content: center;
}

.mf-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--night);
  color: #f4f5f9;
  padding: 30px 26px 46px;
  transform: translateY(-102%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mf-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mf-mobile-head img {
  width: 110px;
}

.mf-mobile-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.mf-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mf-mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.mf-mobile-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  font-family: var(--font-display);
  font-size: 24px;
  color: #f4f5f9;
}
.mf-mobile-menu li a i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.mf-mobile-contacts {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.mf-mobile-contacts div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mf-mobile-contacts i {
  color: #b8c1d4;
  margin-top: 3px;
}

.mf-footer {
  background: var(--night);
  color: rgba(244, 245, 249, 0.78);
  position: relative;
  overflow: hidden;
}

.mf-footer-cta {
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line-light);
  padding: clamp(56px, 7vw, 96px) 0;
}

.mf-footer-cta .grid-2 {
  align-items: center;
}
.mf-footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin: 0 0 14px;
  font-weight: 500;
}
.mf-footer-cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

.concierge-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.concierge-form input {
  flex: 1 1 240px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 15px;
}
.concierge-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.concierge-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}
.concierge-form-light input {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.concierge-form-light input::placeholder {
  color: var(--faint);
}
.concierge-form .consent {
  flex-basis: 100%;
}

.mf-footer-main {
  padding: clamp(48px, 6vw, 80px) 0 30px;
}

.mf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}

.mf-footer-brand img {
  width: 130px;
  margin-bottom: 20px;
}
.mf-footer-brand p {
  font-size: 14.5px;
  color: rgba(244, 245, 249, 0.66);
  max-width: 40ch;
}

.mf-footer h4 {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}

.mf-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.mf-footer ul a {
  font-size: 14px;
  color: rgba(244, 245, 249, 0.7);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.mf-footer ul a:hover {
  color: #fff;
}
.mf-footer ul a i {
  font-size: 9px;
  color: var(--steel);
}

.mf-footer-contact div {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 13px;
  align-items: flex-start;
}
.mf-footer-contact i {
  color: var(--steel);
  margin-top: 4px;
  font-size: 13px;
}
.mf-footer-contact a {
  color: rgba(244, 245, 249, 0.85);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
.mf-footer-contact a:hover {
  color: #fff;
}

.mf-footer-legal {
  border-top: 1px solid var(--line-light);
  padding: 26px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(244, 245, 249, 0.55);
}

.mf-footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
}
.mf-footer-legal .reg {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.mf-footer-legal a {
  color: rgba(244, 245, 249, 0.75);
}
.mf-footer-legal a:hover {
  color: #fff;
}

.mf-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.mf-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.mf-socials a:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-3px);
  color: #fff;
}

.hero-split {
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: 100%;
  min-height: 92vh;
}

.hero-copy {
  padding: clamp(52px, 7vw, 96px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(124, 33, 52, 0.14);
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(124, 33, 52, 0.2);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  color: var(--ink);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--wine);
}

.hero-copy > p {
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 0 34px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-media {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 56px);
  min-height: 420px;
}

.hero-media .media-caption {
  background: rgba(14, 17, 24, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #fff;
  max-width: 380px;
}

.media-caption .cap-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
}
.media-caption .cap-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--night);
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
}
.marquee-item i {
  color: #9aa7c0;
  font-size: 13px;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
}

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

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

.slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.25, 1);
}
.slide {
  min-width: 100%;
  position: relative;
}

.slide-bg {
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.slide-inner {
  padding: clamp(48px, 6vw, 84px) 0;
  width: 100%;
}
.slide h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 60px);
  color: #fff;
  margin: 0 0 14px;
  max-width: 16ch;
  font-weight: 500;
}
.slide p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin-bottom: 26px;
}

.slider-nav {
  position: absolute;
  bottom: 28px;
  right: clamp(20px, 4vw, 60px);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(14, 17, 24, 0.45);
  color: #fff;
  font-size: 15px;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.slider-btn:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: scale(1.06);
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 4vw, 60px);
  display: flex;
  gap: 9px;
  z-index: 5;
}
.slider-dot {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  transition: background 0.3s ease;
}
.slider-dot.active {
  background: #fff;
}

.diag-banner {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  position: relative;
}

.diag-half {
  min-height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(30px, 4vw, 56px);
  position: relative;
}

.diag-half.left {
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.diag-half.right {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -8%;
}

.diag-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
}
.diag-content h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  color: #fff;
  margin: 14px 0 12px;
  font-weight: 500;
}
.diag-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}
.diag-content .sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 18px;
}

.diag-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.diag-divider .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}
.diag-divider .lbl {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

.roulette-wrap {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.roulette-wheel {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto;
  background: conic-gradient(
    from 0deg,
    #1a1f2c 0deg 20deg,
    #f4f4f7 20deg 40deg,
    #1a1f2c 40deg 60deg,
    #f4f4f7 60deg 80deg,
    #1a1f2c 80deg 100deg,
    #f4f4f7 100deg 120deg,
    #1a1f2c 120deg 140deg,
    #f4f4f7 140deg 160deg,
    #1a1f2c 160deg 180deg,
    #f4f4f7 180deg 200deg,
    #1a1f2c 200deg 220deg,
    #f4f4f7 220deg 240deg,
    #1a1f2c 240deg 260deg,
    #f4f4f7 260deg 280deg,
    #1a1f2c 280deg 300deg,
    #f4f4f7 300deg 320deg,
    #1a1f2c 320deg 340deg,
    #f4f4f7 340deg 360deg
  );
  border: 10px solid var(--night);
  box-shadow:
    var(--shadow-soft),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 1.1s cubic-bezier(0.3, 0.9, 0.3, 1);
}

.roulette-wheel .wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 3;
}

.wheel-center .num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--wine);
  font-weight: 600;
  line-height: 1;
}
.wheel-center .lbl {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

.roulette-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  z-index: 2;
}

.roulette-item button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: inherit;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.roulette-item:nth-child(odd) button {
  color: #fff;
}
.roulette-item:nth-child(even) button {
  color: var(--ink);
}
.roulette-item button:hover {
  transform: scale(1.25);
}
.roulette-item button.active {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.roulette-detail {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 48px);
  box-shadow: var(--shadow-card);
}
.roulette-detail h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  margin: 10px 0 12px;
  font-weight: 500;
}
.roulette-detail .pairings {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}
.roulette-detail img {
  border-radius: var(--radius-md);
  margin-top: 22px;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  background: var(--mist);
}

.plan-explorer {
  display: grid;
  grid-template-columns: 380px 1fr 320px;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.plan-list {
  display: grid;
  gap: 12px;
  align-content: start;
}
.plan-item {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.plan-item:hover {
  transform: translateX(6px);
  border-color: rgba(124, 33, 52, 0.4);
}
.plan-item.active {
  border-color: var(--wine);
  box-shadow: 0 14px 34px -16px rgba(124, 33, 52, 0.4);
}
.plan-item .pi-name {
  font-weight: 600;
  font-size: 15px;
}
.plan-item .pi-meta {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.plan-item .pi-status {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.pi-status.free {
  background: rgba(47, 93, 125, 0.12);
  color: #2f5d7d;
}
.pi-status.busy {
  background: rgba(124, 33, 52, 0.1);
  color: var(--wine);
}

.plan-preview {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  overflow: hidden;
  position: relative;
}
.plan-preview .pp-card {
  background: rgba(14, 17, 24, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #fff;
  width: 100%;
}
.pp-card .pp-name {
  font-family: var(--font-display);
  font-size: 26px;
}
.pp-card .pp-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}

.perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.perk-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.perk-list i {
  color: var(--wine);
  margin-top: 4px;
}
.bg-night .perk-list li,
.has-bg .perk-list li {
  color: rgba(255, 255, 255, 0.8);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-chip {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}
.filter-chip:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.filter-chip.active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.filter-bar.on-light .filter-chip {
  border-color: var(--line);
  color: var(--ink-soft);
  background: #fff;
}
.filter-bar.on-light .filter-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.glass-frame {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 36px);
}

.bottle-card {
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-light);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.bottle-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
}
.bottle-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.bottle-card .b-name {
  font-family: var(--font-display);
  font-size: 21px;
  color: #fff;
}
.bottle-card .b-meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}
.bottle-card .b-price {
  font-size: 15px;
  color: #d7dce8;
  margin-top: 10px;
  font-weight: 600;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.cal-day {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  background: var(--paper);
  min-height: 96px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.cal-day:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 33, 52, 0.4);
}
.cal-day .dow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cal-day .dnum {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0;
}
.cal-day .devt {
  font-size: 11px;
  color: var(--wine);
  font-weight: 600;
}
.cal-day.today {
  border-color: var(--wine);
  background: rgba(124, 33, 52, 0.05);
}

.event-feature {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  padding: clamp(30px, 4vw, 54px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}

.countdown {
  display: flex;
  gap: 14px;
}
.countdown .cd-box {
  min-width: 84px;
  text-align: center;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(8px);
}
.cd-box .cd-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.cd-box .cd-lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.suite-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: suite;
}
.suite-strip .suite {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  background: var(--paper);
  position: relative;
}
.suite .s-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--wine);
  letter-spacing: 0.1em;
}
.suite h4 {
  font-size: 17px;
  margin: 10px 0 8px;
  font-weight: 600;
}
.suite p {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin: 0;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1200px;
}
.cocktail-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  transform-style: preserve-3d;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}
.cocktail-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: var(--shadow-soft);
}
.cocktail-card .cc-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 500;
}
.cocktail-card .cc-body .formula {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.zone-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.zone {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}
.zone i {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
  color: #b8c1d4;
}
.zone .z-name {
  font-weight: 600;
  font-size: 14px;
}
.zone .z-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.zone.active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}
.zone.active i {
  color: #fff;
}

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--wine), var(--silver));
}
.timeline-item {
  position: relative;
  padding-bottom: 42px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--wine);
}
.timeline-item .tl-year {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--wine);
  font-weight: 600;
}
.timeline-item h4 {
  font-size: 18px;
  margin: 6px 0;
  font-weight: 600;
}
.timeline-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 58ch;
}

.timeline.horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-left: 0;
}
.timeline.horizontal::before {
  display: none;
}
.timeline.horizontal .timeline-item {
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
  position: relative;
}
.timeline.horizontal .timeline-item::before {
  left: 0;
  top: -6px;
}

.card-stack {
  display: grid;
  gap: 0;
}
.degust-card {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: -14px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.degust-card:first-child {
  margin-top: 0;
}
.degust-card:hover {
  transform: translateX(14px);
  background: rgba(255, 255, 255, 0.1);
}
.degust-card .dc-rank {
  font-family: var(--font-display);
  font-size: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  min-width: 56px;
}
.degust-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 500;
}
.degust-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.degust-card .dc-tag {
  margin-left: auto;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 14px 26px 14px 14px;
}
.audio-player .ap-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wine);
  border: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.audio-player .ap-btn:hover {
  transform: scale(1.07);
}
.audio-player .ap-track {
  flex: 1;
  min-width: 0;
}
.ap-track .ap-title {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ap-track .ap-artist {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ap-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 26px;
}
.ap-bars span {
  width: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.ap-bars span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.ap-bars span:nth-child(2) {
  height: 80%;
  animation-delay: 0.15s;
}
.ap-bars span:nth-child(3) {
  height: 55%;
  animation-delay: 0.3s;
}
.ap-bars span:nth-child(4) {
  height: 95%;
  animation-delay: 0.45s;
}
.ap-bars span:nth-child(5) {
  height: 60%;
  animation-delay: 0.6s;
}
.ap-bars span:nth-child(6) {
  height: 75%;
  animation-delay: 0.75s;
}
.audio-player.paused .ap-bars span {
  animation-play-state: paused;
  height: 30%;
}
@keyframes eq {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tier-card {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.tier-card.featured {
  background-size: cover;
  background-position: center;
  color: #fff;
  border-color: transparent;
}
.tier-card .t-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
}
.tier-card .t-price {
  font-size: 15px;
  color: var(--ink-faint);
  margin: 6px 0 20px;
}
.tier-card.featured .t-price {
  color: rgba(255, 255, 255, 0.7);
}
.tier-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
  flex: 1;
}
.tier-card ul li {
  display: flex;
  gap: 11px;
  font-size: 14px;
  color: var(--ink-soft);
  align-items: flex-start;
}
.tier-card.featured ul li {
  color: rgba(255, 255, 255, 0.82);
}
.tier-card ul li i {
  color: var(--wine);
  margin-top: 4px;
  font-size: 12px;
}
.tier-card.featured ul li i {
  color: #fff;
}
.tier-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: rgba(124, 33, 52, 0.45);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q i {
  color: var(--wine);
  transition: transform 0.35s ease;
  font-size: 13px;
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.quote-block {
  border-left: 3px solid var(--wine);
  padding: 8px 0 8px 30px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.quote-block .q-author {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--mist);
  transition: transform 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 48px);
  box-shadow: var(--shadow-soft);
}

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

.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(124, 33, 52, 0.1);
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: var(--wine);
  background: rgba(124, 33, 52, 0.04);
}
.field .err {
  font-size: 12px;
  color: var(--wine);
  margin-top: 6px;
  display: none;
}
.field.show-err .err {
  display: block;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}
.consent a {
  color: var(--wine);
  font-weight: 600;
}
.consent-dark {
  flex-basis: 100%;
  color: rgba(235, 238, 244, 0.7);
}
.consent-dark a {
  color: #cfd8ea;
}

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

.submit-btn {
  position: relative;
  overflow: hidden;
}
.submit-btn .spinner {
  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;
}
.submit-btn.loading .spinner {
  display: inline-block;
}
.submit-btn.loading .btn-label {
  opacity: 0.6;
}
.submit-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2000;
  background: var(--night);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1),
    opacity 0.45s ease;
  max-width: min(420px, calc(100vw - 40px));
  border: 1px solid var(--line-light);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i {
  color: #9fc3dd;
  font-size: 18px;
}
.toast .t-title {
  font-weight: 600;
  font-size: 15px;
}
.toast .t-msg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 3000;
  width: min(760px, calc(100% - 32px));
  background: rgba(253, 253, 252, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1),
    opacity 0.6s ease;
}
.cookie-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookie-banner .cb-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  flex: 1;
  line-height: 1.55;
}
.cookie-banner .cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner .cb-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.cookie-banner .cb-btn.accept {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cookie-banner .cb-btn.accept:hover {
  background: var(--wine);
  border-color: var(--wine);
}
.cookie-banner .cb-btn.decline:hover {
  background: var(--mist);
}

.steps-wizard .step-pane {
  display: none;
}
.steps-wizard .step-pane.active {
  display: block;
  animation: fadeUp 0.5s ease;
}
.step-indicator {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}
.step-indicator .si {
  flex: 1;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-faint);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  transition: all 0.3s ease;
}
.step-indicator .si.active {
  color: var(--wine);
  border-color: var(--wine);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.counter-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.counter-group button {
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--wine);
  transition: background 0.25s ease;
}
.counter-group button:hover {
  background: var(--mist);
}
.counter-group .cg-val {
  min-width: 60px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.price-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.price-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}
.price-table tr:hover td {
  background: rgba(124, 33, 52, 0.03);
}
.price-table .p-name {
  font-weight: 600;
}
.price-table .p-desc {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.price-table .p-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--wine);
  white-space: nowrap;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--paper);
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.package-card.featured {
  border-color: var(--wine);
  box-shadow: 0 22px 50px -20px rgba(124, 33, 52, 0.35);
}
.package-card .pk-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}
.package-card .pk-price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--wine);
  font-weight: 600;
  margin: 10px 0 4px;
}
.package-card .pk-per {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.package-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 11px;
  flex: 1;
}
.package-card ul li {
  display: flex;
  gap: 11px;
  font-size: 14px;
  color: var(--ink-soft);
}
.package-card ul li i {
  color: var(--wine);
  margin-top: 4px;
  font-size: 12px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.blog-card .bc-img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  background: var(--mist);
}
.blog-card .bc-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card .bc-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
}
.blog-card p {
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
  margin: 0 0 20px;
}
.blog-card .bc-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.blog-card .bc-link:hover {
  gap: 16px;
}
.bc-link {
  transition: gap 0.3s ease;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  margin: 46px 0 18px;
  color: var(--ink);
}
.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 34px 0 12px;
}
.article-body p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.article-body ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--ink-soft);
}
.article-body ul li {
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--wine);
  margin: 30px 0;
  padding: 6px 0 6px 26px;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
}
.article-body img {
  border-radius: var(--radius-lg);
  margin: 30px 0;
  background: var(--mist);
}

.tab-bar {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--mist);
  margin-bottom: 30px;
}
.tab-bar button {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.3s ease;
}
.tab-bar button.active {
  background: var(--paper);
  color: var(--wine);
  box-shadow: var(--shadow-card);
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeUp 0.45s ease;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--paper);
}
.accordion-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 19px 24px;
  background: transparent;
  border: none;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}
.accordion-head i {
  transition: transform 0.3s ease;
  color: var(--wine);
  font-size: 13px;
}
.accordion-item.open .accordion-head i {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-in {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.check-card {
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.check-card.allow {
  border-color: rgba(47, 93, 125, 0.3);
}
.check-card.deny {
  border-color: rgba(124, 33, 52, 0.3);
}
.check-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin: 0 0 16px;
}
.check-card.allow h4 i {
  color: #2f5d7d;
}
.check-card.deny h4 i {
  color: var(--wine);
}
.check-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-card ul li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  align-items: flex-start;
}
.check-card.allow ul li i {
  color: #2f5d7d;
}
.check-card.deny ul li i {
  color: var(--wine);
}
.check-card ul li i {
  margin-top: 4px;
  font-size: 11px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.service-card .sc-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.service-card .sc-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  flex: 1;
  margin: 0 0 22px;
}
.service-card .sc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card .sc-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wine);
  font-weight: 600;
}

.viewer-360 {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.viewer-360:active {
  cursor: grabbing;
}
.viewer-360 .v360-hint {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 17, 24, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.viewer-360 .v360-controls {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.v360-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: rgba(14, 17, 24, 0.55);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}
.v360-controls button:hover {
  background: var(--wine);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(14, 17, 24, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.modal-overlay.open .modal-box {
  transform: none;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.modal-box {
  position: relative;
}
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 8px;
  font-weight: 600;
}

.float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  display: none;
}
.float-cta .btn {
  box-shadow: var(--shadow-soft);
}

.lot-card {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  padding: clamp(26px, 3.4vw, 44px);
  color: #fff;
}
.bid-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.bid-list li {
  display: flex;
  justify-content: space-between;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.bid-list li:last-child {
  border-bottom: none;
}
.bid-list .bidder {
  font-weight: 600;
}
.bid-list .amount {
  color: var(--wine);
  font-weight: 700;
}

.scale-track {
  position: relative;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--silver), var(--wine));
  margin: 30px 0 10px;
}
.scale-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--wine);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.oyster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.oyster-card {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 22px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.oyster-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.oyster-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 500;
}
.oyster-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.oyster-card .o-price {
  color: #d7dce8;
  font-weight: 600;
  margin-top: 12px;
  font-size: 14px;
  display: block;
}
.oyster-card.light {
  background: rgba(21, 21, 27, 0.04);
  border-color: var(--line);
}
.oyster-card.light h4 {
  color: var(--ink);
}
.oyster-card.light p {
  color: var(--ink-soft);
}
.oyster-card.light .o-price {
  color: var(--wine);
}

.token-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.token-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
}
.token-chip i {
  font-size: 22px;
  color: #b8c1d4;
}
.token-chip .tk-sub {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.locker-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.locker {
  aspect-ratio: 3/4;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
}
.locker:hover {
  border-color: var(--wine);
  color: #fff;
}
.locker.vip {
  border-color: rgba(124, 33, 52, 0.7);
  background: rgba(124, 33, 52, 0.25);
  color: #fff;
}

.fragrance-pyramid {
  display: grid;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.fragrance-level {
  text-align: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.fragrance-level.l1 {
  width: 62%;
  margin: 0 auto;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: none;
}
.fragrance-level.l2 {
  width: 81%;
  margin: 0 auto;
  border-bottom: none;
}
.fragrance-level.l3 {
  width: 100%;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.fragrance-level .fl-name {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
}
.fragrance-level .fl-notes {
  font-family: var(--font-display);
  font-size: 20px;
  margin-top: 5px;
}

.weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(10px);
  color: #fff;
}
.weather-widget i {
  font-size: 26px;
  color: #b8c1d4;
}
.weather-widget .w-temp {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
}
.weather-widget .w-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--mist);
}
.product-card .pc-body {
  padding: 24px 26px 28px;
}
.product-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 6px;
  font-weight: 600;
}
.product-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.product-card .pc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card .pc-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wine);
  font-weight: 600;
}

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

.contact-tile {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}
.contact-tile .ct-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-tile .ct-val {
  font-size: 16px;
  font-weight: 600;
}
.contact-tile .ct-sub {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 3px;
}

.wheel-spin {
  position: relative;
  width: min(340px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto;
  background: conic-gradient(
    #7c2134 0deg 60deg,
    #f4f4f7 60deg 120deg,
    #1a1f2c 120deg 180deg,
    #f4f4f7 180deg 240deg,
    #7c2134 240deg 300deg,
    #1a1f2c 300deg 360deg
  );
  border: 8px solid var(--night);
  box-shadow: var(--shadow-soft);
  transition: transform 3.2s cubic-bezier(0.15, 0.9, 0.25, 1);
}
.wheel-spin .ws-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.wheel-spin .ws-hub {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wine);
  font-size: 18px;
  box-shadow: var(--shadow-card);
}

.profile-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 33, 52, 0.35);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.9),
    rgba(247, 247, 249, 0.7)
  );
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}
.profile-card .pc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.michelin-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}
.michelin-badge i {
  color: #d7dce8;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  justify-content: center;
}
.press-logos span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}
.press-logos span:hover {
  color: var(--ink);
}
.press-logos.on-dark span {
  color: rgba(255, 255, 255, 0.4);
}
.press-logos.on-dark span:hover {
  color: #fff;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-feature .sf-media {
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.split-feature .sf-body {
  padding: clamp(30px, 4vw, 60px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-feature .sf-body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  margin: 0 0 16px;
}
.split-feature .sf-body p {
  color: var(--ink-soft);
  font-size: 15px;
}

.cta-band {
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 500;
  margin: 0 0 18px;
}
.cta-band p {
  max-width: 56ch;
  margin: 0 auto 32px;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.list-check li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}
.list-check li i {
  color: var(--wine);
  margin-top: 5px;
  font-size: 13px;
}
.bg-night .list-check li,
.has-bg .list-check li {
  color: rgba(255, 255, 255, 0.8);
}
.bg-night .list-check li i,
.has-bg .list-check li i {
  color: #b8c1d4;
}

.leader-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.leader-line .ll-name {
  font-weight: 600;
  font-size: 15.5px;
}
.leader-line .ll-fill {
  flex: 1;
  border-bottom: 1px dashed var(--line);
}
.leader-line .ll-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--wine);
  font-weight: 600;
  white-space: nowrap;
}
.leader-line .ll-desc {
  width: 100%;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.leader-wrap {
  display: flex;
  flex-direction: column;
}
.leader-line {
  flex-wrap: wrap;
}

.fd {
  font-family: var(--font-display);
}
.h-card {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 10px;
  line-height: 1.2;
}
.h-card-lg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.h-panel {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  margin: 16px 0 8px;
  line-height: 1.1;
}
.txt-dim {
  color: var(--ink-soft);
}
.txt-faint {
  color: var(--ink-faint);
}
.txt-sm {
  font-size: 13.5px;
}
.txt-xs {
  font-size: 12px;
}
.card-gold {
  background: linear-gradient(135deg, #15151b, #341120);
  color: #fff;
  border: none;
}
.card-gold p {
  color: rgba(255, 255, 255, 0.7);
}
.video-shell {
  border-radius: var(--radius-lg);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 30px;
}
.form-on-dark {
  background: rgba(253, 253, 252, 0.06);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.18);
}
.field-dark label {
  color: rgba(255, 255, 255, 0.75);
}
.field-dark input,
.field-dark select,
.field-dark textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.field-dark input::placeholder,
.field-dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.field-dark input:focus,
.field-dark select:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.marquee-attached {
  margin-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.check-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 14px;
}
.ico-ghost {
  font-size: 44px;
  color: rgba(255, 255, 255, 0.25);
}
.ico-h-lg {
  font-size: 30px;
  color: #fff;
}
.w-cta-end {
  justify-self: end;
}
.img-framed {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}
.of-cover {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--mist);
}
.eyebrow.on-dark {
  color: rgba(255, 255, 255, 0.7);
}
.txt-on-dark {
  color: rgba(255, 255, 255, 0.75);
}
.txt-on-dark-soft {
  color: rgba(255, 255, 255, 0.65);
}
.qb-light {
  border-color: #b8c1d4;
}
.qb-light .q-author {
  color: rgba(255, 255, 255, 0.6);
}
.hidden-pane {
  display: none;
}
.leader-line.on-dark {
  border-color: rgba(255, 255, 255, 0.16);
}
.leader-line.on-dark .ll-name,
.leader-line.on-dark .ll-price {
  color: #fff;
}
.leader-line.on-dark .ll-fill {
  border-color: rgba(255, 255, 255, 0.2);
}
.txt-on-dark-faint {
  color: rgba(255, 255, 255, 0.6);
}
.d-block {
  display: block;
}
.text-wine {
  color: var(--wine);
}
.ico-steel {
  color: #b8c1d4;
}
.tab-bar-center {
  display: flex;
  justify-content: center;
  width: fit-content;
}
.faq-item.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.faq-item.dark .faq-q {
  color: #fff;
}
.faq-item.dark .faq-q i {
  color: #b8c1d4;
}
.faq-item.dark .faq-a-inner {
  color: rgba(255, 255, 255, 0.75);
}
.card-dark .bid-list li {
  border-color: rgba(255, 255, 255, 0.12);
}
.card-dark .bid-list .bidder,
.card-dark .bid-list .amount {
  color: #fff;
}
.img-thumb-sm {
  width: 86px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}
.ratio-43 {
  aspect-ratio: 4/3;
}
.ratio-169 {
  aspect-ratio: 16/9;
}
.ratio-34 {
  aspect-ratio: 3/4;
}
.ratio-11 {
  aspect-ratio: 1/1;
}

@media (max-width: 920px) {
  .w-cta-end {
    justify-self: stretch;
  }
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .roulette-wrap {
    grid-template-columns: 1fr;
  }
  .plan-explorer {
    grid-template-columns: 1fr 1fr;
  }
  .plan-explorer .plan-preview {
    grid-column: 1 / -1;
    order: -1;
  }
  .mf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .timeline.horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .mf-nav {
    display: none;
  }
  .mf-burger {
    display: inline-flex;
  }
  .mf-topbar-inner {
    font-size: 11px;
    gap: 10px;
  }
  .hero-split-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-media {
    min-height: 380px;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .diag-banner {
    grid-template-columns: 1fr;
  }
  .diag-half.left,
  .diag-half.right {
    clip-path: none;
    margin: 0;
    min-height: 400px;
  }
  .diag-divider {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -65px auto;
  }
  .event-feature {
    grid-template-columns: 1fr;
  }
  .tier-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .split-feature {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .oyster-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plan-explorer {
    grid-template-columns: 1fr;
  }
  .suite-strip {
    grid-template-columns: 1fr;
  }
  .locker-wall {
    grid-template-columns: repeat(4, 1fr);
  }
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .cocktail-grid {
    grid-template-columns: 1fr;
  }
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline.horizontal {
    grid-template-columns: 1fr;
  }
  .zone-map {
    grid-template-columns: 1fr;
  }
  .oyster-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .mf-footer-grid {
    grid-template-columns: 1fr;
  }
  .countdown {
    flex-wrap: wrap;
  }
  .countdown .cd-box {
    min-width: 70px;
    flex: 1;
  }
  .cd-box .cd-num {
    font-size: 32px;
  }
  .mf-topbar .mf-topbar-hide-md {
    display: none;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner .cb-actions {
    justify-content: center;
  }
  .float-cta {
    display: block;
  }
  .marquee-track {
    gap: 30px;
  }
  .hero-copy {
    padding-top: 56px;
  }
  .slider-nav {
    bottom: 18px;
    right: 16px;
  }
  .slider-dots {
    bottom: 30px;
    left: 16px;
  }
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--dim);
}
.crumbs a {
  color: inherit;
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--wine);
}
.crumbs i {
  font-size: 0.6rem;
  opacity: 0.5;
}
.crumbs.on-dark,
.crumbs.on-dark a {
  color: rgba(235, 238, 244, 0.72);
}
.crumbs.on-dark a:hover {
  color: #fff;
}
.crumbs span {
  color: var(--wine);
}
.crumbs.on-dark span {
  color: #b8c1d4;
}
.steps {
  display: grid;
  gap: 22px;
}
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.step-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
  min-width: 52px;
}
.price-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--wine);
  line-height: 1.1;
}
.w-100 {
  width: 100%;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.grid-1 {
  display: grid;
  gap: 0;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2rem 0 0.7rem;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p {
  color: var(--dim);
  line-height: 1.75;
  margin: 0 0 0.5rem;
}

.section-title-sm {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.section-title-md {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
}
body h1 {
  font-size: clamp(2.5rem, 4.8vw, 3.9rem);
}
body h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}
body h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}
body h4 {
  font-size: 1.15rem;
}
body h5 {
  font-size: 1rem;
}
body h6 {
  font-size: 0.92rem;
}
.slider.section {
  padding: 0;
}
.page-content > .section:first-child,
.page-content > .section-tight:first-child {
  padding-top: clamp(44px, 6vw, 84px);
}
