/* ============================================
   LuxeVoyage — Premium Light UI
   Complete Clean Rebuild
   ============================================ */

/* --- Google Fonts in HTML --- */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Core Palette — Silk Base + Slate Graphite + Warm Metallic Gold */
  --ink:        #121417;   /* Deeper Graphite anchor for better pop */
  --ink-soft:   #545864;   /* Sharper muted text */
  --paper:      #F2F0EB;   /* Silk background */
  --surface:    #FFFFFF;   /* Pure white cards for maximum contrast */
  --border:     #D1CDC8;   /* Sharper borders */
  --accent:     #B49157;   /* Rich Metallic Champagne Gold */
  --accent-lt:  #EBE7E1;   /* Lighter stone tint */
  --gold:       #B49157;   /* Metallic Gold */
  --gold-lt:    rgba(180, 145, 87, 0.1); 

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-md:   1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.75rem;
  --text-2xl:  max(2rem, 3vw);
  --text-3xl:  clamp(2.5rem, 5vw, 4.5rem);
  --text-hero: clamp(3.5rem, 8vw, 8.5rem);

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 3.5rem;
  --gap-xl: 5rem;
  --gap-2xl: 9rem;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-full: 999px;

  /* Shadows — Adjusted for Maximum Clarity and Lift */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.18);
  --title-lift: 0 4px 15px rgba(0,0,0,0.25);

  /* Motion */
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.5s;
}

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

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

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

/* Subtle Film Grain Noise Texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

body.no-custom-cursor, body.no-custom-cursor a, body.no-custom-cursor button { cursor: auto !important; }

a { text-decoration: none; color: inherit; cursor: none; }
button { font-family: var(--font-body); cursor: none; border: none; background: none; }
img { display: block; max-width: 100%; }
input, textarea { font-family: var(--font-body); }
ul { list-style: none; }
em { font-style: italic; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}

.cursor__ball {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cursor__ball--small {
  width: 5px; height: 5px;
  background: var(--ink);
  z-index: 9999;
}

.cursor__ball--big {
  width: 35px; height: 35px;
  border: 1px solid rgba(26, 29, 35, 0.15);
  z-index: 9998;
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border 0.4s var(--ease), background 0.4s var(--ease);
}

body.cursor-hovered .cursor__ball--big {
  width: 65px; height: 65px;
  border-color: var(--accent);
  background: rgba(166, 130, 65, 0.05);
}

body.cursor-magnetic .cursor__ball--big {
  width: 80px; height: 80px;
  border-color: var(--ink);
  background: rgba(26, 29, 35, 0.05);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--paper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--gap-md);
}

.loader__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 10px;
  color: var(--ink);
  font-weight: 400;
  text-transform: uppercase;
}

.loader__logo em { color: var(--accent); font-style: italic; }

.loader__bar {
  width: 160px; height: 1px;
  background: var(--border);
  overflow: hidden;
}

.loader__fill {
  height: 100%; width: 0%;
  background: var(--accent);
  animation: fill-bar 2s var(--ease-out) forwards;
}

@keyframes fill-bar { to { width: 100%; } }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding: var(--gap-2xl) 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--gap-xl);
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0.25rem;
}

.section__title em { color: var(--accent); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--gap-xs);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease-out);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--dark {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn--dark:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-radius: 0;
  font-weight: 700;
}
.btn--ghost::after {
  content: "";
  position: absolute;
  bottom: 10px; left: 0; width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.btn--ghost:hover::after { width: 100%; }
.btn--ghost .btn__arrow { transition: transform var(--dur) var(--ease-out); }
.btn--ghost:hover .btn__arrow { transform: translateX(5px); }

/* Magnetic container helper */
.magnetic { display: inline-block; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              padding var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(240, 238, 233, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.9rem 0;
}

.nav__inner {
  display: flex; align-items: center; gap: var(--gap-xl);
  max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: auto;
}
.nav__logo em { color: var(--accent); }

.nav__links {
  display: flex; gap: var(--gap-lg);
}

.nav__links a {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--accent); }

.nav__cta { padding: 10px 24px; font-size: var(--text-xs); }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px;
  background: none; border: none;
}
.nav__toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all var(--dur) var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(80px + 6vw) clamp(1.5rem, 5vw, 4rem) 6vw;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero__overline { margin-bottom: var(--gap-md); }

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: var(--gap-md);
  max-width: 1100px;
  text-shadow: var(--title-lift);
}

.hero__title--italic { font-style: italic; color: var(--accent); }

.line { display: block; overflow: hidden; }
.line__inner { display: block; transform: translateY(110%); }

.hero__sub {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto var(--gap-lg);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
}

.hero__ctas {
  display: flex; align-items: center; justify-content: center; gap: var(--gap-lg);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Immersive Visual */
.hero__visual {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(242,240,237,0.15) 60%, var(--paper) 100%),
              linear-gradient(to top, transparent 0%, rgba(242,240,237,0.15) 100%);
  pointer-events: none;
}

.arch {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.arch__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.15) brightness(1);
  scale: 1.05;
  animation: ken-burns 60s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.15) translate(1%, 1%); }
}

/* Rotating stamp — moved to corner */
.arch__badge {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 110px;
  height: 110px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  animation: badge-spin 20s linear infinite;
  z-index: 100;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

/* Stat cards — refined */
.hero__stat {
  position: absolute;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.8); /* Rim light */
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  text-align: left;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}

.hero__stat::after {
  content: "";
  position: absolute;
  top: -100%; left: -100%;
  width: 300%; height: 300%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 60%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: glass-shimmer 6s infinite;
  pointer-events: none;
}

@keyframes glass-shimmer {
  0% { transform: translate(-10%, -10%) rotate(25deg); }
  50% { transform: translate(10%, 10%) rotate(25deg); }
  100% { transform: translate(-10%, -10%) rotate(25deg); }
}

.hero__stat:hover { transform: translateY(-5px) scale(1.02); border-color: var(--accent); }

.hero__stat--1 { top: 25%; left: 8%; }
.hero__stat--2 { bottom: 25%; right: 8%; }

.stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat__lbl {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
  background: var(--surface);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.marquee__sep {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}

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

/* ============================================
   CURATED COLLECTIONS (Bento Grid)
   ============================================ */
.curated { background: var(--paper); padding-bottom: var(--gap-2xl); }

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: var(--gap-md);
}

.bento__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.6s var(--ease), border-color 0.4s var(--ease);
}

.bento__item--wide { grid-column: span 2; }
.bento__item--tall { grid-row: span 2; }

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

.bento__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.8) brightness(0.9);
}

.bento__item:hover .bento__img { transform: scale(1.08); filter: saturate(1) brightness(1); }

.bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,29,35,0.85) 0%, transparent 60%);
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.4s var(--ease);
}

.bento__item:hover .bento__overlay { opacity: 1; }

.bento__tag {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 4px;
}

.bento__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: #fff;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations { background: var(--paper); }

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap-lg);
}

.dest-stack {
  display: flex; flex-direction: column; gap: var(--gap-lg);
}

.dest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dest-card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.dest-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.9);
}

.dest-card:hover .dest-card__img-wrap img { transform: scale(1.04); filter: saturate(1); }

.dest-card__body {
  padding: var(--gap-md) var(--gap-lg);
  display: flex; flex-direction: column; gap: var(--gap-xs);
  flex: 1;
}

.dest-card__tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold-lt);
  color: var(--accent);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}

.dest-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.dest-card__sub {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.7;
}

.dest-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: var(--gap-sm);
  border-top: 1px solid var(--border);
}

.dest-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
}
.dest-card__price small { color: var(--ink-soft); }

.dest-card__link {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   EXPERIENCES (Horizontal Scroll Strip)
   ============================================ */
.experiences { background: var(--paper); }

.experiences .container { margin-bottom: var(--gap-lg); }

.exp-scroll {
  display: flex;
  gap: var(--gap-md);
  padding: 0 clamp(1.5rem, 5vw, 4rem) var(--gap-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.exp-scroll::-webkit-scrollbar { display: none; }

.exp-card {
  flex: 0 0 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all var(--dur) var(--ease);
}

.exp-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.exp-card__img {
  height: 220px;
  overflow: hidden;
}

.exp-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.85);
}

.exp-card:hover .exp-card__img img { transform: scale(1.05); filter: saturate(1); }

.exp-card__body {
  padding: var(--gap-md);
  display: flex; flex-direction: column; gap: var(--gap-xs);
}

.exp-card__num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
}

.exp-card__body h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
}

.exp-card__body p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--paper); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap-md);
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  transition: border-color var(--dur) var(--ease);
}

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

.testi-card--accent {
  background: var(--ink);
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
}

.testi-card--accent .testi-card__quote,
.testi-card--accent .testi-card__name { color: #fff; }
.testi-card--accent .testi-card__trip { color: var(--accent); }

.testi-card__big-quote {
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  line-height: 0.6;
  color: rgba(166, 130, 65, 0.15);
  position: absolute;
  top: 24px; right: 24px;
}

.testi-card__quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  flex: 1;
}

.testi-card__author {
  display: flex; align-items: center; gap: var(--gap-sm);
  border-top: 1px solid var(--border);
  padding-top: var(--gap-md);
}

.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink);
}

.testi-card__trip {
  font-size: var(--text-xs);
  color: var(--accent);
  margin-top: 2px;
  letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #14161B;
  color: #fff;
  margin-top: var(--gap-2xl);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
}

/* Top row */
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--gap-xl);
  align-items: start;
  padding-bottom: var(--gap-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}
.footer__logo em { color: var(--accent); }

.footer__tagline {
  margin-top: 12px;
  font-size: var(--text-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer__cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--gap-lg);
}
.footer__cta-title em { color: var(--accent); font-style: italic; }

.footer__form {
  display: flex;
  gap: var(--gap-sm);
  max-width: 480px;
}

.footer__input {
  flex: 1;
  padding: 14px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  color: #fff;
  font-size: var(--text-sm);
  transition: border-color var(--dur) var(--ease);
}
.footer__input:focus { outline: none; border-color: var(--accent); }
.footer__input::placeholder { color: rgba(255,255,255,0.25); }

.footer__form .btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
  flex-shrink: 0;
}
.footer__form .btn--primary:hover { background: #fff; color: #000; }

/* Mid row */
.footer__mid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--gap-xl);
  align-items: center;
  position: relative;
}

.footer__nav {
  display: flex;
  gap: var(--gap-xl);
}

.footer__nav-col { display: flex; flex-direction: column; gap: 14px; }

.footer__nav-col h6 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.footer__nav-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--dur) var(--ease);
}
.footer__nav-col a:hover { color: var(--accent); }

/* Huge watermark brand text */
.footer__watermark {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  line-height: 1;
  font-weight: 600;
  color: rgba(255,255,255,0.02);
  text-align: center;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}

.footer__social {
  display: flex; flex-direction: column;
  gap: 14px;
  text-align: right;
}

.footer__social h6 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.footer__social-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--dur) var(--ease);
}
.footer__social-link:hover { color: var(--accent); }

/* Bottom row: legal */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--gap-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.footer__credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.developed-by {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 1px;
}

.brand-link {
  color: var(--accent);
  font-weight: 700;
  transition: color 0.3s var(--ease);
}
.brand-link:hover { color: #fff; }

.footer__legal {
  display: flex;
  gap: var(--gap-lg);
}

.footer__legal a {
  color: rgba(255,255,255,0.3);
  transition: color var(--dur) var(--ease);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   ANIMATION HELPERS (GSAP targets)
   ============================================ */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-in { opacity: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card--accent { display: none; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(80px + 3rem);
  }
  .hero__visual { order: -1; justify-content: center; }
  .hero__sub { margin: 0 auto var(--gap-lg); }
  .hero__ctas { justify-content: center; }
  .hero__stat--1 { left: 0; top: 10%; }
  .hero__stat--2 { right: 0; bottom: 5%; }
  .arch { max-width: 340px; }

  .dest-grid { grid-template-columns: 1fr; }
  .dest-stack { flex-direction: row; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .footer__watermark { display: none; }
  .footer__social { text-align: left; }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor { display: none; }
  a, button { cursor: pointer; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .dest-stack { flex-direction: column; }
  .testi-grid { grid-template-columns: 1fr; }

  .footer__form { flex-direction: column; }
  .footer__form .btn--primary { width: 100%; justify-content: center; }
  .footer__nav { flex-direction: column; gap: var(--gap-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
}
