:root {
  --color-background: #f7f3ec;
  --color-surface: #ffffff;
  --color-surface-alt: #f0ebe3;
  --color-text-muted: #666666;
  --color-primary: #c9a66b;
  --color-primary-soft: rgba(201, 166, 107, 0.15);
  --color-primary-strong: #b18d4e;
  --color-success: #2f8a5f;
  --color-warning: #c98b2b;
  --color-danger: #c04a4a;
  --color-graphite: #111111;
  --color-walnut: #7a5a3b;
  --color-platinum: #d0d3d8;
  --gray-50: #f8f9fb;
  --gray-100: #eceff3;
  --gray-200: #dde1e7;
  --gray-300: #c3c7cf;
  --gray-400: #a1a6b0;
  --gray-500: #7a808c;
  --gray-600: #5a606b;
  --gray-700: #424651;
  --gray-800: #292c33;
  --gray-900: #17191f;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  --space-0: 0;
  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-56: 3.5rem;
  --space-64: 4rem;
  --space-80: 5rem;
  --space-96: 6rem;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-subtle: 0 8px 24px rgba(7, 10, 18, 0.18);
  --shadow-elevated: 0 24px 60px rgba(0, 0, 0, 0.3);
  --shadow-outline: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 0 0 4px rgba(201, 166, 107, 0.45);
  --transition-fast: 150ms ease-out;
  --transition-medium: 220ms ease-out;
  --transition-slow: 360ms ease-out;
  --layout-max-width: 1200px;
  --header-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background-color: var(--color-background);
  color: var(--color-text);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-graphite);
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-24);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-20);
}

h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-16);
}

h4 {
  font-size: 1.25rem;
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-12);
}

p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-16);
}

p.lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

small {
  font-size: var(--font-size-sm);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

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

.container {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}

.section {
  padding-top: var(--space-64);
  padding-bottom: var(--space-64);
}

.section--tight {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.section--hero {
  min-height: calc(100vh - var(--header-height));
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: var(--space-24);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-32);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-32);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d8b982, #b48a4b);
  color: #0f1014;
  font-size: var(--font-size-sm);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition-medium), color var(--transition-medium), box-shadow var(--transition-medium), transform var(--transition-fast), border-color var(--transition-medium);
}

.btn:hover {
  background: linear-gradient(135deg, #e1c690, #b48a4b);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.1);
  color: #f9f5ee;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background: transparent;
  border-color: rgba(201, 166, 107, 0.7);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-primary-soft);
}

.vs-header .btn-outline,
.metallic-bg .btn-outline,
.bg-graphite .btn-outline,
.hero-overlay-dark .btn-outline,
.card .btn-outline,
.booking-panel .btn-outline,
.vs-cookie .btn-outline,
.thank-you-wrapper .btn-outline {
  color: rgba(214, 208, 198, 0.92);
  border-color: rgba(214, 208, 198, 0.5);
}

.vs-header .btn-outline:hover,
.metallic-bg .btn-outline:hover,
.bg-graphite .btn-outline:hover,
.hero-overlay-dark .btn-outline:hover,
.card .btn-outline:hover,
.booking-panel .btn-outline:hover,
.vs-cookie .btn-outline:hover,
.thank-you-wrapper .btn-outline:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(214, 208, 198, 0.85);
}

.metallic-bg .caption-muted,
.metallic-bg .faq-answer,
.metallic-bg .body-muted,
.metallic-bg .text-muted,
.metallic-bg .section-intro,
.metallic-bg .section-label:not(.text-ivory),
.bg-graphite .caption-muted,
.bg-graphite .faq-answer,
.bg-graphite .body-muted,
.bg-graphite .text-muted,
.bg-graphite .section-intro,
.bg-graphite .section-label:not(.text-ivory),
.hero-overlay-dark .caption-muted,
.hero-overlay-dark .faq-answer,
.hero-overlay-dark .body-muted,
.hero-overlay-dark .text-muted,
.hero-overlay-dark .section-intro,
.hero-overlay-dark .section-label:not(.text-ivory),
.card .caption-muted,
.card .faq-answer,
.card .body-muted,
.card .text-muted,
.card .section-intro,
.booking-panel .caption-muted,
.booking-panel .faq-answer,
.booking-panel .body-muted,
.booking-panel .text-muted,
.vs-cookie .caption-muted,
.vs-cookie .faq-answer,
.vs-cookie .body-muted,
.vs-cookie .text-muted,
.thank-you-wrapper .caption-muted,
.thank-you-wrapper .faq-answer,
.thank-you-wrapper .body-muted,
.thank-you-wrapper .text-muted {
  color: rgba(247, 243, 236, 0.9);
}

.metallic-bg .booking-legal,
.metallic-bg .booking-hint,
.metallic-bg .booking-checkbox-label,
.bg-graphite .booking-legal,
.bg-graphite .booking-hint,
.bg-graphite .booking-checkbox-label,
.hero-overlay-dark .booking-legal,
.hero-overlay-dark .booking-hint,
.hero-overlay-dark .booking-checkbox-label,
.card .booking-legal,
.card .booking-hint,
.card .booking-checkbox-label,
.booking-panel .booking-legal,
.booking-panel .booking-hint,
.booking-panel .booking-checkbox-label {
  color: rgba(247, 243, 236, 0.9);
}

.metallic-bg .badge-event,
.bg-graphite .badge-event,
.hero-overlay-dark .badge-event,
.card .badge-event,
.booking-panel .badge-event {
  color: #d6c3a0;
  background: rgba(201, 166, 107, 0.18);
}

.metallic-bg .chip-filter,
.bg-graphite .chip-filter,
.hero-overlay-dark .chip-filter,
.card .chip-filter {
  color: rgba(214, 208, 198, 0.92);
  background: rgba(255, 255, 255, 0.06);
}

.metallic-bg .chip-filter--active,
.bg-graphite .chip-filter--active,
.hero-overlay-dark .chip-filter--active,
.card .chip-filter--active {
  background: #f7f3ec;
  color: #181818;
}

.metallic-bg .glass-panel,
.bg-graphite .glass-panel,
.hero-overlay-dark .glass-panel,
.thank-you-wrapper .glass-panel {
  color: rgba(214, 208, 198, 0.92);
}

.metallic-bg .glass-panel h1,
.metallic-bg .glass-panel h2,
.metallic-bg .glass-panel h3,
.metallic-bg .glass-panel h4,
.bg-graphite .glass-panel h1,
.bg-graphite .glass-panel h2,
.bg-graphite .glass-panel h3,
.bg-graphite .glass-panel h4,
.hero-overlay-dark .glass-panel h1,
.hero-overlay-dark .glass-panel h2,
.hero-overlay-dark .glass-panel h3,
.hero-overlay-dark .glass-panel h4,
.thank-you-wrapper .glass-panel h1,
.thank-you-wrapper .glass-panel h2,
.thank-you-wrapper .glass-panel h3,
.thank-you-wrapper .glass-panel h4 {
  color: #f7f3ec;
}

.btn-secondary {
  background: #181818;
  color: #f8f4ed;
}

.btn-secondary:hover {
  background: #000000;
}

.btn[disabled],
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(9, 11, 18, 0.85);
  color: #f5f2ec;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: rgba(223, 218, 208, 0.65);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(201, 166, 107, 0.75);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 166, 107, 0.45);
  background-color: rgba(9, 11, 18, 0.95);
}

input[disabled],
select[disabled],
textarea[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

label {
  display: block;
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-20);
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.03)), linear-gradient(145deg, rgba(8, 9, 13, 0.97), rgba(19, 21, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
  backdrop-filter: blur(18px);
  color: rgba(247, 243, 236, 0.9);
}

.card-header {
  margin-bottom: var(--space-16);
}

.card-title {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7f3ec;
  margin-bottom: var(--space-8);
}

.card-subtitle {
  font-size: var(--font-size-sm);
  color: rgba(247, 243, 236, 0.9);
}

.card-body {
  font-size: var(--font-size-md);
  color: rgba(247, 243, 236, 0.9);
}

.card-elevated {
  box-shadow: var(--shadow-elevated);
}

.glass-panel {
  background: linear-gradient(135deg, rgba(250, 248, 244, 0.1), rgba(194, 171, 133, 0.09));
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(22px);
  border-radius: var(--radius-xl);
}

.hero-overlay-dark {
  position: relative;
}

.hero-overlay-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0, rgba(255, 255, 255, 0.22), transparent 55%), linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.champagne-border {
  border-top: 1px solid rgba(201, 166, 107, 0.45);
}

.marble-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), rgba(201, 166, 107, 0.75), rgba(255, 255, 255, 0.25), transparent);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(9, 11, 18, 0.7);
  color: rgba(247, 243, 236, 0.9);
  border: 1px solid rgba(201, 166, 107, 0.65);
}

.tag-muted {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-300);
}

.text-gold {
  color: var(--color-primary);
}

.text-ivory {
  color: #f7f3ec;
}

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

.bg-graphite {
  background-color: #050609;
  color: rgba(247, 243, 236, 0.9);
}

.bg-ivory {
  background-color: #f7f3ec;
}

.bg-walnut {
  background-color: #3f2b1b;
  color: rgba(247, 243, 236, 0.9);
}

.link-underline {
  position: relative;
  color: inherit;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 166, 107, 0.8), rgba(255, 255, 255, 0.9));
  transition: width var(--transition-medium);
}

.link-underline:hover::after {
  width: 100%;
}

.link-inverse {
  color: #f7f3ec;
}

.link-inverse:hover {
  color: #ffffff;
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-outline);
}

button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

@media (max-width: 1024px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .container {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.8rem;
  }

  .hero-heading {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    letter-spacing: 0.05em;
  }

  .hero-subtext-hu,
  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-meta {
    font-size: 0.72rem;
    gap: 0.7rem 1rem;
  }

  .section-heading-large {
    font-size: 1.6rem;
  }

  .grid-auto-fit {
    grid-template-columns: minmax(0, 1fr);
  }

  .card {
    padding: var(--space-20);
  }

  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-highlight {
    font-size: 1.6rem;
  }

  .hero-cta-group .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .list-check li {
    font-size: 0.9rem;
  }

  .faq-question,
  .faq-answer {
    font-size: 0.9rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --layout-max-width: 1320px;
  }
}

.header-blur {
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(2, 3, 6, 0.95), rgba(2, 3, 6, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-link {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 231, 0.78);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 166, 107, 0.9), rgba(255, 255, 255, 0.8));
  transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: #ffffff;
}

.footer {
  background: #050609;
  color: rgba(231, 226, 218, 0.9);
  padding-top: var(--space-48);
  padding-bottom: var(--space-32);
}

.footer-heading {
  font-size: var(--font-size-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.8);
  margin-bottom: var(--space-16);
}

.footer-link {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(223, 216, 204, 0.8);
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #ffffff;
}

.newsletter-input {
  background: rgba(3, 4, 7, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.newsletter-input:focus {
  border-color: rgba(201, 166, 107, 0.85);
}

.hero-kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(248, 243, 235, 0.8);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f9f4ec;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 34rem;
  color: rgba(244, 239, 231, 0.82);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 231, 221, 0.8);
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-right: 0.55rem;
  background: radial-gradient(circle at center, #f7f3ec, #c9a66b);
}

.stat-highlight {
  font-size: 2rem;
  font-weight: 500;
  color: #f7f3ec;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(220, 213, 202, 0.8);
}

.badge-venue {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.16rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 9, 14, 0.85);
  border: 1px solid rgba(241, 237, 232, 0.25);
  color: rgba(241, 237, 232, 0.95);
}

.chip-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 166, 107, 0.32);
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.7);
}

.chip-filter--active {
  background: #111318;
  color: #f7f3ec;
  border-color: rgba(201, 166, 107, 0.8);
}

.badge-event {
  font-size: 0.7rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(201, 166, 107, 0.16);
  color: #8b6a33;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(247, 243, 236, 0.9);
}

.testimonial-name {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: rgba(215, 210, 201, 0.8);
}

.booking-panel {
  background: linear-gradient(145deg, rgba(8, 9, 13, 0.98), rgba(19, 21, 31, 0.98));
  border-radius: var(--radius-xl);
  padding: var(--space-24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(22px);
  color: rgba(247, 243, 236, 0.9);
}

.booking-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 231, 222, 0.82);
}

.badge-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(235, 229, 219, 0.9);
}

.badge-availability::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #43d08d, #1f7a4f);
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c9a66b;
}

.timeline-line {
  width: 1px;
  background: linear-gradient(to bottom, rgba(201, 166, 107, 0.7), transparent);
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.badge-language {
  font-size: 0.7rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(244, 239, 231, 0.9);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(196, 190, 180, 0.9);
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover {
  color: #ffffff;
}

.booking-step {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 244, 237, 0.75);
}

.booking-step--active {
  color: #ffffff;
}

.booking-step--active::after {
  content: "";
  display: block;
  margin-top: 0.25rem;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 166, 107, 0.9), rgba(255, 255, 255, 0.9));
}

.chip-language {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 243, 236, 0.9);
}

.hero-subgrid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: var(--space-32);
}

@media (max-width: 960px) {
  .hero-subgrid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.caption-upper {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.caption-muted {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 3.2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 640px) {
  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-24);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-subtle {
  box-shadow: var(--shadow-subtle);
}

.shadow-none {
  box-shadow: none;
}

.rounded-full {
  border-radius: var(--radius-full);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.marble-bg {
  background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.8), transparent 55%), radial-gradient(circle at 100% 100%, rgba(234, 222, 205, 0.8), transparent 50%), linear-gradient(135deg, #f7f3ec, #e3d7c4);
}

.metallic-bg {
  background-image: linear-gradient(120deg, #14151b, #24252d 28%, #0d0e12 53%, #2c2d37 78%, #181921);
  color: rgba(247, 243, 236, 0.9);
}

.btn-contrast {
  background: #f7f3ec;
  color: #191920;
}

.btn-contrast:hover {
  background: #ffffff;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #c9a66b, #896732);
}

.hero-pill-text {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.9);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, #c9a66b, #816331);
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.8rem;
}

.section-heading-large {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 34rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
  }
}

.badge-locale {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(151, 143, 130, 0.95);
}

.hero-subtext-hu {
  font-size: 1rem;
  color: rgba(244, 239, 232, 0.9);
}

 body {
  font-feature-settings: "lnum" 1, "tnum" 1;
}
