@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --emerald: #1A5C45;
  --emerald-light: #2D8F6A;
  --deep-green: #0D3526;
  --cream: #F5EDD8;
  --cream-dark: #E8D9B8;
  --dark: #080F0A;
  --dark-mid: #0E1A12;
  --text-light: #D4C9A8;
  --text-muted: #8A7E60;
  --white: #FFFFFF;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; 
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.visible { opacity: 1; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(201, 168, 76, 0.1);
  z-index: 10001;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.scroll-progress.active {
  transform: translateY(0);
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 55px;
  height: 55px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--transition);
  opacity: 0.6;
}

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--transition), transform 1s var(--transition);
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: pulseText 2s ease-in-out infinite;
}

.loader-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1rem;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin-top: 3rem;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loadProgress 2.5s var(--transition-slow) forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulseText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition);
}

nav.scrolled {
  background: rgba(8, 15, 10, 0.92);
  backdrop-filter: blur(20px);
  padding: 1.2rem 4%;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--cream);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em;
  transition: all 0.4s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== HERO ===== */
/* ===== HERO — CINEMATIC LEFT-ALIGNED ===== */
#hero {
  height: 100vh;
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-back {
  background-image: url('../pictures/wallpaperflare.com_wallpaper.jpg');
  filter: blur(3px) saturate(0.8);
  transform: scale(1.15);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

.hero-bg-front {
  background-image: url('../pictures/wallpaperflare.com_wallpaper.jpg');
  background-size: cover;
  transform: scale(1.05);
  animation: heroZoom2 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.15) translate(0, 0); }
  100% { transform: scale(1.2) translate(-1%, -1%); }
}
@keyframes heroZoom2 {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.1) translate(0.5%, 0.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(8,15,10,0.88) 0%, rgba(8,15,10,0.65) 35%, rgba(8,15,10,0.2) 65%, rgba(8,15,10,0.35) 100%),
    linear-gradient(180deg, rgba(8,15,10,0.5) 0%, rgba(8,15,10,0.1) 35%, rgba(8,15,10,0.65) 80%, rgba(8,15,10,0.95) 100%),
    radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 60px rgba(8,15,10,0.5);
  z-index: 1;
  pointer-events: none;
}

/* Animated Frame */
.hero-frame {
  position: absolute;
  inset: 2rem;
  z-index: 2;
  pointer-events: none;
}
.hero-frame-line { position: absolute; background: rgba(201,168,76,0.15); }
.hero-frame-top, .hero-frame-bottom {
  height: 1px; left: 0; right: 0;
  transform: scaleX(0);
  animation: frameExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.hero-frame-top { top: 0; transform-origin: left; }
.hero-frame-bottom { bottom: 0; transform-origin: right; }
.hero-frame-left, .hero-frame-right {
  width: 1px; top: 0; bottom: 0;
  transform: scaleY(0);
  animation: frameExpandV 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}
.hero-frame-left { left: 0; transform-origin: top; }
.hero-frame-right { right: 0; transform-origin: bottom; }
@keyframes frameExpand { to { transform: scaleX(1); } }
@keyframes frameExpandV { to { transform: scaleY(1); } }

/* Vertical Side Text */
.hero-vertical-text {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 1.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.12);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}

/* Glowing Orb */
.hero-orb {
  position: absolute;
  top: 18%;
  right: 12%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 35%, transparent 65%);
  z-index: 2;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite, orbPulse 4s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -35px); }
  50% { transform: translate(-15px, -55px); }
  75% { transform: translate(25px, -20px); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating Particles */
.hero-particles-layer {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-particle-float {
  position: absolute;
  left: var(--x);
  bottom: -10px;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise var(--dur) ease-in-out var(--delay) infinite;
}
.hero-particle-float::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: radial-gradient(circle, rgba(201,168,76,0.5), transparent);
  border-radius: 50%;
}
@keyframes particleRise {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.3); }
}

/* ===== HERO LAYOUT — LEFT + RIGHT ===== */
.hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 6%;
  gap: 4rem;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Accent Line */
.hero-accent-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
  margin-bottom: 2rem;
  animation: accentExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
@keyframes accentExpand { to { width: 80px; } }

.hero-side-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideRight 0.8s var(--transition-slow) 0.3s forwards;
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-coord, .hero-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(201,168,76,0.6);
  text-transform: uppercase;
}
.hero-divider-v {
  width: 30px; height: 1px;
  background: rgba(201,168,76,0.3);
}

/* Tag */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideRight 0.8s var(--transition-slow) 0.5s forwards;
}
.hero-tag-text {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.hero-tag-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Title — Letter animation */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-title-line {
  display: flex;
  overflow: hidden;
  position: relative;
}
.hero-title-em {
  font-style: italic;
  color: var(--gold);
  margin-top: 0.1em;
}
.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotateX(40deg);
  animation: letterReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.6s + var(--i) * 0.04s);
  text-shadow: 0 0 60px rgba(201,168,76,0.1);
}
.hero-title-em .hero-title-word {
  animation-delay: calc(0.9s + var(--i) * 0.04s);
  text-shadow: 0 0 80px rgba(201,168,76,0.2);
}
@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* Shimmer on title */
.hero-title-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.08), transparent);
  animation: titleShimmer 4s ease-in-out 2s infinite;
}
@keyframes titleShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  opacity: 0;
  text-align: left;
  animation: slideRight 1s var(--transition-slow) 1.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  animation: slideRight 1s var(--transition-slow) 1.6s forwards;
}

/* ===== RIGHT: Feature Card ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  opacity: 0;
  animation: heroRightReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}
@keyframes heroRightReveal {
  from { opacity: 0; transform: translateY(40px) translateX(20px); }
  to { opacity: 1; transform: translateY(0) translateX(0); }
}

.hero-feature-card {
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(8,15,10,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 320px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition);
}
.hero-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: cardLineGlow 3s ease-in-out infinite;
}
@keyframes cardLineGlow {
  0%, 100% { opacity: 0.5; width: 40%; }
  50% { opacity: 1; width: 100%; }
}
.hero-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-feature-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(201,168,76,0.05);
}
.hero-feature-badge {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.hero-feature-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-feature-stats {
  display: flex;
  gap: 1.5rem;
}
.hero-feature-stat {
  font-size: 0.65rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Stats Bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.08);
  background: rgba(8,15,10,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: slideUp 1s var(--transition-slow) 2.2s forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.hero-stat-label {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}
.hero-stat-divider {
  width: 1px; height: 30px;
  background: rgba(201,168,76,0.15);
}

/* Scroll Indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}
.scroll-text {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
}

/* Buttons */
.btn-primary {
  padding: 1.1rem 3rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--dark); transform: scale(1.05); box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3); }

.btn-ghost {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.btn-ghost .arrow {
  width: 50px; height: 1px;
  background: var(--cream);
  position: relative;
  transition: width 0.4s var(--transition);
}
.btn-ghost .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--cream);
  border-top: 1px solid var(--cream);
  transform: rotate(45deg);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover .arrow { width: 70px; background: var(--gold); }
.btn-ghost:hover .arrow::after { border-color: var(--gold); }

/* 3D Canvas */
#hero-3d {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero-layout { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-right { align-items: flex-start; width: 100%; }
  .hero-feature-card { max-width: 100%; }
  .hero-stats-bar { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
  .hero-layout { padding: 0 5%; }
  .hero-side-info { display: none; }
  .hero-stats-bar { gap: 1.2rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-frame { inset: 1rem; }
  .hero-actions { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hero-vertical-text { display: none; }
  .hero-orb { display: none; }
  .hero-right { display: none; }
  .hero-content { padding: 0; }
}

/* ===== SECTION STYLES ===== */
section { position: relative; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ===== INTRO SECTION ===== */
#intro {
  padding: 10rem 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.intro-left .section-title { margin-bottom: 2.5rem; }

.intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intro-right {
  position: relative;
  height: 600px;
}

.intro-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  filter: sepia(20%);
  transition: transform 0.8s var(--transition-slow);
}

.intro-img-main:hover {
  transform: scale(1.02);
}

.intro-img-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  filter: sepia(20%);
  border: 4px solid var(--dark);
  transition: transform 0.8s var(--transition-slow);
}

.intro-img-accent:hover {
  transform: scale(1.05) translate(-5px, -5px);
}

.intro-quote-badge {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--deep-green);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1.5rem;
  width: 45%;
  z-index: 2;
  transition: transform 0.5s var(--transition);
}

.intro-quote-badge:hover {
  transform: translateY(-50%) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-quote-badge p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1.6;
}

/* ===== CITIES SECTION ===== */
#cities {
  padding: 8rem 0;
  background: var(--dark-mid);
  overflow: hidden;
}

.cities-header {
  padding: 0 6%;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cities-header-right {
  max-width: 380px;
  text-align: right;
}

.cities-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Horizontal scroll container */
.cities-track-wrapper {
  overflow-x: auto;
  padding: 0 6% 3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  cursor: grab;
}

.cities-track-wrapper:active { cursor: grabbing; }
.cities-track-wrapper::-webkit-scrollbar { height: 2px; }
.cities-track-wrapper::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.cities-track-wrapper::-webkit-scrollbar-thumb { background: var(--gold); }

.cities-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-bottom: 1rem;
}

.city-card {
  width: 380px;
  height: 560px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: none;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.city-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) brightness(0.8);
  transition: transform 0.7s var(--transition), filter 0.7s;
}

.city-card:hover .city-card-img {
  transform: scale(1.07);
  filter: sepia(10%) brightness(1);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,10,0.95) 0%, rgba(8,15,10,0.2) 50%, transparent 100%);
  transition: background 0.5s;
}

.city-card:hover .city-card-overlay {
  background: linear-gradient(to top, rgba(8,15,10,0.98) 0%, rgba(8,15,10,0.5) 60%, rgba(8,15,10,0.1) 100%);
}

.city-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
}

.city-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.city-province {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.city-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition), opacity 0.5s;
  opacity: 0;
}

.city-card:hover .city-desc {
  max-height: 100px;
  opacity: 1;
}

.city-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.2rem;
  transition: all 0.3s ease;
}

.city-card:hover .city-tag {
  background: var(--gold);
  color: var(--dark);
}

/* ===== EXPERIENCES SECTION ===== */
#experiences {
  padding: 10rem 6%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 5rem;
}

.exp-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
}

.exp-card.large { grid-row: span 2; height: 700px; }
.exp-card.medium { height: 330px; }

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) brightness(0.75);
  transition: transform 0.8s var(--transition), filter 0.5s;
}

.exp-card:hover img {
  transform: scale(1.05);
  filter: sepia(5%) brightness(0.9);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,53,38,0.6) 0%, transparent 60%);
}

.exp-card-body {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
}

.exp-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  animation: bounceIcon 3s ease-in-out infinite;
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.exp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.exp-card-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--transition);
}

.exp-card:hover .exp-card-text {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FEATURED PLACES ===== */
#featured {
  padding: 10rem 6%;
  background: var(--dark-mid);
  position: relative;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.place-card {
  position: relative;
  cursor: none;
  transform-style: preserve-3d;
}

.place-card-img-wrap {
  overflow: hidden;
  height: 320px;
  position: relative;
}

.place-card-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(201,168,76,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.place-card:hover .place-card-img-wrap::before {
  opacity: 1;
}

.place-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%);
  transition: transform 0.7s var(--transition), filter 0.5s;
}

.place-card:hover .place-card-img-wrap img {
  transform: scale(1.08);
  filter: sepia(0%);
}

.place-region {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.place-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.1;
  transition: color 0.3s;
}

.place-card:hover .place-name {
  color: var(--gold);
}

.place-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.place-link {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: gap 0.3s;
}

.place-link::after {
  content: '→';
  transition: transform 0.3s;
}

.place-card:hover .place-link { gap: 1.2rem; }
.place-card:hover .place-link::after { transform: translateX(4px); }

/* ===== FULL-SCREEN QUOTE ===== */
#quote-section {
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(8,15,10,0.75), rgba(8,15,10,0.75)),
    url('https://images.unsplash.com/photo-1595815771614-ade9d652a65d?w=1800&q=80&auto=format') center/cover no-repeat;
  transform: scale(1.1);
  transition: transform 0.1s linear;
  will-change: transform;
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem 6%;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  line-height: 0;
  opacity: 0.3;
  margin-bottom: 2rem;
  display: block;
  animation: quoteMarkPulse 4s ease-in-out infinite;
}

@keyframes quoteMarkPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.quote-attribution {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== SEASONS / BEST TIME ===== */
#seasons {
  padding: 10rem 6%;
  background: var(--dark);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border: 1px solid rgba(201,168,76,0.15);
}

.season-card {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.season-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.season-card:hover::before {
  opacity: 1;
}

.season-card:last-child { border-right: none; }
.season-card:hover { 
  background: rgba(201,168,76,0.05); 
  transform: translateY(-5px);
}

.season-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.4s var(--transition);
}

.season-card:hover .season-icon {
  transform: scale(1.2) rotate(5deg);
}

.season-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.season-months {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.season-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.season-best {
  font-size: 0.7rem;
  color: var(--text-light);
}

.season-best strong {
  color: var(--gold-light);
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* ===== TRAVEL TIPS ===== */
#tips {
  padding: 10rem 6%;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}

#tips::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tips-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.tips-left-col {
  position: sticky;
  top: 8rem;
}

.tips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  opacity: 1 !important;
  visibility: visible !important;
}

.tip-item {
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(13, 53, 38, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--transition);
}

.tip-item:hover::before {
  height: 100%;
}

.tip-item:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.tip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.3);
  margin-bottom: 1rem;
  line-height: 1;
}

.tip-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.tip-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===== GALLERY STRIP ===== */
#gallery {
  overflow: hidden;
  background: var(--dark-mid);
  padding: 6rem 0;
  position: relative;
}

.gallery-title {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 6%;
}

.marquee-wrapper { 
  overflow: hidden; 
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark-mid) 0%, transparent 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark-mid) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

.marquee-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  filter: sepia(20%) brightness(0.85);
  flex-shrink: 0;
  transition: filter 0.5s, transform 0.5s;
}

.marquee-img:hover {
  filter: sepia(0%) brightness(1);
  transform: scale(1.03);
}

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

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 6rem 6% 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand .nav-logo { font-size: 2rem; display: block; margin-bottom: 1.5rem; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-links a:hover { 
  color: var(--cream); 
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Cinematic Made By Credit */
.made-by {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.made-by::before,
.made-by::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.6;
}

.made-by::before {
  left: 0;
}

.made-by::after {
  right: 0;
}

.maker-name {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  position: relative;
  display: inline-block;
}

.maker-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.footer-socials a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.footer-socials a:hover { 
  color: var(--gold); 
}

.footer-socials a:hover::after {
  width: 100%;
}

/* Flag accent */
.pk-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--transition-slow), transform 0.9s var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--transition-slow), transform 0.9s var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--transition-slow), transform 0.9s var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-5deg) translateY(30px);
  transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
}

.reveal-rotate.visible {
  opacity: 1;
  transform: rotate(0) translateY(0);
}

/* Clip path reveal animation */
.reveal-clip {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--transition-slow), opacity 0.5s;
}

.reveal-clip.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #intro { grid-template-columns: 1fr; gap: 4rem; }
  .intro-right { height: 400px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.large { grid-row: span 1; height: 400px; }
  .exp-card.medium { height: 300px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .season-card { border-bottom: 1px solid rgba(201,168,76,0.15); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .tips-inner { grid-template-columns: 1fr; }
  .tips-left-col { position: relative; top: 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cuisine-grid { grid-template-columns: 1fr 1fr; }
  .adventure-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.1em; }
  .featured-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .tips-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .hero-content { padding: 0; }
  .cities-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cities-header-right { text-align: left; }
  .intro-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .city-card { width: 300px; height: 450px; }
  .cursor, .cursor-follower, .cursor-dot { display: none; }
  #cursor-trail { display: none; }
  .numbers-grid { grid-template-columns: 1fr; }
  .cuisine-grid { grid-template-columns: 1fr; }
  .adventure-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE NAV ===== */
.nav-mobile-close {
  display: none;
  position: fixed;
  top: 2rem;
  right: 4%;
  z-index: 1000;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: none;
}

/* ===== FLOATING ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.float-delay-1 { animation-delay: 1s; }
.float-delay-2 { animation-delay: 2s; }
.float-delay-3 { animation-delay: 3s; }

/* ===== GLOW EFFECTS ===== */
.glow {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3), 0 0 40px rgba(201, 168, 76, 0.1);
}

.glow-text {
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.5), 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ===== PARALLAX ENHANCED ===== */
.parallax-slow {
  will-change: transform;
  transition: transform 0.1s linear;
}

.parallax-medium {
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.parallax-fast {
  will-change: transform;
  transition: transform 0.08s linear;
}

/* ===== SMOOTH SCROLL LENIS OVERRIDES ===== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


/* ================================================================
   NEW SECTIONS — 3D Hero, Dividers, Adventures, Map, Numbers, 
   Cuisine, Testimonials, Enhanced Cursor Trail
   ================================================================ */

/* ===== 3D HERO CANVAS ===== */
#hero-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== CURSOR TRAIL CANVAS ===== */
#cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  pointer-events: none;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 6%;
  opacity: 0.4;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.divider-diamond {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
}

/* ===== FLOATING TEXT BAND ===== */
.floating-text-band {
  overflow: hidden;
  padding: 2.5rem 0;
  background: rgba(201,168,76,0.03);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.floating-text-track {
  display: flex;
  white-space: nowrap;
  animation: floatText 30s linear infinite;
}

.floating-text-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,0.25);
  letter-spacing: 0.15em;
}

@keyframes floatText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ADVENTURE ACTIVITIES SECTION ===== */
#adventures {
  padding: 10rem 6%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.adventure-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.1);
  background: rgba(201,168,76,0.02);
  text-align: center;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}

.adventure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--transition);
}

.adventure-card:hover::before {
  width: 100%;
}

.adventure-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  background: rgba(201,168,76,0.06);
}

.adventure-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.5s var(--transition);
}

.adventure-card:hover .adventure-icon {
  transform: scale(1.15) translateY(-5px);
}

.adventure-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.adventure-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== PAKISTAN MAP SECTION ===== */
#pakistan-map {
  padding: 10rem 6%;
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}

.map-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.map-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
}

.map-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 4px 20px rgba(0,0,0,0.3));
}

.map-container .province {
  stroke: rgba(8,15,10,0.6);
  stroke-width: 0.8;
  stroke-linejoin: round;
  cursor: pointer;
  transition: filter 0.3s ease, stroke-width 0.3s;
}

.map-container .province:hover {
  filter: brightness(1.25) drop-shadow(0 0 12px rgba(201,168,76,0.4));
  stroke-width: 1.5;
  stroke: var(--gold);
}

.map-container .label {
  pointer-events: none;
  fill: var(--cream);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-anchor: middle;
  dominant-baseline: central;
  paint-order: stroke;
  stroke: rgba(8,15,10,0.5);
  stroke-width: 2.5px;
  stroke-linejoin: round;
}

.map-tooltip {
  position: fixed;
  background: rgba(8,15,10,0.95);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 100;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== BY THE NUMBERS SECTION ===== */
#by-numbers {
  padding: 10rem 6%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.numbers-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 700;
  color: rgba(201,168,76,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.number-card {
  padding: 3rem 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
  background: rgba(201,168,76,0.02);
}

.number-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--transition);
}

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

.number-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: rgba(201,168,76,0.05);
}

.number-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.number-divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.4;
}

.number-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.number-detail {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===== CUISINE SECTION ===== */
#cuisine {
  padding: 10rem 6%;
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.cuisine-card {
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  transition: all 0.5s var(--transition);
  background: var(--dark);
}

.cuisine-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cuisine-img {
  height: 220px;
  overflow: hidden;
}

.cuisine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.cuisine-card:hover .cuisine-img img {
  transform: scale(1.08);
}

.cuisine-body {
  padding: 2rem;
}

.cuisine-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.cuisine-body p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.cuisine-region {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
  padding: 10rem 6%;
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.testimonial-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(8,15,10,0.5);
  transition: all 0.5s var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-origin {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ===== MAGNETIC BUTTON ===== */
.magnetic {
  transition: transform 0.3s var(--transition);
}

/* ===== RESPONSIVE for new sections ===== */
@media (max-width: 1024px) {
  .cuisine-grid { grid-template-columns: 1fr 1fr; }
  .adventure-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cuisine-grid { grid-template-columns: 1fr; }
  .adventure-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  #cursor-trail { display: none; }
  .map-container { width: 100%; }
  .map-legend { gap: 1rem; }
  .legend-item { font-size: 0.6rem; }
  .number-value { font-size: 3rem; }
}

/* ================================================================
   ALL CONTENT VISIBLE BY DEFAULT — AOS handles entrance animations
   ================================================================ */

/* ===== TABLET (max-width: 1024px) — Enhanced ===== */
@media (max-width: 1024px) {
  section { overflow-x: hidden; }

  #intro { padding: 6rem 5%; gap: 4rem; }
  #experiences { padding: 6rem 5%; }
  #featured { padding: 6rem 5%; }
  #adventures { padding: 6rem 5%; }
  #by-numbers { padding: 6rem 5%; }
  #cuisine { padding: 6rem 5%; }
  #testimonials { padding: 6rem 5%; }
  #seasons { padding: 6rem 5%; }
  #tips { padding: 6rem 5%; }
  #pakistan-map { padding: 6rem 5%; }

  .intro-right { height: 350px; }
  .intro-img-main { width: 70%; height: 75%; }
  .intro-img-accent { width: 45%; height: 45%; }
  .intro-quote-badge { width: 50%; padding: 1.2rem; }
  .intro-quote-badge p { font-size: 0.95rem; }

  .testimonials-grid { gap: 1.5rem; }

  .exp-card.large { height: 350px; }
  .exp-card.medium { height: 260px; }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* --- Global --- */
  html, body { overflow-x: hidden; }
  body { cursor: auto; }
  section { overflow-x: hidden; }

  .section-label { font-size: 0.55rem; letter-spacing: 0.4em; margin-bottom: 1rem; }
  .section-title { font-size: clamp(2rem, 8vw, 3.5rem) !important; }

  /* --- Navigation --- */
  nav { padding: 1.2rem 5%; }
  nav.scrolled { padding: 1rem 5%; }
  .nav-logo { font-size: 1.4rem; }

  .hamburger { display: flex !important; z-index: 1001; position: relative; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-links {
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    padding: 2rem;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links.open a {
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    color: var(--cream);
  }
  .nav-links.open a:hover { color: var(--gold); }
  .nav-links.open .nav-cta {
    padding: 1rem 2.5rem;
    font-size: 0.75rem !important;
    margin-top: 1rem;
  }

  /* --- Hero --- */
  #hero { min-height: 100vh; min-height: 100dvh; }

  .hero-layout {
    padding: 0 5% !important;
    flex-direction: column !important;
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem) !important;
    margin-bottom: 1.5rem;
  }

  .hero-desc {
    font-size: 0.85rem !important;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 100%;
  }

  .hero-tag-text { font-size: 0.5rem; letter-spacing: 0.35em; }

  .hero-side-info { display: none !important; }
  .hero-vertical-text { display: none !important; }
  .hero-orb { display: none !important; }
  .hero-right { display: none !important; }

  .hero-frame { inset: 0.8rem !important; }

  .hero-actions {
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: flex-start;
    width: 100%;
  }

  .btn-primary {
    padding: 1rem 2.2rem;
    font-size: 0.65rem;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .btn-ghost { font-size: 0.65rem; }
  .btn-ghost .arrow { width: 35px; }

  .hero-scroll-hint {
    bottom: 1.5rem;
    left: 50% !important;
    transform: translateX(-50%);
  }

  .hero-accent-line { margin-bottom: 1.2rem; }

  #hero-3d { opacity: 0.3 !important; }

  /* --- Intro --- */
  #intro {
    padding: 5rem 5% !important;
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .intro-left .section-title { margin-bottom: 1.5rem; }
  .intro-text { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }

  .intro-stats {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.55rem; letter-spacing: 0.15em; }

  .intro-right {
    height: 300px !important;
    margin: 0 auto;
    width: 100%;
  }
  .intro-img-main { width: 75%; height: 80%; }
  .intro-img-accent { width: 45%; height: 45%; }
  .intro-quote-badge {
    width: 60% !important;
    padding: 1rem;
  }
  .intro-quote-badge p { font-size: 0.85rem; line-height: 1.5; }

  /* --- Floating Text Band --- */
  .floating-text-band { padding: 1.5rem 0; }
  .floating-text-track span { font-size: 1.2rem; }

  /* --- Cities --- */
  #cities { padding: 5rem 0; }
  .cities-header {
    padding: 0 5%;
    margin-bottom: 3rem;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem;
  }
  .cities-header-right { text-align: left !important; max-width: 100%; }
  .cities-desc { font-size: 0.85rem; }

  .cities-track-wrapper { padding: 0 5% 2rem; }
  .city-card {
    width: 280px !important;
    height: 420px !important;
    flex-shrink: 0;
  }
  .city-name { font-size: 1.8rem; }
  .city-desc { font-size: 0.78rem; max-height: 60px; opacity: 0.8; }
  .city-card-body { padding: 2rem 1.5rem; }
  .city-number { font-size: 0.75rem; }

  /* --- Experiences --- */
  #experiences { padding: 5rem 5% !important; }
  .exp-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
    margin-top: 3rem;
  }
  .exp-card.large { grid-row: span 1 !important; height: 300px !important; }
  .exp-card.medium { height: 250px !important; }
  .exp-card-body { bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
  .exp-card-title { font-size: 1.5rem; }
  .exp-card-text { opacity: 1 !important; transform: translateY(0) !important; font-size: 0.78rem; }
  .exp-card-icon { font-size: 1.2rem; margin-bottom: 0.8rem; }

  /* --- Adventures --- */
  #adventures { padding: 5rem 5% !important; }
  .adventure-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
    margin-top: 3rem;
  }
  .adventure-card { padding: 2rem 1.2rem; }
  .adventure-icon { font-size: 2rem; margin-bottom: 1rem; }
  .adventure-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
  .adventure-card p { font-size: 0.72rem; line-height: 1.6; }

  /* --- Featured Places --- */
  #featured { padding: 5rem 5% !important; }
  .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin-top: 3rem;
  }
  .place-card-img-wrap { height: 220px; }
  .place-name { font-size: 1.5rem; }
  .place-desc { font-size: 0.8rem; margin-bottom: 1rem; }

  /* --- Quote --- */
  #quote-section { min-height: 60vh; height: auto; padding: 4rem 0; }
  .quote-content { padding: 2rem 5%; }
  .quote-mark { font-size: 5rem; margin-bottom: 1rem; }
  .quote-text { font-size: clamp(1.4rem, 5vw, 2.5rem) !important; line-height: 1.4; margin-bottom: 1.5rem; }
  .quote-attribution { font-size: 0.55rem; letter-spacing: 0.3em; }

  /* --- Map --- */
  #pakistan-map { padding: 5rem 5% !important; }
  .map-container { width: 100% !important; }
  .map-subtitle { font-size: 0.85rem; margin-top: 1rem; }
  .map-legend {
    gap: 0.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .legend-item { font-size: 0.55rem; gap: 0.3rem; }
  .legend-dot { width: 8px; height: 8px; }

  /* --- Numbers --- */
  #by-numbers { padding: 5rem 5% !important; }
  .numbers-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
    margin-top: 3rem;
  }
  .number-card { padding: 2rem 1.2rem; }
  .number-value { font-size: 2.5rem !important; }
  .number-label { font-size: 0.65rem; letter-spacing: 0.1em; }
  .number-detail { font-size: 0.72rem; }
  .number-divider { margin: 1rem auto; }
  .numbers-bg-text { font-size: 6rem !important; }

  /* --- Cuisine --- */
  #cuisine { padding: 5rem 5% !important; }
  .cuisine-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .cuisine-img { height: 180px; }
  .cuisine-body { padding: 1.5rem; }
  .cuisine-body h3 { font-size: 1.2rem; }
  .cuisine-body p { font-size: 0.78rem; }

  /* --- Seasons --- */
  #seasons { padding: 5rem 5% !important; }
  .seasons-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
    margin-top: 3rem;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .season-card {
    padding: 2rem 1.5rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .season-card:last-child { border-bottom: none; }
  .season-icon { font-size: 2rem; margin-bottom: 1rem; }
  .season-name { font-size: 1.4rem; }
  .season-months { font-size: 0.6rem; }
  .season-desc { font-size: 0.78rem; }
  .season-best { font-size: 0.65rem; }

  /* --- Tips --- */
  #tips { padding: 5rem 5% !important; }
  .tips-inner {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .tips-left-col { position: relative !important; top: 0 !important; }
  .tips-list {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }
  .tip-item {
    padding: 1.5rem;
    background: rgba(13, 53, 38, 0.4);
  }
  .tip-num { font-size: 2rem; margin-bottom: 0.8rem; }
  .tip-title { font-size: 0.75rem; }
  .tip-text { font-size: 0.78rem; }

  /* --- Testimonials --- */
  #testimonials { padding: 5rem 5% !important; }
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-quote { font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .testimonial-card::before { font-size: 4rem; top: 0.5rem; right: 1rem; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 1rem; }
  .testimonial-name { font-size: 0.75rem; }
  .testimonial-origin { font-size: 0.6rem; }

  /* --- Gallery --- */
  #gallery { padding: 4rem 0; }
  .gallery-title { padding: 0 5%; margin-bottom: 2.5rem; }
  .marquee-img {
    width: 220px !important;
    height: 150px !important;
  }
  .marquee-wrapper::before,
  .marquee-wrapper::after { width: 60px; }

  /* --- Dividers --- */
  .section-divider { padding: 2.5rem 5%; }
  .divider-diamond { font-size: 0.9rem; }

  /* --- Footer --- */
  footer { padding: 4rem 5% 2rem; }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  .footer-brand .nav-logo { font-size: 1.6rem; }
  .footer-tagline { font-size: 0.95rem; max-width: 100%; }
  .footer-heading { margin-bottom: 1rem; }
  .footer-links a { font-size: 0.8rem; }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
  }
  .footer-copy { font-size: 0.7rem; }
  .made-by { font-size: 0.85rem; }
  .maker-name { font-size: 0.7rem; }
  .footer-socials {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-socials a { font-size: 0.6rem; }

  /* --- Cursor hidden on mobile --- */
  .cursor, .cursor-follower, .cursor-dot { display: none !important; }
  #cursor-trail { display: none !important; }

  /* --- Loader --- */
  .loader-logo { font-size: 2.5rem; }
  .loader-subtitle { font-size: 0.65rem; }
  .loader-bar { width: 150px; }

  /* --- Scroll Progress thinner --- */
  .scroll-progress { height: 2px; }
}

/* ===== SMALL PHONES (max-width: 480px) ===== */
@media (max-width: 480px) {

  .hero-title { font-size: clamp(2.4rem, 14vw, 3.5rem) !important; }
  .hero-desc { font-size: 0.8rem !important; line-height: 1.65; }
  .hero-tag-text { font-size: 0.45rem; letter-spacing: 0.3em; }

  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }

  .btn-primary { padding: 0.9rem 1.8rem; font-size: 0.6rem; }

  #intro { padding: 4rem 5% !important; }
  .intro-stats { gap: 0.8rem; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.5rem; letter-spacing: 0.1em; }

  .intro-right { height: 250px !important; }
  .intro-quote-badge { width: 65% !important; }
  .intro-quote-badge p { font-size: 0.75rem; }

  .city-card { width: 250px !important; height: 380px !important; }
  .city-name { font-size: 1.5rem; }

  .adventure-grid { grid-template-columns: 1fr !important; }
  .adventure-card { padding: 2rem 1.5rem; }

  .numbers-grid { grid-template-columns: 1fr !important; }
  .number-value { font-size: 3rem !important; }

  .exp-card.large { height: 260px !important; }
  .exp-card.medium { height: 220px !important; }

  .quote-text { font-size: 1.3rem !important; }
  .quote-mark { font-size: 4rem; }

  .season-card { padding: 1.5rem 1.2rem; }

  .marquee-img { width: 180px !important; height: 120px !important; }

  .floating-text-track span { font-size: 1rem; }

  .footer-socials a { font-size: 0.55rem; letter-spacing: 0.2em; }
}

/* ===== TOUCH DEVICES — Show hidden hover content ===== */
@media (hover: none) and (pointer: coarse) {
  .city-desc { max-height: 60px; opacity: 0.8; }
  .exp-card-text { opacity: 1; transform: translateY(0); }

  /* Remove hover transforms that feel janky on touch */
  .season-card:hover { transform: none; }
  .adventure-card:hover { transform: none; }
  .number-card:hover { transform: none; }
  .cuisine-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .tip-item:hover { transform: none; }
  .place-card:hover .place-name { color: var(--cream); }

  /* Better tap targets */
  .nav-links.open a { padding: 0.5rem 1rem; }
  .footer-links a { padding: 0.3rem 0; }
  .place-link { padding: 0.5rem 0; }
}

/* ===== LANDSCAPE PHONE ===== */
@media (max-height: 500px) and (orientation: landscape) {
  #hero { min-height: 100vh; }
  .hero-title { font-size: 2.5rem !important; margin-bottom: 1rem; }
  .hero-desc { font-size: 0.75rem !important; margin-bottom: 1.2rem; }
  .hero-accent-line { margin-bottom: 0.8rem; }
  .hero-tag { margin-bottom: 0.8rem; }
  .hero-scroll-hint { display: none; }
  .hero-frame { inset: 0.5rem !important; }
}

/* ===== SAFE AREA — Notch/Island phones ===== */
@supports (padding: env(safe-area-inset-top)) {
  nav { padding-top: max(1.2rem, env(safe-area-inset-top)); }
  footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
  .hero-scroll-hint { bottom: max(1.5rem, env(safe-area-inset-bottom)); }
}
