/* =============================================
   SANDPIPER ANALYTICS LLC — Stylesheet
   Design: Dark Editorial / Luxury Agency
============================================= */

:root {
  --bg: #0a0a0c;
  --bg2: #111114;
  --bg3: #18181c;
  --accent: #e8c76a;
  --accent2: #c9a94a;
  --white: #f5f3ef;
  --white2: #d4d0c8;
  --muted: rgba(245,243,239,0.5);
  --border: rgba(245,243,239,0.08);
  --font-disp: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-italic: 'Playfair Display', serif;
  --radius: 12px;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-family: var(--font-italic); font-style: italic; color: var(--accent); }

/* =============================================
   CUSTOM CURSOR
============================================= */
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 60px; height: 60px;
  background: rgba(232,199,106,0.1);
}

/* =============================================
   PRELOADER
============================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-disp);
  font-size: clamp(40px, 8vw, 80px);
  letter-spacing: 0.2em;
  color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 240px; height: 2px;
  background: var(--border);
  margin: 20px auto 12px;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.05s linear;
}
.preloader-text {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,12,0.9);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-disp);
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--white);
}
.nav-logo-bird { font-size: 22px; }
.nav-logo-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  align-self: flex-end;
  margin-bottom: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white2);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-family: var(--font-disp);
  font-size: clamp(36px, 8vw, 60px);
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,199,106,0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white2);
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }
.btn-arrow { transition: transform 0.3s; }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Section tag */
.section-tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(232,199,106,0.3);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,199,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,199,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,199,106,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,199,106,0.08) 0%, transparent 70%);
  bottom: 100px; left: 200px;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  top: 50%; left: 30%;
  animation-delay: -6s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-img-collage {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}
.hero-img-item {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: hero-float 6s ease-in-out infinite;
}
.hi-1 {
  width: 42%;
  aspect-ratio: 4/5;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  border: 1px solid var(--border);
}
.hi-2 {
  width: 36%;
  aspect-ratio: 1;
  top: 8%;
  right: 5%;
  animation-delay: -2s;
}
.hi-3 {
  width: 30%;
  aspect-ratio: 4/3;
  bottom: 12%;
  left: 2%;
  animation-delay: -4s;
}
.hi-4 {
  width: 38%;
  aspect-ratio: 3/4;
  bottom: 5%;
  right: 8%;
  animation-delay: -1s;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.img-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 2px;
}
.hero-img-item img {
  transition: transform 0.6s ease;
}
.hero-img-item:hover img { transform: scale(1.05); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.ht-line { display: block; }
.ht-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.7em;
}
.hero-sub {
  font-size: 17px;
  color: var(--white2);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: -60px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-disp);
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--bg);
  padding: 0 20px;
}
.ticker-dot { color: var(--bg2) !important; padding: 0 !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   ABOUT
============================================= */
.about {
  padding: 120px 48px;
  background: var(--bg2);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text {
  color: var(--white2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-addr {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px solid rgba(232,199,106,0.2);
  border-radius: 8px;
  width: fit-content;
}

.about-img-stack {
  position: relative;
  height: 520px;
}
.ais-main {
  position: absolute;
  width: 80%;
  height: 75%;
  top: 0; right: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.ais-accent {
  position: absolute;
  width: 55%;
  height: 50%;
  bottom: 0; left: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.ais-badge {
  position: absolute;
  bottom: 100px; right: -20px;
  background: var(--accent);
  color: var(--bg);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(232,199,106,0.3);
  animation: badge-pulse 3s ease-in-out infinite;
}
.ais-badge-num {
  font-family: var(--font-disp);
  font-size: 48px;
  line-height: 1;
}
.ais-badge-txt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
@keyframes badge-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* =============================================
   SERVICES
============================================= */
.services {
  padding: 120px 48px;
  background: var(--bg);
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.services-sub {
  color: var(--white2);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  position: relative;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,199,106,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.svc-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.svc-img img {
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg2));
}
.svc-card > .svc-icon {
  font-size: 28px;
  padding: 20px 24px 0;
  display: block;
}
.svc-card h3 {
  font-family: var(--font-disp);
  font-size: 22px;
  letter-spacing: 0.05em;
  padding: 10px 24px 0;
  color: var(--white);
}
.svc-card p {
  font-size: 14px;
  color: var(--white2);
  padding: 10px 24px 16px;
  line-height: 1.7;
}
.svc-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 24px 24px;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.svc-card:hover::after { transform: scaleX(1); }

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-section {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 20s linear infinite reverse;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-disp);
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding: 0 20px;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--white); }
.mdot { color: var(--accent) !important; padding: 0 !important; }

/* =============================================
   STATS
============================================= */
.stats {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
}
.stats-bg img { object-fit: cover; filter: brightness(0.25) saturate(0.5); }
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,12,0.8) 0%, rgba(10,10,12,0.4) 100%);
}
.stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(232,199,106,0.15);
  border-radius: var(--radius);
  background: rgba(232,199,106,0.04);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}
.stat-item:hover {
  border-color: rgba(232,199,106,0.4);
  transform: scale(1.04);
}
.stat-num {
  font-family: var(--font-disp);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white2);
}

/* =============================================
   APPROACH
============================================= */
.approach {
  padding: 120px 48px;
  background: var(--bg2);
}
.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.approach-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: left;
  position: relative;
}
.step-num {
  font-family: var(--font-disp);
  font-size: 64px;
  color: rgba(232,199,106,0.15);
  line-height: 1;
  margin-bottom: -10px;
}
.step-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.step-img img { transition: transform 0.5s; }
.step:hover .step-img img { transform: scale(1.06); }
.step h3 {
  font-family: var(--font-disp);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--white2);
  line-height: 1.7;
}
.step-arrow {
  font-size: 28px;
  color: var(--accent);
  margin-top: 100px;
  animation: arrow-bounce 2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* =============================================
   GALLERY
============================================= */
.gallery {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.gallery-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  height: 560px;
}
.gal-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: none;
}
.gal-tall { height: 100%; }
.gal-half { flex: 1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gal-item:hover .gal-hover { opacity: 1; }
.gal-hover span {
  font-family: var(--font-disp);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.gal-arrow {
  font-size: 28px;
  color: var(--accent);
}

/* =============================================
   TEAM
============================================= */
.team {
  padding: 120px 48px;
  background: var(--bg2);
  text-align: center;
}
.team-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform 0.4s, border-color 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,199,106,0.3);
}
.team-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-img img { transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-social {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(60px);
  transition: transform 0.4s;
}
.team-card:hover .team-social { transform: translateX(0); }
.ts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  font-size: 12px;
  color: var(--white);
  transition: background 0.3s, color 0.3s;
}
.ts-icon:hover { background: var(--accent); color: var(--bg); }
.team-info {
  padding: 16px 20px;
  text-align: left;
}
.team-info h3 {
  font-family: var(--font-disp);
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.team-info span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testi-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,199,106,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.testi-track-wrap {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-card {
  flex: 0 0 100%;
  padding: 40px 48px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.testi-quote {
  font-family: var(--font-italic);
  font-size: 72px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testi-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--white2);
  margin-bottom: 32px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); }
.testi-author span { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.tn-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  cursor: none;
  transition: background 0.3s, border-color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.tn-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
  cursor: none;
}
.testi-dot.active { background: var(--accent); transform: scale(1.3); }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  padding: 100px 48px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,199,106,0.15) 0%, transparent 70%);
  top: -100px; left: 20%;
  animation: orb-float 7s ease-in-out infinite;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,199,106,0.08) 0%, transparent 70%);
  bottom: -80px; right: 25%;
  animation: orb-float 9s ease-in-out infinite reverse;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-disp);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 18px;
  color: var(--white2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* =============================================
   CONTACT
============================================= */
.contact {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.contact-centered {
  max-width: 860px;
  margin: 0 auto;
}
.contact-intro {
  color: var(--white2);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 56px;
}
.contact-info-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ci-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.ci-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  gap: 14px;
  padding: 36px 28px;
  background: var(--bg2);
  transition: background 0.3s;
}
.ci-item:hover { background: var(--bg3); }
.ci-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ci-item strong { display: block; color: var(--white); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.ci-item span { font-size: 14px; color: var(--white2); line-height: 1.6; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-logo {
  font-family: var(--font-disp);
  font-size: 28px;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.footer-logo span {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.3em;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4, .footer-contact-col h4 {
  font-family: var(--font-disp);
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-col p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.fs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.fs-icon:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,199,106,0.08); }
.fs-icon--inactive {
  cursor: default;
  opacity: 0.5;
}
.fs-icon--inactive:hover {
  border-color: var(--border);
  color: var(--muted);
  background: transparent;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { height: auto; grid-template-columns: 1fr; }
  .gal-tall { aspect-ratio: 16/9; height: auto; }
  .gal-col-right { flex-direction: row; }
  .gal-half { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 80px; }
  .hero-img-collage { display: none; }
  .hero-title { font-size: 56px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about, .stats, .approach, .gallery, .testimonials, .contact { padding: 80px 24px; }
  .approach-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .gal-col-right { flex-direction: column; }
  .contact-info-row { flex-direction: column; }
  .ci-divider { width: 100%; height: 1px; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}