/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors — our palette */
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --gold: #c8a55c;
  --gold-light: #d4b76a;
  --gold-dim: rgba(200, 165, 92, 0.10);
  --text: #fafafa;
  --text-secondary: #999999;
  --text-muted: #555555;
  --border: #1e1e1e;
  --border-hover: #2a2a2a;

  /* Typography — Oswald display + Inter body */
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* 8pt spacing grid */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

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

/* Focus states — keyboard-first */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.85em;
}

/* ===== Loader ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Top-left label */
.loader-label {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0;
  transform: translateY(-20px);
  animation: loaderSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Center rotating words */
.loader-words {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-word {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  color: rgba(250, 250, 250, 0.8);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-word.visible {
  opacity: 1;
  transform: translateY(0);
}

.loader-word.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* Bottom progress bar */
.loader-bar-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(31, 31, 31, 0.5);
}

.loader-bar-fill {
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 0 8px rgba(200, 165, 92, 0.35);
  transition: transform 0.1s linear;
}

@keyframes loaderSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .loader-label {
    top: var(--space-6);
    left: var(--space-6);
    font-size: 13px;
  }

  .loader-word {
    font-size: 4.5rem;
  }

}

@media (min-width: 1024px) {
  .loader-word {
    font-size: 5.5rem;
  }

}

/* ===== Navigation ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}

#navbar.visible {
  transform: translateY(0);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  height: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
  z-index: 201;
}

.nav-links {
  display: flex;
  gap: var(--space-5);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
  padding: var(--space-1) 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  z-index: 201;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: all var(--duration) var(--ease);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px var(--space-3);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ===== Hero ===== */
#hero {
  position: relative;
}

.hero-scroll-container {
  height: 200vh;
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.0) 25%,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.1s linear, transform 0.1s linear;
  width: 100%;
  padding: 0 var(--space-3);
}

/* Intro anchored to the bottom */
.hero-intro {
  opacity: 1;
  bottom: var(--space-10);
}

.hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: var(--space-2);
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(200, 165, 92, 0.3);
}

.hero-intro h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 14px;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(200, 165, 92, 0.15);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--space-1);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-top: var(--space-3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Thin gold divider between subtitle and tagline */
.hero-tagline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-2);
  opacity: 0.5;
}

/* Result also anchored to the bottom */
.hero-result {
  opacity: 0;
  bottom: var(--space-10);
}

.hero-result-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-4);
}

.hero-cta-btn {
  pointer-events: auto;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-6);
  background: var(--gold);
  color: var(--bg);
  border-radius: 0;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  transition: all var(--duration) var(--ease);
}

.hero-cta-btn:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 165, 92, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity var(--duration) var(--ease);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ===== Sections ===== */
.section {
  padding: var(--space-16) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-3) auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-8);
}

/* Reveal animations */
.section {
  opacity: 0;
  transform: translateY(var(--space-6));
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(var(--space-4));
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== About / Reasons ===== */
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.reason-card {
  flex: 0 1 calc(25% - var(--space-2));
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-3);
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.reason-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-icon {
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.reason-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-1);
}

.reason-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Stats / Trust ===== */
.stats-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 720px;
  margin: var(--space-8) auto 0;
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.stat-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.stat-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.stat-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: var(--space-8) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq-item[open] {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  transition: color var(--duration) var(--ease);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: var(--space-2);
  transition: transform var(--duration) var(--ease);
}

.faq-item[open] .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--gold);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  padding: 0 var(--space-3) var(--space-3);
}

.faq-answer p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}

/* ===== Before / After ===== */
.comparison-wrapper {
  max-width: 800px;
  margin: var(--space-8) auto 0;
}

.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid var(--border);
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  clip-path: inset(0 50% 0 0);
}

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 5;
}

.comparison-handle-line {
  flex: 1;
  width: 1px;
  background: var(--gold);
}

.comparison-handle-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--duration) var(--ease);
}

.comparison-slider:active .comparison-handle-circle {
  transform: scale(1.1);
}

.comparison-label {
  position: absolute;
  top: var(--space-2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  z-index: 4;
}

.comparison-label-before {
  left: var(--space-2);
}

.comparison-label-after {
  right: var(--space-2);
}

/* ===== Pricing ===== */
.pricing-table-wrap {
  margin-top: var(--space-8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead {
  background: var(--gold);
}

.pricing-table th {
  font-family: var(--font-display);
  padding: var(--space-2) var(--space-3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  text-align: left;
  white-space: nowrap;
}

.pricing-table th:first-child {
  border-radius: 7px 0 0 0;
}

.pricing-table th:last-child {
  border-radius: 0 7px 0 0;
}

.pricing-table td {
  padding: var(--space-2) var(--space-3);
  font-size: 0.9rem;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr {
  background: var(--bg-card);
  transition: background var(--duration) var(--ease);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--bg);
}

.pricing-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table td:not(:first-child) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  white-space: nowrap;
  color: var(--text);
}

.pricing-sub-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

.pricing-gift {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: var(--gold-dim);
  border: 1px solid rgba(200, 165, 92, 0.15);
  border-radius: var(--radius-md);
}

.gift-icon {
  flex-shrink: 0;
  color: var(--gold);
}

.gift-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.gift-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.gift-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== Guests Carousel ===== */
.guests-carousel {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-8) 0 var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-card);
}

.guests-carousel::-webkit-scrollbar {
  height: 6px;
}

.guests-carousel::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 3px;
}

.guests-carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.guest-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  text-align: center;
}

.guest-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}

.guest-card:hover img {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.guest-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: var(--space-1);
  color: var(--text-secondary);
}

/* ===== Gallery (legacy) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 165, 92, 0.2);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== Locations ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.location-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.location-address {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px var(--space-3);
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration) var(--ease);
  min-height: 44px;
}

.booking-btn:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px var(--space-3);
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration) var(--ease);
  min-height: 44px;
}

.whatsapp-btn:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 165, 92, 0.2);
}

/* ===== Footer ===== */
#footer {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  opacity: 0.6;
}

.footer-tagline {
  font-family: var(--font-display);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: var(--space-1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .reason-card {
    flex: 0 1 calc(50% - var(--space-2));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-10) 0;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .hero-logo {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-2);
  }

  .hero-intro {
    bottom: var(--space-10);
  }

  .hero-intro h1 {
    font-size: 3.5rem;
    letter-spacing: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 6px;
    margin-top: 4px;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-top: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-result {
    bottom: var(--space-6);
  }

  .hero-result-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .hero-cta-btn {
    padding: var(--space-2) var(--space-5);
    font-size: 12px;
    min-height: 48px;
  }

  .scroll-indicator {
    bottom: var(--space-2);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  #navbar.menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links a {
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--text-secondary);
    padding: var(--space-1) 0;
    transition: color var(--duration) var(--ease);
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: var(--gold);
  }

  .reasons-grid {
    gap: 12px;
  }

  .reason-card {
    flex: 1 1 100%;
    min-width: 0;
    padding: var(--space-3) var(--space-2);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-wrapper {
    margin-top: var(--space-5);
  }

  .comparison-slider {
    border-radius: var(--radius-sm);
  }

  /* Pricing: table → stacked cards */
  .pricing-table-wrap {
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody {
    display: block;
  }

  .pricing-table tbody tr {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-2) var(--space-1);
    margin-bottom: 12px;
  }

  .pricing-table tbody tr:nth-child(even) {
    background: var(--bg-card);
  }

  .pricing-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .pricing-table td {
    display: block;
    border-bottom: none;
    padding: 0 var(--space-2);
    text-align: left !important;
  }

  /* First td = service name as card heading */
  .pricing-table td:first-child {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: var(--space-1);
    margin-bottom: var(--space-1);
    border-bottom: 1px solid var(--border);
  }

  /* Price cells: inline label + value */
  .pricing-table td:not(:first-child) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 0.9rem;
  }

  .pricing-table td:not(:first-child)::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* Highlight the "Старший" row */
  .pricing-table td:last-child {
    color: var(--gold);
    font-weight: 500;
  }

  .pricing-gift {
    flex-direction: column;
    text-align: center;
  }
}
