/* === MIRALUZ STUDIO — Design System === */

/* --- Kessel 105 Text (Heading Font) --- */
@font-face {
  font-family: 'Kessel 105';
  src: url('assets/fonts/kessel-105-heavy.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kessel 105';
  src: url('assets/fonts/kessel-105-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Fonts */
  --font-heading: 'Kessel 105', 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Type Scale (1.25 ratio) */
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 42px;
  --text-5xl: 56px;

  /* Spacing (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 100px;

  /* Light Theme (default) — Monochrome */
  --bg: #FFFFFF;
  --bg-elevated: #F7F7F5;
  --bg-card: #EEEEEC;
  --heading: #19191A;
  --text: #333333;
  --text-secondary: #5C5C5C;
  --text-muted: #999999;
  --accent: #19191A;
  --accent-hover: #333333;
  --accent-subtle: rgba(25, 25, 26, 0.04);
  --border: #E2E2E0;
  --border-hover: #C8C8C5;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-height: 72px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --focus-ring: 0 0 0 3px rgba(25, 25, 26, 0.25);
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #111112;
  --bg-elevated: #1A1A1B;
  --bg-card: #232324;
  --heading: #F5F5F3;
  --text: #D4D4D0;
  --text-secondary: #9A9A96;
  --text-muted: #5C5C58;
  --accent: #F5F5F3;
  --accent-hover: #FFFFFF;
  --accent-subtle: rgba(245, 245, 243, 0.04);
  --border: #2A2A2B;
  --border-hover: #3A3A3B;
  --nav-bg: rgba(17, 17, 18, 0.92);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.4);
  --focus-ring: 0 0 0 3px rgba(245, 245, 243, 0.3);
  color-scheme: dark;
}

/* === RESET === */

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

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

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

/* === FOCUS === */

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

/* === SKIP LINK === */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--accent);
  color: var(--bg);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-2);
}

/* === CONTAINER === */

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

/* === NAV === */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

[data-theme="dark"] .logo-img {
  filter: invert(1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  padding: var(--space-2) 0;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 24px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* === THEME TOGGLE SWITCH (pill) === */

.theme-switch {
  position: relative;
  width: 56px;
  height: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
}

.theme-switch:hover {
  border-color: var(--accent);
}

.theme-switch .switch-knob {
  position: absolute;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .theme-switch .switch-knob {
  transform: translateX(26px);
}

.theme-switch svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-switch .icon-sun { display: block; }
.theme-switch .icon-moon { display: none; }
[data-theme="dark"] .theme-switch .icon-sun { display: none; }
[data-theme="dark"] .theme-switch .icon-moon { display: block; }

/* === MINIMAL PRELOADER === */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderBlurIn 0.8s ease-out forwards;
}

.preloader.blurring-out {
  animation: preloaderBlurOut 0.9s ease-in forwards;
}

.preloader.done {
  display: none;
  pointer-events: none;
}

/* Studio name — big, centered, Kessel 105 */
.preloader-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0.9;
}

.preloader-name-line {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 120px);
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: nameReveal 0.6s ease-out forwards;
}

.preloader-name-line:nth-child(1) { animation-delay: 0.3s; }
.preloader-name-line:nth-child(2) { animation-delay: 0.5s; }

/* Photo reel — bottom right, fast cycling */
.preloader-reel {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  animation: reelFadeIn 0.4s ease-out 0.7s forwards;
}

.preloader-reel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.08s ease;
}

.preloader-reel-img.active {
  opacity: 1;
}

/* Animations */
@keyframes preloaderBlurIn {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes preloaderBlurOut {
  0% {
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    filter: blur(20px);
    opacity: 0;
  }
}

@keyframes nameReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

@keyframes reelFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .preloader-reel {
    bottom: 24px;
    right: 24px;
    width: 110px;
    height: 140px;
  }
}

/* === FAQ ACCORDION === */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  min-height: 48px;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 0 var(--space-5) 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px var(--space-6);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

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

/* === HERO === */

.hero {
  padding: 160px 0 var(--space-11);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, var(--accent-subtle) 0%, transparent 60%);
  pointer-events: none;
}

.hero-sub {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-5);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: var(--space-5);
  letter-spacing: -1px;
}

.hero p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-7);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* === SECTIONS === */

.section {
  padding: var(--space-11) 0;
}

.section-divider {
  border-top: 1px solid var(--border);
}

.section-sub {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.12;
  color: var(--heading);
  margin-bottom: var(--space-4);
}

.section p.section-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

.section-centered {
  text-align: center;
  margin-bottom: var(--space-9);
}

.section-centered .section-desc {
  margin: 0 auto;
}

/* === PLACEHOLDER IMAGE === */

.placeholder-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.placeholder-img.portrait { aspect-ratio: 3/4; }
.placeholder-img.square { aspect-ratio: 1/1; }

/* === SPACE CARDS === */

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto;
}

.space-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.space-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.space-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

.space-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === FEATURES === */

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

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* === RATES === */

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

.rate-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: var(--space-7);
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.rate-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rate-card.featured {
  border-color: var(--accent);
}

.rate-card.featured::before {
  content: 'ALL SPACES';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px var(--space-4);
}

.rate-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

.rate-card .rate-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.rate-price {
  margin-bottom: var(--space-5);
}

.rate-price .price {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
}

.rate-price .unit {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-left: 2px;
}

.rate-price .promo {
  display: block;
  font-size: var(--text-sm);
  color: var(--accent);
  margin-top: var(--space-1);
  font-weight: 500;
}

.rate-includes {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-6);
}

.rate-includes li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rate-includes li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* === INFO GRID === */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-9);
}

.info-item h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

.info-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === CTA BANNER === */

.cta-banner {
  padding: var(--space-10) 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-subtle) 100%);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-3);
}

.cta-banner p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* === BOOKING WIZARD === */

.booking-wizard {
  max-width: 820px;
  margin: 0 auto;
}

/* Progress bar */
.wizard-progress {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-5);
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.wizard-step.active {
  color: var(--heading);
  background: var(--accent-subtle);
  font-weight: 600;
}

.wizard-step.completed {
  color: var(--text-secondary);
}

.wizard-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
}

.wizard-step.active .wizard-step-num {
  background: var(--accent);
  color: var(--bg);
}

.wizard-step.completed .wizard-step-num {
  background: var(--accent);
  color: var(--bg);
}

/* Panels */
.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
}

.wizard-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.wizard-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

/* Package cards */
.package-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.package-card {
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.package-card:hover {
  border-color: var(--accent);
}

.package-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

.package-card .package-price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-2);
}

.package-card .package-price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
}

.package-card .package-note {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Duration pills */
.duration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.duration-pill {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.duration-pill:hover {
  border-color: var(--accent);
}

.duration-pill.selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Schedule layout (Step 2) */
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-7);
  align-items: start;
}

.schedule-times {
  min-width: 180px;
}

.time-panel-date {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-4);
  text-align: center;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-height: 400px;
  overflow-y: auto;
  padding-right: var(--space-2);
}

.time-slot {
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-align: center;
}

.time-slot:hover:not(.booked) {
  border-color: var(--accent);
}

.time-slot.selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}

.time-slot.booked {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-timezone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

.cal-timezone svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sidebar summary */
.wizard-sidebar {
  margin-bottom: var(--space-6);
}

.sidebar-summary {
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.sidebar-summary h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-4);
}

.sidebar-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.sidebar-detail:last-child {
  margin-bottom: 0;
}

.sidebar-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Navigation row */
.wizard-nav-row {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.wizard-nav-row .wizard-back {
  flex-shrink: 0;
}

.wizard-nav-row .btn-primary,
.wizard-nav-row .wizard-next {
  flex: 1;
}

/* Contact bottom grid (info + map side by side) */
.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-9);
  align-items: start;
}

@media (max-width: 768px) {
  .package-cards { grid-template-columns: 1fr; }
  .schedule-layout { grid-template-columns: 1fr; }
  .schedule-times { min-width: 100%; }
  .wizard-nav-row { flex-direction: column; }
  .wizard-nav-row .wizard-back { order: 2; }
  .wizard-nav-row .btn-primary,
  .wizard-nav-row .wizard-next { order: 1; width: 100%; }
  .contact-bottom-grid { grid-template-columns: 1fr; }
  .wizard-progress { overflow-x: auto; white-space: nowrap; }
}

/* === CONTACT FORM === */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.form-group label .required {
  color: var(--accent);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px var(--space-4);
  font-family: inherit;
  font-size: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* --- Calendar Picker --- */

.calendar-picker {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-5);
  user-select: none;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.cal-month {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.5px;
}

.cal-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}

.cal-nav svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cal-nav:hover {
  border-color: var(--accent);
  color: var(--heading);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day-name {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--space-2) 0;
}

.cal-day {
  text-align: center;
  padding: 10px 0;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.cal-day:hover:not(.disabled):not(.booked):not(.empty) {
  background: var(--accent-subtle);
  color: var(--heading);
}

.cal-day.today {
  font-weight: 700;
  color: var(--heading);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.cal-day.selected {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
}

.cal-day.disabled {
  color: var(--text-muted);
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-day.booked {
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.5;
}

.cal-day.empty {
  cursor: default;
}

.cal-selected {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-item h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-info-item a {
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--heading);
}

/* === GALLERY === */

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

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

/* === TWO COLUMN === */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.two-col-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, 38px);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-4);
  line-height: 1.12;
}

.two-col-text p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  max-width: 480px;
}

/* === MAP === */

.map-embed {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: var(--space-6);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
}

[data-theme="dark"] .map-embed iframe {
  filter: invert(0.9) hue-rotate(180deg);
}

/* === FOOTER === */

.footer {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--border);
}

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

.footer-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-5);
  list-style: none;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--heading);
}

/* === SCROLL REVEAL ANIMATIONS === */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="scale"] {
  transform: scale(0.95);
}

[data-reveal="slide-left"] {
  transform: translateX(-40px);
}

[data-reveal="slide-right"] {
  transform: translateX(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children in grids */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.25s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.3s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.35s; }

[data-stagger].revealed > * {
  opacity: 1;
  transform: none;
}

/* Hero parallax */
.hero[data-parallax] {
  transition: none;
}

.hero[data-parallax] .container {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Smooth nav hide/show on scroll */
.nav {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-5);
    gap: var(--space-5);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 130px 0 var(--space-9);
  }

  .section {
    padding: var(--space-9) 0;
  }

  .spaces-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .rates-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .gallery-grid,
  .gallery-grid.three-col {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .cta-banner {
    padding: var(--space-9) 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
