/* ============================================================
   IMMERSPHERE STUDIOS — Main Stylesheet
   Inspired by: Linear, Awwwards studios, Apple, luxury editorial
   ============================================================ */

/* ────────────────────────────────────────────
   1. DESIGN TOKENS
──────────────────────────────────────────── */
:root {
  /* Colors */
  --navy:        #0A1628;
  --navy-mid:    #1E3A5F;
  --navy-light:  #243B55;
  --gold:        #C8A96E;
  --gold-light:  #E2C98A;
  --gold-dim:    #9A7A4A;
  --ivory:       #FAF8F4;
  --ivory-dim:   #EDE9E3;
  --white:       #FFFFFF;
  --body:        #111827;
  --muted:       #4B5563;
  --muted-light: #9CA3AF;
  --border:      rgba(200, 169, 110, 0.15);
  --border-light: rgba(255,255,255,0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing */
  --section-pad: clamp(80px, 12vw, 160px);
  --container:   1280px;
  --gutter:      clamp(24px, 5vw, 80px);

  /* Transitions */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --duration:    0.7s;
  --duration-fast: 0.35s;
  --duration-slow: 1.2s;

  /* Z-index layers */
  --z-base:    1;
  --z-above:   10;
  --z-nav:     100;
  --z-cursor:  9000;
  --z-loader:  9999;
}

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--body);
  background: var(--navy);
  cursor: none;
  overflow-x: hidden;
}

body.loaded { cursor: none; }

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  border: none;
  background: none;
  cursor: none;
  font-family: var(--font-body);
}

/* ────────────────────────────────────────────
   3. TYPOGRAPHY SYSTEM
──────────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.t-display-xl {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 180px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.t-display-lg {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.t-display-md {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.t-heading {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.t-body-lg {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  color: var(--muted-light);
}

.t-body {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--muted-light);
}

.t-label {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-label-dark {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ────────────────────────────────────────────
   4. LAYOUT
──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--light {
  background: var(--ivory);
  color: var(--body);
}

.section--mid {
  background: #0D1F38;
  color: var(--white);
}

/* ────────────────────────────────────────────
   5. NOISE / GRAIN OVERLAY
──────────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: var(--z-cursor);
  /* Slow, subtle drift — texture not flicker */
  animation: grain 8s steps(4) infinite;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, -3%); }
  50%  { transform: translate(3%, 2%); }
  75%  { transform: translate(-2%, 4%); }
  100% { transform: translate(0, 0); }
}

/* ────────────────────────────────────────────
   6. CUSTOM CURSOR
──────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: normal;
}

.cursor__dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s;
  pointer-events: none;
  z-index: var(--z-cursor);
}

.cursor__ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease),
              border-color 0.3s, background 0.3s, opacity 0.3s;
  pointer-events: none;
  z-index: var(--z-cursor);
}

.cursor--hover .cursor__ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.05);
}

.cursor--click .cursor__dot {
  width: 10px;
  height: 10px;
}

.cursor--text .cursor__ring {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-color: var(--gold);
  mix-blend-mode: difference;
}

/* ────────────────────────────────────────────
   7. PRELOADER
──────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.preloader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.preloader__logo-mark {
  width: 56px;
  height: 56px;
}

.preloader__logo-mark circle {
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 175;
  stroke-dashoffset: 175;
  transition: stroke-dashoffset 1.2s var(--ease);
}

.preloader__logo-mark.animate circle {
  stroke-dashoffset: 0;
}

.preloader__wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.5s 0.8s;
}

.preloader__wordmark.visible { opacity: 1; }

.preloader__counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted-light);
}

.preloader__counter span {
  color: var(--gold);
}

.preloader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.preloader.exit {
  transform: translateY(-100%);
  transition: transform 1s var(--ease) 0.3s;
}

/* ────────────────────────────────────────────
   8. NAVIGATION
──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 18px var(--gutter);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
}

.nav__link {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-fast) var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--white); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  opacity: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--duration-fast) var(--ease);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  color: var(--white);
  transition: color var(--duration-fast);
}

.nav__mobile-link:hover { color: var(--gold); }

/* ────────────────────────────────────────────
   9. BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: none;
  /* Ensure text always renders above the ::before fill */
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  /* z-index: -1 keeps fill below text within the isolated context */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease);
}

.btn:hover::before { transform: scaleX(1); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold::before {
  background: var(--gold-light);
}

.btn--gold:hover {
  color: var(--navy);
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}

.btn--outline::before {
  background: rgba(255,255,255,0.08);
}

.btn--outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn--outline-gold::before {
  background: rgba(200, 169, 110, 0.1);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--border-light);
}

/* Outline variant for light backgrounds */
.btn--outline-dark {
  border: 1px solid rgba(10,22,40,0.25);
  color: var(--body);
  background: transparent;
}
.btn--outline-dark::before { background: rgba(10,22,40,0.06); }
.btn--outline-dark:hover { border-color: rgba(10,22,40,0.5); }

.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease);
}

.btn:hover .btn__arrow {
  transform: translate(3px, -3px);
}

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

/* ────────────────────────────────────────────
   10. HERO SECTION
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 2s var(--ease);
}

.hero__orb--1 {
  width: clamp(400px, 60vw, 900px);
  height: clamp(400px, 60vw, 900px);
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero__orb--2 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(30, 58, 95, 0.5) 0%, transparent 70%);
  bottom: -20%;
  left: -5%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero__orb--3 {
  width: clamp(200px, 30vw, 500px);
  height: clamp(200px, 30vw, 500px);
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  top: 30%;
  left: 40%;
  animation: orbFloat3 18s ease-in-out infinite;
}

.hero__orb.visible { opacity: 1; }

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-3%, 5%) scale(1.05); }
  66%       { transform: translate(3%, -3%) scale(0.97); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(4%, -4%) scale(1.08); }
  66%       { transform: translate(-2%, 3%) scale(0.95); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-5%, 8%); }
}

/* Grid lines overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: 120px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  overflow: hidden;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.hero__eyebrow-text {
  opacity: 0;
  transform: translateY(10px);
}

.hero__headline {
  margin-bottom: 40px;
  overflow: hidden;
}

.hero__headline-line {
  display: block;
  overflow: hidden;
  line-height: 0.92;
}

.hero__headline-line span {
  display: block;
  transform: translateY(110%);
  /* Explicit white — hero inherits near-black from body otherwise */
  color: var(--white);
}

.hero__headline-line--gold span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite 2s;
}

@keyframes goldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero__subhead {
  max-width: 560px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}

/* ── 360° SPHERE RING (hero background decoration) ── */
.hero__sphere {
  position: absolute;
  right: clamp(-60px, -2vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 42vw, 640px);
  height: clamp(340px, 42vw, 640px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s var(--ease);
}
.hero__sphere.visible { opacity: 1; }

.hero__sphere-svg {
  width: 100%; height: 100%;
  overflow: visible;
}

/* Outer ring — slow rotation */
.sphere-ring-outer {
  animation: spinCW 40s linear infinite;
  transform-origin: center;
}
/* Middle ring — counter rotation */
.sphere-ring-mid {
  animation: spinCCW 28s linear infinite;
  transform-origin: center;
}
/* Inner ring — faster CW */
.sphere-ring-inner {
  animation: spinCW 18s linear infinite;
  transform-origin: center;
}
/* Scan sweep */
.sphere-scan {
  animation: spinCW 6s linear infinite;
  transform-origin: center;
}
/* Dot pulse */
.sphere-dot {
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
@keyframes dotPulse {
  0%, 100% { opacity: 0.6; r: 3; }
  50%       { opacity: 1;   r: 4.5; }
}

/* Scroll indicator — 360 tick mark ring */
.hero__scroll-ring {
  position: relative;
  width: 28px; height: 28px;
  margin-bottom: 8px;
}
.hero__scroll-ring svg {
  width: 28px; height: 28px;
  animation: spinCW 8s linear infinite;
}

/* Large number in corner */
.hero__counter-bg {
  position: absolute;
  right: var(--gutter);
  bottom: 48px;
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.02);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* ────────────────────────────────────────────
   11. ZIG-ZAG TICKER (replaces marquee)
──────────────────────────────────────────── */
.zigzag-ticker {
  position: relative;
  background: #050D19;
  overflow: visible;
  z-index: 2;
}

/* SVG zig-zag cutout edges */
.zigzag-edge {
  display: block;
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 3;
}
.zigzag-edge--top    { top: -1px; }
.zigzag-edge--bottom { bottom: -1px; }

/* Scrolling area */
.zigzag-scroll {
  overflow: hidden;
  padding: 24px 0;
}

/* Row 1: moves right to left */
.zigzag-row {
  display: flex;
  width: max-content;
}
.zigzag-row--1 { animation: zzPulse1 20s linear infinite; }
.zigzag-row--2 { animation: zzPulse2 24s linear infinite; margin-top: 6px; }

/* Variable-speed scroll animations
   speed surges at 15→30% and 65→80% of the cycle */
@keyframes zzPulse1 {
  0%   { transform: translateX(0);    }
  /* Fast burst 1 */
  10%  { transform: translateX(-8%);  animation-timing-function: cubic-bezier(.2,0,.2,1); }
  28%  { transform: translateX(-28%); animation-timing-function: cubic-bezier(.4,0,.6,1); }
  /* Slow cruise */
  55%  { transform: translateX(-40%); animation-timing-function: cubic-bezier(.2,0,.2,1); }
  /* Fast burst 2 */
  70%  { transform: translateX(-47%); animation-timing-function: cubic-bezier(.4,0,.6,1); }
  100% { transform: translateX(-50%); }
}
@keyframes zzPulse2 {
  /* Row 2 moves in the opposite direction for depth */
  0%   { transform: translateX(-50%); animation-timing-function: cubic-bezier(.4,0,.6,1); }
  20%  { transform: translateX(-35%); animation-timing-function: cubic-bezier(.2,0,.2,1); }
  45%  { transform: translateX(-22%); animation-timing-function: cubic-bezier(.4,0,.6,1); }
  65%  { transform: translateX(-8%);  animation-timing-function: cubic-bezier(.2,0,.2,1); }
  80%  { transform: translateX(-2%);  animation-timing-function: cubic-bezier(.4,0,.6,1); }
  100% { transform: translateX(0%);   }
}

.zigzag-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.38);
}
.zigzag-row--2 .zigzag-item { color: rgba(200,169,110,0.28); font-size: clamp(13px, 1.6vw, 20px); }

.zigzag-sep {
  width: 5px; height: 5px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ────────────────────────────────────────────
   12. SERVICES SECTION
──────────────────────────────────────────── */
.services {
  background: var(--ivory);
  overflow: hidden;
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.services__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  padding: clamp(40px, 5vw, 60px) clamp(28px, 3vw, 44px);
  background: var(--white);
  overflow: hidden;
  cursor: none;
  transition: background var(--duration-fast) var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--duration) var(--ease);
  z-index: 0;
}

.service-card:hover::before { transform: scaleY(1); }

.service-card:hover .service-card__number,
.service-card:hover .service-card__title,
.service-card:hover .service-card__desc,
.service-card:hover .service-card__link { color: var(--white); }

.service-card:hover .service-card__icon path { stroke: var(--gold); }

.service-card > * { position: relative; z-index: 1; }

.service-card__number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 32px;
  transition: color var(--duration-fast);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
}

.service-card__icon path {
  stroke: var(--navy-mid);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--duration-fast);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  transition: color var(--duration-fast);
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  transition: color var(--duration-fast);
}

.service-card__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--duration-fast), gap var(--duration-fast);
}

.service-card:hover .service-card__link {
  color: var(--gold);
  gap: 14px;
}

/* ────────────────────────────────────────────
   13. STATS SECTION
──────────────────────────────────────────── */
.stats {
  background: #08121F;
  padding: clamp(60px, 10vw, 120px) 0;
  overflow: hidden;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 40px var(--gutter);
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  /* Only the counter digit — no wrapping word text here */
  display: flex;
  align-items: baseline;
  gap: 4px;
}

/* The counter span itself */
.stat-item__number .counter {
  color: var(--gold);
}

/* Short symbol like +, K, % that stays at display size */
.stat-item__sym {
  color: var(--gold);
  font-size: 0.6em;
  line-height: 1;
}

/* Word text that sits between number and label — medium size */
.stat-item__word {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.1;
  margin-top: 4px;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ────────────────────────────────────────────
   14. WHY US SECTION
──────────────────────────────────────────── */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

.why__sticky {
  position: sticky;
  top: 120px;
}

.why__sticky-label {
  margin-bottom: 24px;
}

.why__sticky-title {
  color: var(--white);
  margin-bottom: 32px;
}

.why__sticky-body {
  margin-bottom: 48px;
}

.why__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
  cursor: none;
  transition: padding-left var(--duration-fast) var(--ease);
}

.why-item:first-child { border-top: 1px solid var(--border); }

.why-item:hover { padding-left: 12px; }

.why-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding-top: 4px;
}

.why-item__content {}

.why-item__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-item__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-light);
}

/* ────────────────────────────────────────────
   15. PORTFOLIO PREVIEW
──────────────────────────────────────────── */
.work {
  background: var(--ivory);
  overflow: hidden;
}

.work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(50px, 7vw, 90px);
  gap: 24px;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
  cursor: none;
}

.work-item--tall {
  grid-row: span 2;
}

.work-item__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.work-item--tall .work-item__img-wrap {
  aspect-ratio: unset;
  height: 100%;
  min-height: 500px;
}

.work-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s var(--ease);
}

.work-item:hover .work-item__img {
  transform: scale(1);
}

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.work-item:hover .work-item__overlay { opacity: 1; }

.work-item__info {}

.work-item__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--duration-fast) 0.05s var(--ease);
}

.work-item:hover .work-item__tag {
  transform: translateY(0);
  opacity: 1;
}

.work-item__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  font-weight: 400;
  transform: translateY(14px);
  opacity: 0;
  transition: all var(--duration-fast) 0.1s var(--ease);
}

.work-item:hover .work-item__title {
  transform: translateY(0);
  opacity: 1;
}

/* Cursor image follower for portfolio */
.work-cursor {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s var(--ease), opacity 0.3s;
  pointer-events: none;
  z-index: var(--z-above);
  opacity: 0;
}

.work-cursor.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ────────────────────────────────────────────
   16. INDUSTRIES SECTION
──────────────────────────────────────────── */
.industries {
  background: #08121F;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0;
}

.industries__header {
  text-align: center;
  margin-bottom: 60px;
}

.industries__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.industry-tag {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  transition: all var(--duration-fast) var(--ease);
  cursor: none;
}

.industry-tag:hover,
.industry-tag.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
}

/* ────────────────────────────────────────────
   17. PROCESS SECTION
──────────────────────────────────────────── */
.process {
  background: var(--navy);
  overflow: hidden;
}

.process__header {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
}

.process__line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  width: 0;
  height: 1px;
  background: var(--gold);
  z-index: 1;
  transition: width 1.5s var(--ease);
}

.process__line.animate {
  width: calc(75% - 40px);
}

.process-step {
  padding: 0 20px;
  padding-top: 0;
  text-align: center;
}

.process-step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
  background: var(--navy);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted-light);
  transition: all var(--duration) var(--ease);
}

.process-step.active .process-step__dot {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(200, 169, 110, 0.15);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-light);
}

/* ────────────────────────────────────────────
   18. CTA SECTION
──────────────────────────────────────────── */
.cta-section {
  background: var(--ivory);
  overflow: hidden;
  text-align: center;
}

.cta-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section__title {
  color: var(--navy);
  margin-bottom: 32px;
}

.cta-section__body {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Dark CTA variant */
.cta-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-dark::before {
  content: '';
  position: absolute;
  width: clamp(400px, 80vw, 1200px);
  height: clamp(400px, 80vw, 1200px);
  background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-dark__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-dark__label {
  margin-bottom: 24px;
}

.cta-dark__title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-dark__line {
  display: block;
}

.cta-dark__title .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-dark__body {
  max-width: 480px;
  margin: 0 auto 52px;
}

/* ────────────────────────────────────────────
   19. FOOTER
──────────────────────────────────────────── */
.footer {
  background: #04101E;
  padding: clamp(60px, 8vw, 100px) 0 40px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__tagline {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 260px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-light);
  margin-bottom: 8px;
  transition: color var(--duration-fast);
}

.footer__contact-item:hover { color: var(--gold); }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer__link {
  font-size: 14px;
  color: var(--muted-light);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.footer__link:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 12px;
  color: var(--muted-light);
  opacity: 0.6;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 12px;
  color: var(--muted-light);
  opacity: 0.6;
  transition: opacity var(--duration-fast);
}

.footer__legal-link:hover { opacity: 1; }

/* ────────────────────────────────────────────
   20. SCROLL ANIMATIONS (initial states)
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
}

.char {
  display: inline-block;
  overflow: hidden;
  line-height: 1.1;
}

.char span {
  display: inline-block;
  transform: translateY(110%);
}

.word {
  display: inline-block;
  overflow: hidden;
}

.word span {
  display: inline-block;
  transform: translateY(110%);
}

/* ────────────────────────────────────────────
   21. SECTION TITLE COMPONENT
──────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-label__line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title--light { color: var(--white); }
.section-title--dark { color: var(--navy); }

/* ────────────────────────────────────────────
   22. INNER PAGE HERO
──────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.page-hero__content {
  max-width: 800px;
}

/* ────────────────────────────────────────────
   23. UTILITY CLASSES
──────────────────────────────────────────── */
.u-gold { color: var(--gold); }
.u-white { color: var(--white); }
.u-muted { color: var(--muted-light); }
.u-navy { color: var(--navy); }
.u-mb-sm { margin-bottom: 16px; }
.u-mb-md { margin-bottom: 32px; }
.u-mb-lg { margin-bottom: 56px; }
.u-text-center { text-align: center; }
.u-overflow-hidden { overflow: hidden; }
.sr-only,
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Counter number element */
.counter { display: inline; }

/* ────────────────────────────────────────────
   24. RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; gap: 2px; }
  .stats__grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .why__layout    { grid-template-columns: 1fr; }
  .why__sticky    { position: relative; top: 0; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process__steps::before,
  .process__line  { display: none; }
  .footer__top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding-top: 100px; }

  .services__header { grid-template-columns: 1fr; }
  .services__header-right { align-items: flex-start; }

  .work__grid { grid-template-columns: 1fr; }
  .work-item--tall { grid-row: span 1; }
  .work-item--tall .work-item__img-wrap { min-height: 300px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .process__steps { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .hero__counter-bg { display: none; }

  .industries__tags { gap: 8px; }

  .work__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* Touch devices - hide custom cursor */
@media (hover: none) {
  body { cursor: auto; }
  .cursor__dot, .cursor__ring { display: none; }
  .btn, button, a { cursor: pointer; }
}

/* ════════════════════════════════════════════
   25. PANORAMIC STRIP — 360° Experience Section
════════════════════════════════════════════ */
.pano-section {
  background: #04090F;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.pano-headline {
  padding: clamp(60px, 8vw, 100px) var(--gutter) 48px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.pano-headline__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  max-width: 640px;
}
.pano-headline__title em {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.pano-headline__sub {
  font-size: 14px;
  color: var(--muted-light);
  max-width: 320px;
  line-height: 1.7;
  text-align: right;
}
@media (max-width: 640px) {
  .pano-headline { flex-direction: column; }
  .pano-headline__sub { text-align: left; }
}

/* The draggable strip */
.pano-strip {
  position: relative;
  width: 100%;
  /* Nearly double the original height for full immersion */
  height: clamp(480px, 80vh, 1020px);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.pano-strip:active { cursor: grabbing; }

.pano-track {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 280%;        /* panorama is 2.8× viewport wide */
  will-change: transform;
}

.pano-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  pointer-events: none;
  filter: brightness(0.85) saturate(1.1);
  transition: opacity 0.55s ease, filter 0.55s ease;
}
.pano-img.switching {
  opacity: 0;
  filter: brightness(0.5) saturate(0.8);
}

/* Dark vignette edges — gives the "looking through a lens" feel */
.pano-strip::before,
.pano-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 3;
  pointer-events: none;
}
.pano-strip::before {
  left: 0;
  background: linear-gradient(to right, #04090F 0%, transparent 100%);
}
.pano-strip::after {
  right: 0;
  background: linear-gradient(to left, #04090F 0%, transparent 100%);
}

/* Progress / position bar */
.pano-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 4;
}
.pano-progress__bar {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  width: 33%;
  transition: width 0.1s linear;
}

/* Drag hint overlay */
.pano-drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(200,169,110,0.3);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 40px;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.4s ease;
}
.pano-drag-hint.hidden { opacity: 0; }
.pano-drag-hint__icon {
  display: flex; align-items: center; gap: 4px;
}
.pano-drag-hint__icon span {
  font-size: 18px; color: var(--gold); line-height: 1;
  animation: hintBounce 1.6s ease-in-out infinite;
}
.pano-drag-hint__icon span:first-child { animation-delay: 0s; }
.pano-drag-hint__icon span:last-child  { animation-delay: 0.3s; transform: scaleX(-1); display:inline-block; }
@keyframes hintBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
.pano-drag-hint__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* 360° badge */
.pano-badge {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 5;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,22,40,0.7);
  border: 1px solid rgba(200,169,110,0.4);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 8px 16px;
  pointer-events: none;
}
.pano-badge__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.pano-badge__deg {
  font-size: 11px;
  color: var(--muted-light);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}
.pano-badge__ring {
  width: 18px; height: 18px;
  animation: spinCW 3s linear infinite;
}

/* Hotspots overlaid on the panoramic image */
.pano-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
}

.pano-hotspot__ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.9);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: hotspotPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.pano-hotspot:hover .pano-hotspot__ring {
  transform: scale(1.2);
}
.pano-hotspot__ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: rgba(200,169,110,0.35);
  border-radius: 50%;
}
.pano-hotspot__ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.25);
  animation: hotspotOuter 2.5s ease-in-out infinite;
}

.pano-hotspot__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: relative; z-index: 1;
}

.pano-hotspot__label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(10,22,40,0.85);
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,169,110,0.2);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
}
.pano-hotspot:hover .pano-hotspot__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Each hotspot gets its own delay */
.pano-hotspot:nth-child(1) .pano-hotspot__ring { animation-delay: 0s;    }
.pano-hotspot:nth-child(2) .pano-hotspot__ring { animation-delay: 0.6s;  }
.pano-hotspot:nth-child(3) .pano-hotspot__ring { animation-delay: 1.2s;  }
.pano-hotspot:nth-child(4) .pano-hotspot__ring { animation-delay: 1.8s;  }

@keyframes hotspotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(200,169,110,0); }
}
@keyframes hotspotOuter {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.3); opacity: 0; }
}

/* Footer callout below the panorama */
.pano-footer {
  padding: 48px var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .pano-footer { grid-template-columns: 1fr; }
}

.pano-fact {
  padding-top: 24px;
  border-top: 1px solid rgba(200,169,110,0.2);
}
.pano-fact__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pano-fact__label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   26. ENHANCED HERO BACKGROUND IMAGE
════════════════════════════════════════════ */
.hero__pano-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__pano-bg img {
  width: 140%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.09;
  filter: blur(1px) saturate(0.7);
  transform: translateX(-20%);
  /* 7s — noticeably moving but not distracting */
  animation: heroPanBg 7s ease-in-out infinite alternate;
}
@keyframes heroPanBg {
  0%   { transform: translateX(-20%) scale(1.06); }
  100% { transform: translateX(0%)   scale(1); }
}

/* ════════════════════════════════════════════
   27. FIRST CLIENT SPOTLIGHT
════════════════════════════════════════════ */
.client-spotlight {
  background: var(--ivory);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
@media (max-width: 768px) { .spotlight__grid { grid-template-columns: 1fr; } }

.spotlight__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.spotlight__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200,169,110,0.12));
  pointer-events: none;
}
.spotlight__img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.9s var(--ease);
}
.spotlight__image-wrap:hover .spotlight__img { transform: scale(1.04); }

.spotlight__badge {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(10,22,40,0.8);
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid rgba(200,169,110,0.3);
  backdrop-filter: blur(8px);
}

.spotlight__content { padding: 8px 0; }
.spotlight__client {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--body);
  line-height: 1.15;
  margin-bottom: 20px;
}
.spotlight__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.spotlight__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.spotlight__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 5px 10px;
  border-radius: 20px;
}
