/* ═══════════════════════════════════════════════════════════════════════
   DEETS TO YOU — $10k ULTRA-LUXURY DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Core Palette: Deepest blacks and slate grey off-blacks */
  --color-bg:           #050505;
  --color-bg-secondary: #0a0a0a;
  --color-bg-card:      rgba(255, 255, 255, 0.015);
  
  /* Text */
  --color-white:        #ffffff;
  --color-silver:       #a1a1aa;
  --color-muted:        #52525b;

  /* Brand Accents */
  --color-brand-cyan:   #00E5FF;
  --color-brand-blue:   #0055FF;
  
  /* Borders */
  --border-subtle:      rgba(255, 255, 255, 0.05);
  --border-focus:       rgba(0, 229, 255, 0.3);

  /* Gradients */
  --gradient-brand:     linear-gradient(135deg, var(--color-brand-blue), var(--color-brand-cyan));

  /* Typography */
  --font-display:       'Syne', 'Inter', sans-serif;
  --font-body:          'Outfit', 'Inter', sans-serif;

  /* Layout */
  --max-width:          1400px;
  --nav-h:              100px;
  --radius-sm:          4px;
  --radius-md:          12px;
  --radius-lg:          24px;
  --radius-pill:        999px;

  /* Animation */
  --ease-expo:          cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:           0.3s;
  --dur-base:           0.6s;
  --dur-slow:           1.2s;
}

/* ─── LIGHT THEME ────────────────────────────────────────────────────────── */
[data-theme="light"] {
  --color-bg:           #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-bg-card:      rgba(0, 0, 0, 0.05);
  --color-white:        #111111;
  --color-silver:       #444444;
  --color-muted:        #888888;
  --border-subtle:      rgba(0, 0, 0, 0.1);
  --border-focus:       rgba(0, 85, 255, 0.4);
}

[data-theme="light"] body {
  background-color: var(--color-bg);
  color: var(--color-silver);
}

[data-theme="light"] .nav-header {
  background: rgba(244, 244, 246, 0.85);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

[data-theme="light"] .nav-link,
[data-theme="light"] .drawer-link {
  color: #0a0a14 !important;
}

[data-theme="light"] .nav-toggle span {
  background: #0a0a14 !important;
}

[data-theme="light"] .drawer-close {
  color: #0a0a14 !important;
  border-color: rgba(0,0,0,0.1) !important;
}

[data-theme="light"] .glass-panel {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}

[data-theme="light"] .bento-card {
  background: rgba(255,255,255,0.5);
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .card-title,
[data-theme="light"] .section-title,
[data-theme="light"] .hero-headline,
[data-theme="light"] h1, [data-theme="light"] h2,
[data-theme="light"] h3, [data-theme="light"] h4 {
  color: #0a0a14;
}

[data-theme="light"] .stat-num {
  color: #0a0a14;
}

[data-theme="light"] .trusted-marquee {
  background: #eaeaee;
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .marquee-content span {
  color: rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .noise-overlay {
  opacity: 0.015;
}

[data-theme="light"] .accent-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .process-section {
  background: #eaeaee;
}

[data-theme="light"] .process-step {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .process-step h3 {
  color: #0a0a14;
}

[data-theme="light"] .location-section {
  background: #eaeaee;
}

[data-theme="light"] .detail-card {
  background: rgba(255,255,255,0.6);
}

[data-theme="light"] .detail-text h4 {
  color: #0a0a14;
}

[data-theme="light"] .site-footer {
  background: #dde0e8;
  border-top-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .map-overlay-click {
  background: rgba(244,244,246,0.6);
  color: #0a0a14;
}

[data-theme="light"] .theme-icon-dark  { display: none; }
[data-theme="light"] .theme-icon-light { display: inline; }
[data-theme="dark"]  .theme-icon-light { display: none; }
[data-theme="dark"]  .theme-icon-dark  { display: inline; }

/* Light Theme Visibility Overrides */
[data-theme="light"] .card-title,
[data-theme="light"] .card-index,
[data-theme="light"] .card-desc,
[data-theme="light"] h1, [data-theme="light"] h2, 
[data-theme="light"] h3, [data-theme="light"] h4 {
  color: #0a0a14 !important;
}

[data-theme="light"] .hero-headline,
[data-theme="light"] .hero-sub,
[data-theme="light"] .hero-sub span,
[data-theme="light"] .hero-eyebrow .gsap-reveal-text,
[data-theme="light"] .nav-link,
[data-theme="light"] .nav-logo-img {
  color: var(--color-white) !important;
}

/* Specific light mode section descriptions */
[data-theme="light"] .section-desc,
[data-theme="light"] .card-desc,
[data-theme="light"] .about-lead,
[data-theme="light"] .process-step p,
[data-theme="light"] .detail-text p,
[data-theme="light"] .review-text {
  color: #444450 !important;
}

[data-theme="light"] .nav-header {
  background: rgba(255, 255, 255, 0.8) !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

[data-theme="light"] .nav-link {
  color: #0a0a14 !important;
}

[data-theme="light"] .nav-logo-img {
  filter: none !important;
}

/* Hero is always dark background, so force its elements to stay light */
[data-theme="light"] #hero,
[data-theme="light"] #hero .gsap-reveal-text,
[data-theme="light"] #hero .gsap-fade-up,
[data-theme="light"] #hero .split-word,
[data-theme="light"] #hero h1,
[data-theme="light"] #hero p,
[data-theme="light"] #hero span {
  color: #ffffff !important;
}

[data-theme="light"] #hero .hero-sub {
  color: #cccccc !important;
}

[data-theme="light"] .gallery-item h4,
[data-theme="light"] .gallery-item p {
  color: #ffffff !important;
}

[data-theme="light"] .nav-logo-img {
  filter: invert(1) brightness(0.1) !important;
}

[data-theme="light"] .nav-header.scrolled .nav-logo-img {
  filter: invert(1) brightness(0.1) !important;
}

/* Ensure the logo is readable in the hero section overlay if the header is transparent */
[data-theme="light"] .nav-header:not(.scrolled) .nav-logo-img {
  filter: none !important;
}

[data-theme="light"] .nav-header:not(.scrolled) .nav-link {
  color: #ffffff !important;
}

[data-theme="light"] .nav-header:not(.scrolled) .nav-toggle span {
  background: #ffffff !important;
}



[data-theme="light"] .form-field input,
[data-theme="light"] .form-field select {
  color: #0a0a14 !important;
  font-weight: 500;
  border-bottom: 2px solid rgba(0,0,0,0.1) !important;
}

[data-theme="light"] .form-field label {
  color: #666e7a !important;
}

[data-theme="light"] .form-field input:focus ~ label,
[data-theme="light"] .form-field input:not(:placeholder-shown) ~ label {
  color: var(--color-brand-cyan) !important;
}

[data-theme="light"] .info-block a,
[data-theme="light"] .contact-header p {
  color: var(--color-white);
}

[data-theme="light"] .cta-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

[data-theme="light"] .glass-panel {
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

body {
  background-color: var(--color-bg);
  color: var(--color-silver);
  font-family: var(--font-body);
  line-height: 1.6;
  cursor: none; /* Desktop only - handled in main.js */
}

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

/* ─── ENHANCEMENTS ───────────────────────────────────────────────────────── */
/* Premium noise texture */
.noise-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5vw;
}

.accent-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: var(--color-bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.glass-heavy {
  background: linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.5) 40%, rgba(5,5,5,0.92) 100%);
}

.glass-light {
  background: linear-gradient(180deg, rgba(5,5,5,0.05) 0%, rgba(5,5,5,0.2) 30%, rgba(5,5,5,0.75) 70%, rgba(5,5,5,0.92) 100%);
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-brand-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor.is-hovering { width: 0; background: transparent; }
.cursor-trail.is-hovering { width: 80px; height: 80px; border-color: var(--color-brand-cyan); background: rgba(0,229,255,0.05); backdrop-filter: blur(4px); }

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all var(--dur-base) var(--ease-expo);
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  height: 90px;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(30px);
  border-bottom-color: rgba(255, 255, 255, 0.03);
}

.nav-inner {
  width: 100%; max-width: var(--max-width);
  margin: 0 auto; padding: 0 5vw;
  display: flex; justify-content: space-between; align-items: center;
}

/* nav-logo-img image logo */
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(1.1);
  transition: filter var(--dur-fast), transform var(--dur-fast);
}

.nav-logo-img:hover {
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  line-height: 1;
  order: 3;
}
.theme-toggle:hover {
  border-color: var(--color-brand-cyan);
  background: rgba(0, 229, 255, 0.06);
}
.theme-icon {
  pointer-events: none;
}
.theme-icon-light { display: none; }

.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-silver);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color var(--dur-fast);
}
.nav-link:hover { color: var(--color-white); }

.nav-cta {
  padding: 16px 32px;
  background: var(--color-white);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease-expo);
}
.nav-cta:hover { transform: scale(1.03) translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }

/* ─── CTA BUTTONS ────────────────────────────────────────────────────────── */
.cta-primary {
  position: relative;
  display: inline-flex;
  padding: 24px 56px;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-expo);
  overflow: hidden;
}

.btn-glow {
  position: absolute; inset: 0;
  background: var(--gradient-brand);
  filter: blur(15px); opacity: 0;
  transition: opacity 0.4s; z-index: -1;
}
.cta-primary:hover .btn-glow { opacity: 0.8; }

.cta-outline {
  display: inline-flex;
  padding: 18px 46px;
  border: 1px solid var(--border-subtle);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.cta-outline:hover {
  border-color: var(--color-brand-cyan);
  background: rgba(0,229,255,0.05);
}

.cta-play {
  display: inline-flex; align-items: center; gap: 1rem;
  color: var(--color-white);
  font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.play-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: all 0.3s;
}
.cta-play:hover .play-icon { background: var(--color-white); color: var(--color-bg); transform: scale(1.1); }

/* Secondary CTA Button */
.cta-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-brand-cyan);
  transition: all var(--dur-fast) var(--ease-expo);
}
.cta-secondary:hover {
  background: var(--color-brand-cyan);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

/* Info Link — visible email & phone */
.info-link {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--color-white);
  font-weight: 600;
  display: inline-block;
  word-break: break-all;
  transition: color 0.3s;
}
.info-link:hover { color: var(--color-brand-cyan); }

/* Contact quick buttons */
.contact-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* ─── MOBILE CTA BAR ────────────────────────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 12px 16px 20px;
  background: rgba(5,5,5,0.97);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 12px;
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.25s;
}
.mobile-cta-call {
  background: transparent;
  border: 2px solid var(--color-brand-cyan);
  color: var(--color-white);
}
.mobile-cta-call:hover { background: rgba(0,229,255,0.12); }
.mobile-cta-quote {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
}
.mobile-cta-quote:hover { opacity: 0.92; transform: scale(0.98); }

/* ─── MOBILE DRAWER MENU ─────────────────────────────────────────────────── */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active { opacity: 1; }

.mobile-menu-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-expo);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 32px;
}
.mobile-menu-drawer.active { transform: translateX(0); }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-logo { height: 40px; width: auto; }
.drawer-close {
  width: 40px; height: 40px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  background: none; cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.drawer-close:hover { background: rgba(255,255,255,0.08); border-color: var(--color-brand-cyan); }
.drawer-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.drawer-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.25s, padding-left 0.25s;
}
.drawer-link:hover { color: var(--color-brand-cyan); padding-left: 12px; }
.drawer-link-quote {
  color: var(--color-brand-cyan) !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom-color: rgba(0, 229, 255, 0.15) !important;
}
.drawer-actions { padding-top: 8px; }

/* Nav Toggle Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 120px;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-img, .hero-fallback-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.2) contrast(1.1);
  transform: scale(1.05);
  transition: opacity 0.5s ease;
}

.hero-fallback-img.fade-out, .pc-fallback-img.fade-out {
  opacity: 0;
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(5,5,5,1) 100%);
}

.hero-container {
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; min-height: calc(100vh - var(--nav-h));
}

.hero-content { max-width: 900px; margin-top: auto; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 24px;
  font-family: var(--font-body); font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--color-silver); margin-bottom: 32px;
}
.glass-line { width: 60px; height: 1px; background: rgba(255,255,255,0.3); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 40px;
}
.headline-part { display: block; overflow: hidden; }

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-silver);
  max-width: 560px; line-height: 1.6; margin-bottom: 48px;
}

.hero-actions { display: flex; align-items: center; gap: 40px; }

.hero-bottom-bar {
  margin-top: auto; padding-bottom: 40px; padding-top: 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
}

.hero-stats { display: flex; gap: 80px; }
.stat-top { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--color-white); line-height: 1; }
.stat-plus { color: var(--color-brand-cyan); font-size: 1.5rem; vertical-align: top; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-muted); margin-top: 8px; }

.hero-scroll-prompt { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.scroll-txt { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-silver); }
.scroll-track { width: 1px; height: 60px; background: var(--border-subtle); position: relative; }
.scroll-thumb {
  position: absolute; top: 0; left: -1px; width: 3px; height: 20px;
  background: var(--color-brand-cyan);
  animation: scrollDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.trusted-marquee {
  padding: 40px 0; border-bottom: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.01); overflow: hidden;
}
.marquee-track { width: 100%; overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; white-space: nowrap; gap: 80px;
  animation: marqueeX 30s linear infinite;
}
.luxury-brands span {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px var(--border-subtle);
  letter-spacing: 0.1em;
}
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION HEADERS ────────────────────────────────────────────────────── */
section { padding: 220px 0; }
.section-header { margin-bottom: 120px; max-width: 800px; }
.section-header.center { margin: 0 auto 120px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-brand-cyan);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.05em;
  color: var(--color-white); margin-bottom: 32px;
}
.section-desc { 
  font-size: 1.3rem; 
  color: var(--color-silver); 
  max-width: 600px; 
  line-height: 1.6;
}
.section-header.center .section-desc { margin: 0 auto; }

/* ─── SERVICES BENTO ─────────────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: 320px;
}

.bento-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-expo);
  display: flex; flex-direction: column;
}

.bento-card:hover {
  border-color: var(--border-focus);
  background: rgba(255,255,255,0.03);
  transform: translateY(-5px);
}

.bento-hero { grid-column: span 8; grid-row: span 2; }
.bento-standard { grid-column: span 4; }
.bento-wide { grid-column: span 8; grid-row: span 1; }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: auto; }
.card-index {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--color-muted);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.card-icon { font-size: 2rem; color: var(--color-brand-cyan); }

.card-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--color-white); margin-bottom: 16px; line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
}
.card-desc {
  font-size: 1rem; color: var(--color-silver); margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.card-tags { display: flex; gap: 8px; }
.card-tags span {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle); color: var(--color-white);
}

.card-arrow {
  position: absolute; right: 40px; bottom: 40px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-white); color: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: bold; opacity: 0; transform: scale(0.8) translate(-10px, 10px);
  transition: all 0.4s var(--ease-expo);
}
.bento-card:hover .card-arrow { opacity: 1; transform: scale(1) translate(0,0); }

.card-bg-img { position: absolute; inset: 0; z-index: -2; }
.card-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0.85; transition: transform 2s, opacity 0.5s; }
.bento-card:hover .card-bg-img img { transform: scale(1.05); opacity: 1; }
.card-overlay { position: absolute; inset: 0; z-index: -1; }

.card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }

/* Dynamic Hover Glow */
.card-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  top: 0; left: 0; transform: translate(-50%, -50%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s; z-index: 0;
}
.bento-card:hover .card-glow { opacity: 1; }

/* ─── PORTFOLIO / SLIDER ─────────────────────────────────────────────────── */
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }

.gallery-wrapper {
  width: 100%; overflow: hidden; padding-left: calc((100vw - var(--max-width))/2 + 5vw);
}

.gallery-track { display: flex; gap: 40px; width: max-content; }
.gallery-item {
  width: 500px; height: 650px; position: relative;
  border-radius: var(--radius-md); overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: filter 0.5s;
}
.gallery-item:hover img { filter: brightness(1.1); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.gallery-item h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-white); margin-bottom: 8px; }
.gallery-item p { color: var(--color-brand-cyan); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── ABOUT / CONCIERGE ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.about-lead { font-size: 1.5rem; color: var(--color-white); line-height: 1.5; margin-bottom: 60px; font-weight: 300; }

.feature-row { display: flex; gap: 32px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-subtle); }
.feature-icon { font-family: var(--font-display); color: var(--color-brand-cyan); font-weight: 700; font-size: 1.2rem; }
.feature-text h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--color-white); margin-bottom: 12px; }

.about-visual { position: relative; }
.parallax-img-wrapper { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/5; }
.parallax-img { width: 100%; height: 120%; object-fit: cover; }
.visual-accent-ring {
  position: absolute; top: -10%; right: -10%; width: 50%; aspect-ratio: 1;
  border: 1px solid var(--border-focus); border-radius: 50%; opacity: 0.5;
}



/* ─── CONTACT SECTION ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; }
.contact-header p { font-size: 1.2rem; margin-bottom: 64px; }
.info-block { margin-bottom: 40px; }
.info-block h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-muted); margin-bottom: 8px; }
.info-block a { font-family: var(--font-display); font-size: 2rem; color: var(--color-white); font-weight: 600; display: inline-block; }

.contact-form { padding: 48px; display: flex; flex-direction: column; gap: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.form-field { position: relative; }
.form-field input, .form-field select {
  width: 100%; border: none; background: transparent; padding: 16px 0;
  color: var(--color-white); font-family: var(--font-body); font-size: 1.1rem;
}
.form-field input:focus, .form-field select:focus { outline: none; }
.field-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border-subtle); transition: 0.4s; }
.form-field input:focus ~ .field-line, .form-field select:focus ~ .field-line { background: var(--color-brand-cyan); height: 2px; }

.form-field label {
  position: absolute; left: 0; top: 16px; color: var(--color-muted); font-size: 1rem;
  transition: all 0.3s; pointer-events: none;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label {
  top: -16px; font-size: 0.75rem; color: var(--color-brand-cyan); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── LOCATION / MAP ─────────────────────────────────────────────────────── */
.location-section {
  padding: 160px 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
}

.map-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.location-map {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter var(--dur-base) var(--ease-expo);
  pointer-events: none;
}

.location-map-wrapper:hover .location-map {
  filter: grayscale(0.2) brightness(0.85) contrast(1.05);
}

.map-overlay-click {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(5, 5, 5, 0.5);
  opacity: 0;
  transition: opacity var(--dur-fast);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.map-overlay-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(8px);
}

.location-map-wrapper:hover .map-overlay-click {
  opacity: 1;
}

.location-lead {
  font-size: 1.3rem;
  color: var(--color-silver);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 480px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}

.detail-card:hover {
  border-color: var(--border-focus);
  transform: translateX(8px);
}

.detail-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-text p {
  font-size: 0.95rem;
  color: var(--color-silver);
  line-height: 1.5;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-review {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: all var(--dur-fast);
  box-shadow: 0 0 0 rgba(255, 215, 0, 0);
}

.cta-review:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.review-star {
  font-size: 1.2rem;
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .review-star { animation: none; }
  .map-overlay-click { opacity: 1; background: rgba(5, 5, 5, 0.3); }
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .location-map-wrapper {
    aspect-ratio: 16 / 10;
  }
  .location-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* ─── REVIEWS SECTION ────────────────────────────────────────────────────── */
.reviews-section {
  padding: 160px 0 120px;
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-focus), transparent);
}

/* Marquee outer container with edge fades */
.reviews-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 80px;
  padding: 24px 0;
}

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

.reviews-marquee-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.reviews-marquee-outer::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg), transparent);
}

/* Infinite scroll track */
.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 55s linear infinite;
  padding: 8px 0;
}

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

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 5vw;
  }
  .reviews-marquee-outer::before,
  .reviews-marquee-outer::after { display: none; }
}

/* Individual Review Card */
.review-card {
  width: 420px;
  flex-shrink: 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--color-brand-cyan);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
}

/* Review header: avatar + info + badge */
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.google-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}

.review-card:hover .google-badge {
  background: rgba(255, 255, 255, 0.1);
}

/* Review body text */
.review-text {
  font-size: 0.95rem;
  color: var(--color-silver);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
  quotes: none;
}

/* Service tag pill */
.review-service-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-cyan);
  padding: 6px 14px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(0, 229, 255, 0.04);
}

/* Reviews footer: rating summary + CTA */
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--color-bg-card);
  flex-wrap: wrap;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.rating-count {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.reviews-cta {
  flex-shrink: 0;
}

/* Light theme overrides */
[data-theme="light"] .review-card {
  background: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="light"] .reviews-footer {
  background: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .reviews-marquee-outer::before {
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

[data-theme="light"] .reviews-marquee-outer::after {
  background: linear-gradient(-90deg, var(--color-bg), transparent);
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .reviews-section { padding: 80px 0 64px; }
  .review-card { width: 85vw; padding: 28px 24px; }
  .reviews-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .reviews-cta { width: 100%; justify-content: center; }
  .reviews-marquee-outer::before,
  .reviews-marquee-outer::after { width: 60px; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border-subtle); padding: 80px 0 40px; overflow: hidden; }
.footer-top { display: flex; justify-content: center; align-items: center; }
.footer-logo-img {
  width: min(60vw, 500px);
  height: auto;
  display: block;
  opacity: 0.15;
  filter: brightness(1.2);
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-bottom { display: flex; justify-content: space-between; margin-top: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border-subtle); }
.footer-links { display: flex; gap: 100px; }
.link-col h5 { color: var(--color-brand-cyan); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px; }
.link-col a { display: block; color: var(--color-silver); margin-bottom: 16px; transition: color 0.3s; }
.link-col a:hover { color: var(--color-white); }

.footer-legal { margin-top: 40px; display: flex; justify-content: center; color: var(--color-muted); font-size: 0.9rem; }

/* Helper classes */
.gsap-reveal-text, .gsap-fade-up { opacity: 0; }

/* ─── PROCESS SECTION ────────────────────────────────────────────────────── */
.process-section {
  position: relative;
  padding: 160px 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand-cyan);
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.process-step {
  position: relative;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  transition: transform var(--dur-fast), border-color var(--dur-fast);
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-expo);
}

.process-step:hover::before { transform: scaleX(1); }
.process-step:hover { transform: translateY(-8px); border-color: var(--border-focus); }

.process-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.process-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--color-silver);
  line-height: 1.65;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── LOGO FIX: Blend modes and filters ───────────────────── */
.footer-bg-logo {
  height: 400px;
  width: auto;
  opacity: 0.1;
  pointer-events: none;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
}

/* SMART FILTER: Invert to turn white text black, then rotate hue to restore brand blue colors */
[data-theme="light"] .nav-logo-img,
[data-theme="light"] .footer-brand-logo,
[data-theme="light"] .footer-bg-logo {
  filter: invert(1) hue-rotate(180deg) brightness(0.8);
}

[data-theme="light"] .footer-bg-logo {
  opacity: 0.12;
}

/* ─── MOBILE RESPONSIVENESS ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-header {
    height: 72px;
    padding: 0 20px;
  }
  /* Body padding for sticky bottom bar */
  body { padding-bottom: 80px; }

  /* Mobile CTA bar — always show */
  .mobile-cta-bar { display: flex; }
  
  /* Mobile drawer overlay & drawer — block by default (JS toggles active) */
  .mobile-menu-overlay { display: block; pointer-events: none; }
  .mobile-menu-overlay.active { pointer-events: auto; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 88px; padding-bottom: 40px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.6rem); margin-bottom: 24px; line-height: 1.05; }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .cta-primary { padding: 20px 32px; justify-content: center; font-size: 0.85rem; }
  .cta-secondary { padding: 18px 32px; justify-content: center; font-size: 0.85rem; }
  .hero-stats { flex-direction: row; gap: 40px; flex-wrap: wrap; }
  .stat-top { font-size: 2rem; }
  .hero-bottom-bar { flex-direction: column; align-items: flex-start; gap: 40px; padding-top: 40px; }
  /* Hide scroll prompt on mobile — saves layout space and GPU */
  .hero-scroll-prompt { display: none; }

  /* Section Padding & Text */
  section { padding: 80px 0; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .section-desc { font-size: 1rem; }
  .section-header { margin-bottom: 56px; }
  .section-header.center { text-align: left; }

  /* Bento Service Cards */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .bento-hero, .bento-standard, .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 380px;
  }
  .bento-card { padding: 28px 24px; }
  .card-title { font-size: 1.6rem; }
  .card-desc { font-size: 0.95rem; }
  /* Force card text visible on mobile (no hover state available) */
  .card-arrow { opacity: 1; transform: scale(1) translate(0,0); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { aspect-ratio: 4/3; }
  .feature-text h4 { font-size: 1.2rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 32px 24px; }
  .process-step h3 { font-size: 1.2rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { padding: 28px 20px; gap: 32px; }
  .info-link { 
    font-size: clamp(0.9rem, 4vw, 1.2rem); 
    word-break: normal; 
    overflow-wrap: anywhere;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
  }
  .info-block { margin-bottom: 24px; }
  .info-block h5 { font-size: 0.75rem; }
  .contact-quick-btns { flex-direction: column; }
  .contact-quick-btns .cta-primary,
  .contact-quick-btns .cta-secondary { width: 100%; text-align: center; justify-content: center; }
  .contact-header p { font-size: 1rem; margin-bottom: 32px; }

  /* Gallery */
  .gallery-item { width: 80vw; height: 400px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  
  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map-wrapper { aspect-ratio: 16/10; }
  .location-lead { font-size: 1rem; }
  .location-actions { flex-direction: column; align-items: stretch; }
  .location-actions a { text-align: center; justify-content: center; }
  
  /* Detail cards */
  .detail-card { padding: 20px; }
  .detail-text h4 { font-size: 1rem; }
  .detail-text p { font-size: 0.9rem; }

  /* Performance Hacks for Low Devices */
  .glass-panel { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(15,15,15,0.97); }
  [data-theme="light"] .glass-panel { background: rgba(248,248,248,0.98) !important; }
  .bento-card { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(12,12,12,0.97); }
  [data-theme="light"] .bento-card { background: rgba(240,240,240,0.98) !important; }
  .card-glow { display: none !important; }
  .noise-overlay { display: none; } /* Huge perf win */
  .visual-accent-ring { display: none; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 48px; margin-top: 48px; padding-bottom: 48px; }
  .footer-links { flex-direction: row; gap: 48px; }
  .footer-bg-logo { display: none; }

  /* Hide Cursor on Mobile */
  .cursor, .cursor-trail { display: none !important; }
  body { cursor: auto !important; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2rem, 9vw, 2.6rem); }
  .bento-card { padding: 24px 20px; }
  .card-title { font-size: 1.4rem; }
  .stat-top { font-size: 1.8rem; }
  .section-title { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .info-link { font-size: 0.9rem; }
  .footer-links { flex-direction: column; gap: 32px; }
  .contact-form  { padding: 24px 16px; }
}

/* Ensure motion-reduced users always see content */
@media (prefers-reduced-motion: reduce) {
  .gsap-reveal-text, .gsap-fade-up, .gsap-scale-up {
    opacity: 1 !important;
    transform: none !important;
  }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── AREAS WE SERVE ─────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 32px;
}

.area-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s;
  text-align: center;
}

.area-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-brand-cyan);
}

.area-visual {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.02);
}

.area-initial {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-brand-cyan);
  z-index: 1;
}

.area-glow {
  position: absolute;
  inset: 10%;
  background: var(--color-brand-cyan);
  filter: blur(20px);
  opacity: 0.1;
  transition: opacity 0.4s;
}

.area-card:hover .area-glow {
  opacity: 0.3;
}

.area-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.area-name strong {
  font-weight: 800;
}

.area-content p {
  font-size: 0.95rem;
  color: var(--color-silver);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.pc-img, .pc-fallback-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

/* Reduced motion preference for canvas sequences */
@media (prefers-reduced-motion: reduce) {
  #hero-canvas, .pc-img {
    display: none !important;
  }
  #hero-fallback-img, .pc-fallback-img {
    display: block !important;
    opacity: 1 !important;
  }
}

.map-direct-card {
  transition: border-color 0.4s, transform 0.4s var(--ease-expo);
}
.map-direct-card:hover {
  border-color: var(--color-brand-cyan);
  transform: scale(1.02);
}
.map-pin-anim {
  animation: pinBounce 2s infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}



