/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --ink: #0a0a0f;
  --paper: #f4f1eb;
  --cream: #ebe7df;
  --warm: #d4cfc5;
  --accent: #ff4d1a;
  --accent-light: #ff6b3d;
  --electric: #3a1aff;
  --electric-light: #6b5dff;
  --mint: #00e6a0;
  --mint-dark: #00c78a;
  --charcoal: #1a1a24;
  --slate: #3d3d50;
  --muted: #8a8a9e;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================
   NOISE OVERLAY & ATMOSPHERE
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   SCROLL REVEAL SYSTEM
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.52s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(244, 241, 235, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(10,10,15,0.06);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  position: relative;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.nav.scrolled .nav__logo {
  color: var(--ink);
  text-shadow: none;
}
.nav__logo::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  position: relative;
}
.nav.scrolled .nav__links a {
  color: var(--slate);
  text-shadow: none;
}
.nav.scrolled .nav__links a:hover {
  color: var(--ink);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}
.nav__links a:hover { color: #ffffff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--ink);
  color: var(--paper) !important;
  text-shadow: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out-back);
}
.nav__cta:hover {
  background: var(--accent);
  color: var(--paper) !important;
  transform: scale(1.04);
}
.nav__cta::after {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, background 0.4s ease;
}
.nav.scrolled .nav__burger span {
  background: var(--ink);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) clamp(20px, 5vw, 80px) clamp(40px, 8vh, 100px);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.35) 0%, rgba(10,10,15,0.55) 50%, rgba(10,10,15,0.75) 100%),
    linear-gradient(90deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.1) 60%),
    url('../assets/images/hero-altitude.png') center/cover no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,235,0.06);
  animation: heroOrbit 30s linear infinite;
}
@keyframes heroOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(244,241,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,235,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black 0%, transparent 70%);
}

.hero__floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero__shape--1 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: 10%;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0.06;
  animation-delay: 0s;
}
.hero__shape--2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 30%;
  background: linear-gradient(135deg, var(--electric), transparent);
  opacity: 0.05;
  animation-delay: -3s;
}
.hero__shape--3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: linear-gradient(135deg, var(--mint), transparent);
  opacity: 0.07;
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin-bottom: 28px;
}
.hero__tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.08em;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 4px;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(244,241,235,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,77,26,0.25);
}
.btn--outline {
  border: 1.5px solid rgba(244,241,235,0.7);
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.btn--outline:hover {
  background: var(--paper);
  color: var(--ink);
  text-shadow: none;
  transform: translateY(-2px);
}
.btn__arrow {
  transition: transform 0.3s var(--ease-out-back);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.hero__stats {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(40px, 8vh, 100px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 1;
}
.hero__stat {
  text-align: right;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  line-height: 1;
  color: var(--paper);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.7);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero__stats {
    position: relative;
    right: auto;
    bottom: auto;
    flex-direction: row;
    gap: 32px;
    margin-top: 48px;
  }
  .hero__stat { text-align: left; }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: clamp(60px, 10vh, 140px) clamp(20px, 5vw, 80px);
}
.section--dark {
  background: var(--charcoal);
  color: var(--paper);
}
.section--accent {
  background: var(--accent);
  color: var(--paper);
}
.section__header {
  margin-bottom: clamp(40px, 6vh, 80px);
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section--dark .section__tag { color: var(--mint); }
.section__tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 700px;
}
.section__title em {
  font-style: italic;
  color: var(--accent);
}
.section--dark .section__title em { color: var(--mint); }

/* ============================================
   MARQUEE TICKER
   ============================================ */
.ticker {
  padding: 18px 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__inner {
  display: flex;
  animation: tickerScroll 25s linear infinite;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.ticker__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CONCEPT / ABOUT
   ============================================ */
.concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: center;
}
.concept__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: url('../assets/images/concept-building.png') center/cover no-repeat;
}
.concept__visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  color: var(--ink);
  opacity: 0.06;
}
.concept__visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--paper);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.concept__visual-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  animation: slowSpin 20s linear infinite;
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.concept__text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}
.concept__text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.concept__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.concept__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s ease;
}
.concept__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.concept__feature-icon {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.concept__feature-text {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .concept { grid-template-columns: 1fr; }
  .concept__visual { max-height: 400px; }
}

/* ============================================
   SPACES GALLERY
   ============================================ */
.spaces__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.space-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  transition: transform 0.5s var(--ease-out-expo);
}
.space-card:hover { transform: scale(0.98); }
.space-card:nth-child(1) { grid-column: 1 / 8; aspect-ratio: 16/10; }
.space-card:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 4/5; }
.space-card:nth-child(3) { grid-column: 1 / 5; aspect-ratio: 1; }
.space-card:nth-child(4) { grid-column: 5 / 9; aspect-ratio: 1; }
.space-card:nth-child(5) { grid-column: 9 / 13; aspect-ratio: 1; }

.space-card__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 10rem);
  font-style: italic;
  opacity: 0.04;
  color: var(--ink);
}
.space-card__gradient {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}
.space-card:nth-child(1) .space-card__gradient {
  background: url('../assets/images/space-openspace.png') center/cover no-repeat;
  opacity: 1;
}
.space-card:nth-child(2) .space-card__gradient {
  background: url('../assets/images/space-bureaux.png') center/cover no-repeat;
  opacity: 1;
}
.space-card:nth-child(3) .space-card__gradient {
  background: url('../assets/images/space-reunion.png') center/cover no-repeat;
  opacity: 1;
}
.space-card:nth-child(4) .space-card__gradient {
  background: url('../assets/images/space-podcast.png') center/cover no-repeat;
  opacity: 1;
}
.space-card:nth-child(5) .space-card__gradient {
  background: url('../assets/images/space-rooftop.png') center/cover no-repeat;
  opacity: 1;
}

.space-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 36px);
  z-index: 2;
  background: linear-gradient(0deg, rgba(10,10,15,0.82) 0%, rgba(10,10,15,0.45) 50%, rgba(10,10,15,0.05) 100%);
}
.space-card__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}
.space-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--paper);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.space-card__desc {
  font-size: 0.85rem;
  color: rgba(244,241,235,0.8);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.5;
  max-width: 300px;
}
.space-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-out-back), background 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.space-card:hover .space-card__arrow {
  background: var(--accent);
  color: white;
  transform: rotate(-45deg) scale(1.1);
}

@media (max-width: 768px) {
  .spaces__grid {
    grid-template-columns: 1fr 1fr;
  }
  .space-card:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .space-card:nth-child(2) { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .space-card:nth-child(n) { grid-column: auto; aspect-ratio: 1; }
  .space-card:nth-child(1), .space-card:nth-child(2) { grid-column: 1 / -1; }
}

/* ============================================
   VIRTUAL TOUR BANNER
   ============================================ */
.tour-banner {
  margin: 0 clamp(20px, 5vw, 80px);
  padding: clamp(40px, 6vw, 80px);
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tour-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(255,77,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 20% 70%, rgba(0,230,160,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.tour-banner__content { position: relative; z-index: 1; }
.tour-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 16px;
}
.tour-banner__desc {
  font-size: 0.95rem;
  color: rgba(244,241,235,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.tour-banner__visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
  background: url('../assets/images/tour-preview.png') center/cover no-repeat;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tour-banner__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s ease;
  z-index: 2;
}
.tour-banner__play:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 16px rgba(255,77,26,0.2);
}
.tour-banner__play svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 3px;
}
.tour-banner__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,241,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,235,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

@media (max-width: 768px) {
  .tour-banner { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pricing-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.4s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--accent);
}
.pricing-card--featured .pricing-card__price { color: var(--accent); }
.pricing-card--featured .pricing-card__feature::before { background: var(--accent); }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 8px;
}
.pricing-card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-card--featured .pricing-card__desc { color: rgba(244,241,235,0.6); }
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card__period {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-card__divider {
  height: 1px;
  background: rgba(10,10,15,0.08);
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-card__divider { background: rgba(244,241,235,0.1); }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.pricing-card__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-card__btn {
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: all 0.3s ease;
}
.pricing-card__btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.pricing-card--featured .pricing-card__btn {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.pricing-card--featured .pricing-card__btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: scale(1.02);
}

/* ============================================
   EVENTS / CALENDAR
   ============================================ */
.events__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 4vw, 80px);
  align-items: start;
}
.events__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: rgba(244,241,235,0.5);
  border-radius: var(--radius-md);
  transition: background 0.3s ease, transform 0.3s var(--ease-out-back);
  cursor: pointer;
}
.event-item:hover {
  background: var(--paper);
  transform: translateX(6px);
}
.section--dark .event-item {
  background: rgba(244,241,235,0.04);
}
.section--dark .event-item:hover {
  background: rgba(244,241,235,0.08);
}
.event-item__date {
  text-align: center;
}
.event-item__day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
}
.event-item__month {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.event-item__info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.event-item__info p {
  font-size: 0.78rem;
  color: var(--muted);
}
.section--dark .event-item__info p { color: rgba(244,241,235,0.5); }
.event-item__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--accent);
  color: var(--accent);
  white-space: nowrap;
}

.events__calendar {
  background: rgba(244,241,235,0.04);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(244,241,235,0.08);
}
.events__calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.events__calendar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
}
.events__calendar-nav {
  display: flex;
  gap: 8px;
}
.events__calendar-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,235,0.15);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.events__calendar-nav button:hover {
  background: rgba(244,241,235,0.1);
  border-color: rgba(244,241,235,0.3);
}
.events__calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.events__calendar-dayname {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.4);
  padding: 8px 0;
}
.events__calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  color: rgba(244,241,235,0.6);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.events__calendar-day:hover {
  background: rgba(244,241,235,0.06);
  color: var(--paper);
}
.events__calendar-day--empty { pointer-events: none; }
.events__calendar-day--today {
  background: var(--accent);
  color: white;
  font-weight: 600;
}
.events__calendar-day--event {
  position: relative;
  color: var(--paper);
}
.events__calendar-day--event::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .events__layout { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__track-wrapper {
  overflow: hidden;
  margin: 0 calc(-1 * clamp(20px, 5vw, 80px));
  padding: 0 clamp(20px, 5vw, 80px);
}
.testimonials__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}
.testimonials__track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 min(400px, 85vw);
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.4s var(--ease-out-expo);
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 24px;
  right: 28px;
}
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 24px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  flex-shrink: 0;
}
.testimonial-card:nth-child(1) .testimonial-card__avatar { background: var(--accent); }
.testimonial-card:nth-child(2) .testimonial-card__avatar { background: var(--electric); }
.testimonial-card:nth-child(3) .testimonial-card__avatar { background: var(--mint-dark); }
.testimonial-card:nth-child(4) .testimonial-card__avatar { background: var(--slate); }
.testimonial-card:nth-child(5) .testimonial-card__avatar { background: var(--accent-light); }

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
}
.testimonial-card__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.testimonials__controls {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.testimonials__ctrl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.testimonials__ctrl:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255,77,26,0.08) 0%, transparent 60%);
}
.cta__content {
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-weight: 400;
}
.cta__title em {
  font-style: italic;
  color: var(--accent);
}
.cta__sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
}
.cta__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.cta__input {
  flex: 1;
  padding: 16px 24px;
  border: 1.5px solid var(--warm);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}
.cta__input::placeholder { color: var(--muted); }
.cta__input:focus { border-color: var(--accent); }

@media (max-width: 600px) {
  .cta__form { flex-direction: column; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vh, 100px) clamp(20px, 5vw, 80px) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 60px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.footer__brand::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 4px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(244,241,235,0.5);
  line-height: 1.7;
  max-width: 320px;
  margin-top: 12px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.4);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(244,241,235,0.7);
  margin-bottom: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__col a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(244,241,235,0.08);
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(244,241,235,0.35);
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(244,241,235,0.5);
  transition: all 0.3s ease;
}
.footer__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 500px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE TRANSITIONS & MISC
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.page-loader__text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-loader__text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  animation: loaderBar 1.2s var(--ease-out-expo) forwards;
}
@keyframes loaderBar {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

/* Custom cursor dot */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor-dot.hover {
  transform: translate(-50%, -50%) scale(4);
  opacity: 0.5;
}

@media (hover: none) {
  .cursor-dot { display: none; }
}

/* smooth page anchor offset */
:target { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* Selection */
::selection {
  background: var(--accent);
  color: white;
}
