/* === VARIABLES === */
:root {
  --gold: #F5B731;
  --gold-light: #FFD166;
  --orange: #E87722;
  --navy: #0D1233;
  --navy-mid: #1E2547;
  --black: #080808;
  --white: #ffffff;
  --off-white: #F7F7F8;
  --light-gray: #F0F1F5;
  --mid-gray: #D1D5DB;
  --text-gray: #6B7280;
  --text-dark: #0D0D14;
  --surface: #FAFAFA;
  --surface-elevated: #FFFFFF;
  --glow-gold: rgba(245, 183, 49, 0.18);
  --glow-orange: rgba(232, 119, 34, 0.12);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(10px); opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.05s; }

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 36px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(245,183,49,0.35), 0 0 0 0 rgba(245,183,49,0);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(245,183,49,0.55), 0 0 0 4px rgba(245,183,49,0.12);
}
.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.7s ease;
}
.btn-primary.btn-large {
  font-size: 1rem;
  padding: 18px 48px;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 34px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-block;
  transition: all 0.25s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-ghost.btn-large {
  font-size: 1rem;
  padding: 17px 48px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  border-radius: 100px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(245,183,49,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(245,183,49,0.45) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.7);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mobile-call {
  margin: 8px 32px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black) !important;
  text-align: center;
  padding: 14px 32px !important;
  border-radius: 100px;
  font-weight: 700 !important;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/van-design.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.7) 35%,
    rgba(8,8,8,0.82) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 6s ease infinite;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(245,183,49,0.12) 0%, transparent 65%);
}
.hero-glow--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(232,119,34,0.1) 0%, transparent 65%);
  animation-delay: 3s;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 32px;
  animation: fadeUp 1s ease forwards;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-content h1 .gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot { animation: scrollDot 2s ease infinite; }

/* === STATS === */
.stats {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 44px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  color: var(--gold);
  font-size: 0.75em;
  vertical-align: super;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* === SECTION SHARED === */
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold); }
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header.light h2 { color: var(--white); }
.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

/* === SERVICES === */
.services {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.3), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, rgba(240,241,245,0.8), rgba(220,222,230,0.5));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,0.04);
}
.service-card {
  background: var(--white);
  padding: 44px 38px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 38px; right: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0), transparent);
  transition: background 0.3s ease;
}
.service-card:hover {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF0 100%);
}
.service-card:hover::after {
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.35), transparent);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--orange);
  position: relative;
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,183,49,0.08), rgba(232,119,34,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .service-icon::before { opacity: 1; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.service-card p {
  color: var(--text-gray);
  line-height: 1.75;
  font-size: 0.91rem;
}

/* === GALLERY === */
.gallery {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 100%);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8,8,8,0.5);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,183,49,0.25);
}

/* === VAN PROOF === */
.van-proof {
  padding: 120px 0;
  background: var(--off-white);
}
.van-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.van-photo {
  flex: 1.1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}
.van-photo img { width: 100%; object-fit: cover; display: block; }
.van-text { flex: 1; }
.van-text .eyebrow { display: block; }
.van-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.van-text p {
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.van-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.van-list li {
  color: var(--text-dark);
  font-size: 0.97rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.van-list li svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* === WHY US === */
.why-us {
  padding: 140px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,183,49,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease infinite;
}
.why-us::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.06);
}
.why-card {
  background: rgba(255,255,255,0.01);
  padding: 56px 36px;
  transition: background 0.3s ease;
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0), transparent);
  transition: background 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.04); }
.why-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.4), transparent);
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(245,183,49,0.25), rgba(232,119,34,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.why-card p {
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  font-size: 0.91rem;
}

/* === REVIEWS === */
.reviews {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.2), transparent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.review-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 64px rgba(0,0,0,0.1);
  border-color: rgba(245,183,49,0.15);
}
.stars {
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.review-card p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 0.96rem;
  flex: 1;
  font-style: italic;
  opacity: 0.85;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,18,51,0.25);
}
.reviewer strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
}
.reviewer span {
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* === BOOK === */
.book {
  padding: 160px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1233 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245,183,49,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.book-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.book-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.book-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-bottom: 48px;
  line-height: 1.7;
}
.book-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}
.footer-logo { height: 44px; width: auto; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

/* === MOBILE STICKY CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  padding: 12px 16px 20px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 12px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 100px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245,183,49,0.4);
}
.sticky-cta-call {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}
.sticky-cta-call:hover { border-color: var(--gold); color: var(--gold); }
.sticky-cta-call svg { width: 20px; height: 20px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .van-inner { flex-direction: column; gap: 48px; }
  .van-photo { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .hero-content h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .sticky-cta { display: flex; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4 / 3; }
  .gallery-item { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .stat { flex: 0 0 100%; }
  .book { padding: 100px 24px; }
  .btn-primary.btn-large, .btn-ghost.btn-large { width: 100%; text-align: center; }
  .book-actions { flex-direction: column; }
}
